/* =====================================================
   ROOT
===================================================== */

:root {

    --primary: #172536;
    --primary-dark: #101b28;
    --primary-light: #25384c;

    --gold: #c2a06a;
    --gold-dark: #a7834e;
    --gold-light: #e4d2b6;

    --cream: #f7f4ef;
    --cream-dark: #eee9e1;

    --white: #ffffff;

    --text: #17202a;
    --text-light: #68717a;

    --border: #e6e0d7;

    --shadow:
        0 20px 50px rgba(20, 29, 38, 0.08);

    --shadow-hover:
        0 30px 70px rgba(20, 29, 38, 0.14);

    --transition:
        all 0.35s ease;

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {

    font-family: inherit;

}


button {
    cursor: pointer;
}


.container {

    width: min(1180px, calc(100% - 40px));

    margin-inline: auto;

}


.section {

    padding: 110px 0;

}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3 {

    line-height: 1.15;

}


h1,
h2 {

    font-family: "Playfair Display", serif;

}


h1 {

    font-size:
        clamp(48px, 6vw, 78px);

    font-weight: 500;

}


h2 {

    font-size:
        clamp(36px, 4vw, 54px);

    font-weight: 500;

}


h1 span,
h2 span {

    color: var(--gold);

}


.section-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--gold-dark);

    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 20px;

}


.section-badge > span {

    width: 28px;
    height: 1px;

    background: var(--gold);

}


.light-badge {
    color: var(--gold-light);
}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

    background:
        rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.05);

    transition: var(--transition);

}


.header.scrolled {

    box-shadow:
        0 5px 30px rgba(0, 0, 0, 0.08);

}


.header-wrapper {

    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}


.logo-symbol {

    font-family: "Playfair Display", serif;

    font-size: 23px;

    display: flex;

    align-items: center;

    gap: 7px;

}


.logo-symbol i {

    width: 1px;

    height: 25px;

    background: var(--gold);

    display: block;

}


.logo-text {

    display: flex;

    flex-direction: column;

}


.logo-text strong {

    font-family:
        "Playfair Display", serif;

    letter-spacing: 1.5px;

    font-size: 14px;

}


.logo-text span {

    font-size: 8px;

    letter-spacing: 2px;

    color: var(--text-light);

}


/* NAV */

.navbar {

    display: flex;

    align-items: center;

    gap: 31px;

}


.nav-link {

    position: relative;

    padding: 33px 0;

    font-size: 13px;

    font-weight: 600;

    color: #4d5660;

    transition: var(--transition);

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 23px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: var(--transition);

}


.nav-link:hover,
.nav-link.active {

    color: var(--gold-dark);

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}


.header-button {

    display: flex;

    align-items: center;

    gap: 10px;

    background: var(--primary);

    color: var(--white);

    padding: 14px 22px;

    font-size: 12px;

    font-weight: 600;

    transition: var(--transition);

}


.header-button:hover {

    background: var(--gold);

}


/* MOBILE BUTTON */

.mobile-menu-button {

    display: none;

    width: 44px;

    height: 44px;

    border: 0;

    background: transparent;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

}


.mobile-menu-button span {

    width: 26px;
    height: 2px;

    background: var(--primary);

    transition: var(--transition);

}


/* =====================================================
   BUTTONS
===================================================== */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    min-height: 52px;

    padding: 0 27px;

    font-weight: 600;

    font-size: 13px;

    border: 1px solid transparent;

    transition: var(--transition);

}


.button i {
    transition: var(--transition);
}


.button:hover i {
    transform: translateX(4px);
}


.button-primary {

    background: var(--primary);

    color: var(--white);

}


.button-primary:hover {

    background: var(--gold);

}


.button-outline {

    border-color: #ccd1d5;

    background: transparent;

}


.button-outline:hover {

    color: var(--white);

    border-color: var(--primary);

    background: var(--primary);

}


.button-gold {

    background: var(--gold);

    color: var(--white);

}


.button-gold:hover {

    background: var(--white);

    color: var(--primary);

}


/* =====================================================
   HERO
===================================================== */

/* =====================================================
   HERO
===================================================== */
/* =====================================================
   HERO
===================================================== */

.hero {
    padding-top: 88px;
    width: 100%;
    background: #f7f4ef;
    overflow: hidden;
}


/* =====================================================
   HERO GRID
===================================================== */

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 50%) minmax(0, 50%);

    width: 100%;
    min-height: 500px;

    margin: 0;
    padding: 0;
}


/* =====================================================
   SOL TARAF
===================================================== */

.hero-left {
    background: #f7f4ef;

    display: flex;
    justify-content: flex-end;
}


/*
    1180px container'ın yarısına denk geliyor.
    Böylece soldaki yazılar menü/logo ile aynı hizada kalıyor.
*/

.hero-content {
    width: 100%;
    max-width: 590px;

    padding:
        58px 55px
        58px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =====================================================
   BADGE
===================================================== */

.hero-content .section-badge {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 20px;

    color: var(--gold-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


.hero-content .section-badge span {
    display: block;

    width: 30px;
    height: 1px;

    background: var(--gold);
}


/* =====================================================
   BAŞLIK
===================================================== */

.hero-content h1 {
    max-width: 560px;

    margin: 0 0 22px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(45px, 4vw, 62px);

    font-weight: 500;

    line-height: 1.04;

    color: var(--primary);
}


.hero-content h1 span {
    display: block;

    color: var(--gold);
}


/* =====================================================
   AÇIKLAMA
===================================================== */

.hero-content > p {
    max-width: 520px;

    margin:
        0 0 28px;

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-light);
}


/* =====================================================
   BUTONLAR
===================================================== */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}


.hero-buttons .button {
    min-height: 50px;

    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 12px;
    font-weight: 600;

    transition: all 0.3s ease;
}


.hero-buttons .button-primary {
    background: var(--primary);

    border:
        1px solid var(--primary);

    color: #fff;
}


.hero-buttons .button-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
}


.hero-buttons .button-outline {
    background: transparent;

    border:
        1px solid #cec7bd;

    color: var(--primary);
}


.hero-buttons .button-outline:hover {
    background: var(--primary);
    border-color: var(--primary);

    color: white;
}


.hero-buttons .button i {
    font-size: 12px;

    transition:
        transform 0.3s ease;
}


.hero-buttons .button:hover i {
    transform:
        translateX(4px);
}


/* =====================================================
   SAĞ GÖRSEL
===================================================== */

.hero-image-wrapper {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    background: #e8e2da;
}


.hero-real-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /*
        Laptop sağda olduğu için görselin odağını
        biraz sağ tarafa alıyoruz.
    */

    object-position: center center;
}


/* =====================================================
   SOL İLE RESİM ARASINDA YUMUŞAK GEÇİŞ
===================================================== */

.hero-image-wrapper::before {
    content: "";

    position: absolute;

    z-index: 2;

    top: 0;
    left: 0;

    width: 75px;
    height: 100%;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #f7f4ef 0%,
            rgba(247, 244, 239, 0.65) 30%,
            rgba(247, 244, 239, 0) 100%
        );
}


/* =====================================================
   1600px+
===================================================== */

@media (min-width: 1600px) {

    .hero-grid {
        grid-template-columns:
            50% 50%;
    }


    .hero-content {
        max-width: 650px;

        padding-right: 70px;
    }


    .hero-image-wrapper {
        height: 500px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .hero-grid {
        grid-template-columns:
            48% 52%;
    }


    .hero-content {
        padding:
            50px 35px
            50px 30px;
    }


    .hero-content h1 {
        font-size: 49px;
    }


    .hero-image-wrapper {
        height: 470px;
    }

}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 900px) {

    .hero {
        padding-top: 75px;
    }


    .hero-grid {
        grid-template-columns: 1fr;
    }


    .hero-left {
        justify-content: center;
    }


    .hero-content {
        max-width: none;

        padding:
            55px 30px
            45px;
    }


    .hero-content h1 {
        max-width: 620px;

        font-size: 48px;
    }


    .hero-content > p {
        max-width: 600px;
    }


    .hero-image-wrapper {
        height: 380px;
    }


    .hero-image-wrapper::before {
        width: 100%;
        height: 45px;

        background:
            linear-gradient(
                180deg,
                #f7f4ef 0%,
                rgba(247, 244, 239, 0) 100%
            );
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .hero-content {
        padding:
            42px 20px
            38px;
    }


    .hero-content .section-badge {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .hero-content h1 {
        font-size: 39px;

        line-height: 1.07;

        margin-bottom: 18px;
    }


    .hero-content > p {
        font-size: 14px;

        line-height: 1.65;

        margin-bottom: 24px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .hero-buttons .button {
        width: 100%;
    }


    .hero-image-wrapper {
        height: 290px;
    }


    .hero-real-image {
        object-position:
            62% center;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .hero-content h1 {
        font-size: 34px;
    }


    .hero-image-wrapper {
        height: 250px;
    }

}

/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar {

    background: var(--primary);

    color: var(--white);

}


.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.trust-item {

    display: flex;

    gap: 15px;

    padding: 30px 22px;

    border-right:
        1px solid rgba(255,255,255,.1);

}


.trust-item:first-child {

    border-left:
        1px solid rgba(255,255,255,.1);

}


.trust-icon {

    min-width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    color: var(--gold);

    border:
        1px solid rgba(194,160,106,.5);

    font-size: 18px;

}


.trust-item h3 {

    font-family:
        "DM Sans", sans-serif;

    text-transform: uppercase;

    font-size: 12px;

    letter-spacing: 1px;

    margin-bottom: 5px;

}


.trust-item p {

    color: #aeb7c0;

    font-size: 11px;

    line-height: 1.6;

}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    margin-bottom: 55px;

}


.section-heading.centered {

    text-align: center;

    max-width: 700px;

    margin-left: auto;

    margin-right: auto;

    margin-bottom: 55px;

}


.section-heading.centered .section-badge {

    justify-content: center;

}


.section-heading p {

    max-width: 640px;

    margin-top: 18px;

    color: var(--text-light);

}


/* =====================================================
   SERVICES
===================================================== */

.services {

    background: var(--white);

}


.service-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.service-card {

    position: relative;

    min-height: 340px;

    padding: 36px 32px;

    background: #fff;

    border: 1px solid var(--border);

    overflow: hidden;

    transition: var(--transition);

}


.service-card:hover {

    transform:
        translateY(-8px);

    box-shadow: var(--shadow-hover);

    border-color:
        rgba(194,160,106,.45);

}


.service-card::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--gold);

    transition: var(--transition);

}


.service-card:hover::before {

    width: 100%;

}


.service-number {

    position: absolute;

    right: 25px;

    top: 20px;

    font-family:
        "Playfair Display", serif;

    font-size: 55px;

    color: rgba(194,160,106,.12);

}


.service-icon {

    width: 60px;

    height: 60px;

    border: 1px solid var(--gold-light);

    color: var(--gold-dark);

    display: grid;

    place-items: center;

    font-size: 22px;

    margin-bottom: 26px;

}


.service-card h3 {

    font-size: 18px;

    margin-bottom: 15px;

}


.service-card p {

    color: var(--text-light);

    font-size: 14px;

    min-height: 90px;

}


.service-card a {

    display: inline-flex;

    gap: 10px;

    align-items: center;

    margin-top: 20px;

    font-size: 12px;

    font-weight: 700;

    color: var(--gold-dark);

}


.service-card a i {

    transition: var(--transition);

}


.service-card a:hover i {

    transform:
        translateX(5px);

}


/* =====================================================
   ABOUT
===================================================== */

.about {

    background: var(--cream);

}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 90px;

}


.about-image {

    position: relative;

    min-height: 550px;

}


.about-office {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            #bbb2a6,
            #ebe6de
        );

    overflow: hidden;

}


.about-office::before {

    content: "";

    position: absolute;

    width: 85%;

    height: 210px;

    left: -10%;

    bottom: 40px;

    background:
        linear-gradient(
            135deg,
            #b0a89b,
            #e7e0d6
        );

    transform: rotate(-7deg);

}


.document-book {

    position: absolute;

    width: 220px;

    height: 310px;

    background:
        linear-gradient(
            140deg,
            #162435,
            #29384a
        );

    left: 110px;

    bottom: 90px;

    transform:
        rotate(-12deg);

    box-shadow:
        0 35px 50px rgba(0,0,0,.3);

    padding-top: 110px;

    text-align: center;

    color: var(--gold);

}


.book-logo {

    font-family:
        "Playfair Display", serif;

    font-size: 38px;

    letter-spacing: 8px;

}


.document-book span {

    display: block;

    margin-top: 8px;

    font-size: 9px;

    letter-spacing: 3px;

}


.about-glasses {

    position: absolute;

    right: 55px;

    bottom: 100px;

    font-size: 85px;

    transform: rotate(-10deg);

    color: #43494d;

}


.experience-box {

    position: absolute;

    right: -35px;

    bottom: 30px;

    background: var(--primary);

    color: var(--white);

    padding: 25px 28px;

    min-width: 180px;

}


.experience-box strong {

    display: block;

    font-family:
        "Playfair Display", serif;

    color: var(--gold);

    font-size: 23px;

}


.experience-box span {

    font-size: 11px;

    color: #bac3cb;

}


.about-content h2 {

    margin-bottom: 25px;

}


.about-content > p {

    color: var(--text-light);

    margin-bottom: 15px;

}


.about-list {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin:
        30px 0 35px;

}


.about-list div {

    font-size: 13px;

    display: flex;

    align-items: center;

    gap: 10px;

}


.about-list i {

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background:
        rgba(194,160,106,.15);

    color: var(--gold-dark);

    display: grid;

    place-items: center;

    font-size: 10px;

}


/* =====================================================
   STATS
===================================================== */

.stats {

    background: var(--primary);

    color: var(--white);

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.stat-item {

    padding:
        48px 30px;

    text-align: center;

    border-right:
        1px solid rgba(255,255,255,.1);

}


.stat-item:first-child {

    border-left:
        1px solid rgba(255,255,255,.1);

}


.stat-item strong {

    font-family:
        "Playfair Display", serif;

    font-size: 43px;

    color: var(--gold);

}


.stat-item > span {

    color: var(--gold);

    margin-left: 3px;

    font-size: 18px;

}


.stat-item p {

    margin-top: 6px;

    color: #aeb7c0;

    font-size: 12px;

}


/* =====================================================
   WHY US
===================================================== */

.why-us {

    background: white;

}


.why-grid {

    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap: 100px;

    align-items: center;

}


.why-content h2 {

    margin-bottom: 20px;

}


.why-content > p {

    color: var(--text-light);

    max-width: 520px;

}


.why-items {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 22px;

}


.why-item {

    display: flex;

    gap: 17px;

}


.why-icon {

    min-width: 50px;

    height: 50px;

    background: var(--cream);

    border:
        1px solid var(--border);

    display: grid;

    place-items: center;

    color: var(--gold-dark);

}


.why-item h3 {

    font-size: 15px;

    margin-bottom: 5px;

}


.why-item p {

    color: var(--text-light);

    font-size: 13px;

}


/* PANEL */

.why-panel {

    min-height: 455px;

    background: var(--primary);

    padding: 40px;

    color: var(--white);

    box-shadow: var(--shadow-hover);

}


.why-panel-header {

    display: flex;

    gap: 16px;

    align-items: center;

}


.why-panel-header > span {

    width: 55px;

    height: 55px;

    display: grid;

    place-items: center;

    color: var(--gold);

    border:
        1px solid rgba(194,160,106,.4);

}


.why-panel-header small {

    color: #9ea9b3;

    font-size: 9px;

    letter-spacing: 2px;

}


.why-panel-header h3 {

    margin-top: 3px;

    font-size: 20px;

}


/* CHART */

.chart-wrapper {

    height: 220px;

    margin: 40px 0 30px;

    position: relative;

    border-left:
        1px solid rgba(255,255,255,.08);

    border-bottom:
        1px solid rgba(255,255,255,.08);

}


.chart-bars {

    position: absolute;

    inset: 20px 20px 0 20px;

    display: flex;

    align-items: flex-end;

    gap: 22px;

}


.chart-bars span {

    flex: 1;

    background:
        linear-gradient(
            180deg,
            var(--gold),
            rgba(194,160,106,.2)
        );

}


.chart-line {

    position: absolute;

    top: 80px;

    left: 5%;

    width: 90%;

    height: 2px;

    background: var(--gold);

    transform:
        rotate(-10deg);

    transform-origin: center;

}


.panel-statistics {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-top:
        1px solid rgba(255,255,255,.1);

}


.panel-statistics div {

    padding-top: 20px;

}


.panel-statistics small {

    display: block;

    font-size: 10px;

    color: #9ca6b0;

}


.panel-statistics strong {

    color: var(--gold-light);

    font-size: 14px;

}


/* =====================================================
   BLOG
===================================================== */

.blog {

    background: var(--cream);

}


.blog-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

}


.view-all {

    font-size: 13px;

    font-weight: 700;

    color: var(--gold-dark);

    display: flex;

    align-items: center;

    gap: 10px;

}


.blog-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;

}


.blog-card {

    background: var(--white);

    transition: var(--transition);

}


.blog-card:hover {

    transform:
        translateY(-7px);

    box-shadow: var(--shadow-hover);

}


.blog-image {

    height: 235px;

    position: relative;

    overflow: hidden;

    display: grid;

    place-items: center;

    font-size: 55px;

    color:
        rgba(255,255,255,.7);

}


.blog-image-one {

    background:
        linear-gradient(
            135deg,
            #24384b,
            #9d8b70
        );

}


.blog-image-two {

    background:
        linear-gradient(
            135deg,
            #b6aa9a,
            #465260
        );

}


.blog-image-three {

    background:
        linear-gradient(
            135deg,
            #253649,
            #75674f
        );

}


.blog-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0,0,0,.3)
        );

}


.blog-category {

    position: absolute;

    left: 20px;

    top: 20px;

    z-index: 2;

    background:
        rgba(255,255,255,.94);

    color: var(--primary);

    font-size: 10px;

    padding: 7px 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.blog-image > i {

    z-index: 1;

}


.blog-content {

    padding: 26px;

}


.blog-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 15px;

}


.blog-meta span {

    font-size: 10px;

    color: var(--text-light);

}


.blog-meta i {

    color: var(--gold);

    margin-right: 5px;

}


.blog-content h3 {

    font-family:
        "Playfair Display", serif;

    font-size: 21px;

    margin-bottom: 14px;

}


.blog-content p {

    color: var(--text-light);

    font-size: 13px;

    margin-bottom: 20px;

}


.blog-content a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 700;

    color: var(--gold-dark);

}


/* =====================================================
   ANNOUNCEMENTS
===================================================== */

.announcements {

    background: var(--primary);

    color: var(--white);

}


.announcements-grid {

    display: grid;

    grid-template-columns:
        .7fr 1.3fr;

    gap: 80px;

}


.announcements-heading h2 {

    margin-bottom: 20px;

}


.announcements-heading p {

    color: #aeb7c0;

    margin-bottom: 35px;

    max-width: 420px;

}


.announcement-list {

    border-top:
        1px solid rgba(255,255,255,.12);

}


.announcement {

    display: grid;

    grid-template-columns:
        80px 1fr 40px;

    align-items: center;

    gap: 25px;

    padding:
        25px 10px;

    border-bottom:
        1px solid rgba(255,255,255,.12);

    transition: var(--transition);

}


.announcement:hover {

    background:
        rgba(255,255,255,.04);

    padding-left: 20px;

}


.announcement-date {

    text-align: center;

    border-right:
        1px solid rgba(255,255,255,.15);

}


.announcement-date strong {

    display: block;

    color: var(--gold);

    font-family:
        "Playfair Display", serif;

    font-size: 32px;

}


.announcement-date span {

    color: #aeb7c0;

    font-size: 10px;

    letter-spacing: 2px;

}


.announcement-tag {

    display: block;

    color: var(--gold);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 5px;

}


.announcement-content h3 {

    font-size: 15px;

    margin-bottom: 4px;

}


.announcement-content p {

    color: #aeb7c0;

    font-size: 12px;

}


.announcement > i {

    color: var(--gold);

}


/* =====================================================
   CONTACT
===================================================== */

.contact {

    background: var(--cream);

}


.contact-box {

    background: var(--white);

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    box-shadow: var(--shadow);

}


.contact-info {

    padding: 60px;

    background:
        linear-gradient(
            145deg,
            #f9f7f3,
            #f0ece6
        );

}


.contact-info h2 {

    margin-bottom: 22px;

}


.contact-info > p {

    color: var(--text-light);

    margin-bottom: 35px;

}


.contact-details {

    display: flex;

    flex-direction: column;

    gap: 17px;

}


.contact-details > * {

    display: flex;

    align-items: center;

    gap: 14px;

}


.contact-icon {

    width: 45px;

    height: 45px;

    border:
        1px solid var(--gold-light);

    display: grid;

    place-items: center;

    color: var(--gold-dark);

}


.contact-details div div:last-child {

    display: flex;

    flex-direction: column;

}


.contact-details small {

    color: var(--text-light);

    font-size: 10px;

}


.contact-details strong {

    font-size: 13px;

}


/* FORM */

.contact-form {

    padding: 60px;

}


.form-title {

    margin-bottom: 28px;

}


.form-title h3 {

    font-family:
        "Playfair Display", serif;

    font-size: 27px;

}


.form-title p {

    font-size: 13px;

    color: var(--text-light);

    margin-top: 6px;

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

}


.form-group {

    margin-bottom: 18px;

}


.form-group label {

    display: block;

    font-size: 11px;

    font-weight: 700;

    color: #4e5660;

    margin-bottom: 7px;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border:
        1px solid var(--border);

    background: #faf9f7;

    outline: none;

    padding:
        14px 15px;

    color: var(--text);

    transition: var(--transition);

}


.form-group input,
.form-group select {

    height: 50px;

}


.form-group textarea {

    resize: vertical;

    min-height: 120px;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--gold);

    background: white;

}


.form-checkbox {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: var(--text-light);

    font-size: 10px;

    margin-bottom: 22px;

}


.form-checkbox input {

    margin-top: 2px;

}


.form-button {

    width: 100%;

}


.form-message {

    font-size: 12px;

    margin-top: 15px;

    color: #33834c;

}


/* =====================================================
   CTA
===================================================== */

.cta {

    background:
        linear-gradient(
            110deg,
            #182636,
            #24384a
        );

    color: white;

}


.cta-wrapper {

    min-height: 250px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.cta small {

    display: block;

    color: var(--gold);

    letter-spacing: 2px;

    margin-bottom: 10px;

}


.cta h2 {

    font-size:
        clamp(30px, 4vw, 46px);

    max-width: 730px;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #0e1823;

    color: white;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr .8fr .9fr 1.1fr;

    gap: 55px;

    padding:
        80px 0 65px;

}


.footer-logo {

    display: flex;

    gap: 13px;

    align-items: center;

    margin-bottom: 22px;

}


.footer-logo-symbol {

    width: 52px;

    height: 52px;

    border:
        1px solid rgba(194,160,106,.5);

    color: var(--gold);

    display: grid;

    place-items: center;

    font-family:
        "Playfair Display", serif;

    font-size: 20px;

}


.footer-logo > div:last-child {

    display: flex;

    flex-direction: column;

}


.footer-logo strong {

    font-family:
        "Playfair Display", serif;

    letter-spacing: 1px;

}


.footer-logo span {

    font-size: 7px;

    letter-spacing: 1.5px;

    color: #8794a0;

}


.footer-about > p {

    color: #82909d;

    font-size: 13px;

    max-width: 330px;

    margin-bottom: 25px;

}


.social-links {

    display: flex;

    gap: 8px;

}


.social-links a {

    width: 39px;

    height: 39px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(255,255,255,.12);

    color: #a6b1ba;

    transition: var(--transition);

}


.social-links a:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: white;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 11px;

}


.footer-column h3 {

    position: relative;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    margin-bottom: 17px;

    padding-bottom: 13px;

}


.footer-column h3::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;

    height: 1px;

    background: var(--gold);

}


.footer-column a,
.footer-column p {

    color: #8794a0;

    font-size: 12px;

    transition: var(--transition);

}


.footer-column a:hover {

    color: var(--gold);

    transform: translateX(4px);

}


.footer-contact a,
.footer-contact p {

    display: flex;

    align-items: flex-start;

    gap: 10px;

}


.footer-contact i {

    color: var(--gold);

    margin-top: 3px;

}


/* FOOTER BOTTOM */

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.08);

}


.footer-bottom-wrapper {

    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-bottom p {

    color: #687783;

    font-size: 10px;

}


.footer-bottom-wrapper div {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

}


.footer-bottom a {

    color: #687783;

    font-size: 10px;

    transition: var(--transition);

}


.footer-bottom a:hover {

    color: var(--gold);

}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-button {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #25d366;

    color: white;

    display: grid;

    place-items: center;

    font-size: 25px;

    z-index: 990;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.2);

    transition: var(--transition);

}


.whatsapp-button:hover {

    transform:
        scale(1.08);

}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {

    position: fixed;

    right: 32px;

    bottom: 92px;

    width: 42px;

    height: 42px;

    border: 0;

    background: var(--primary);

    color: white;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition: var(--transition);

    z-index: 980;

}


.back-to-top.visible {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media(max-width: 1100px) {

    .navbar {

        gap: 18px;

    }


    .nav-link {

        font-size: 11px;

    }


    .hero-content {

        padding-right: 30px;

    }


    .service-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* =====================================================
   RESPONSIVE - MOBILE NAV
===================================================== */

@media(max-width: 900px) {

    .section {

        padding:
            80px 0;

    }


    .header-wrapper {

        min-height: 75px;

    }


    .header-button {

        display: none;

    }


    .mobile-menu-button {

        display: flex;

    }


    .navbar {

        position: fixed;

        left: 0;

        top: 75px;

        width: 100%;

        height:
            calc(100vh - 75px);

        background: white;

        flex-direction: column;

        align-items: flex-start;

        padding: 30px;

        gap: 0;

        transform:
            translateX(100%);

        transition: var(--transition);

    }


    .navbar.active {

        transform:
            translateX(0);

    }


    .nav-link {

        width: 100%;

        padding:
            18px 0;

        border-bottom:
            1px solid var(--border);

        font-size: 14px;

    }


    .nav-link::after {

        display: none;

    }


    .mobile-menu-button.active span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);

    }


    .mobile-menu-button.active span:nth-child(2) {

        opacity: 0;

    }


    .mobile-menu-button.active span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);

    }


    /* HERO */

    .hero {

        padding-top: 75px;

    }


    .hero-grid {

        grid-template-columns: 1fr;

    }


    .hero-content {

        padding:
            80px 0 60px;

    }


    .hero-image-wrapper {

        min-height: 480px;

    }


    .hero-image {

        inset: 0;

    }


    .hero-floating-card {

        left: 20px;

    }


    /* TRUST */

    .trust-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    /* ABOUT */

    .about-grid {

        grid-template-columns:
            1fr;

        gap: 60px;

    }


    .about-image {

        min-height: 480px;

    }


    .experience-box {

        right: 20px;

    }


    /* STATS */

    .stats-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    /* WHY */

    .why-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    /* BLOG */

    .blog-grid {

        grid-template-columns:
            1fr 1fr;

    }


    /* ANNOUNCEMENTS */

    .announcements-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    /* CONTACT */

    .contact-box {

        grid-template-columns: 1fr;

    }


    .cta-wrapper {

        padding:
            60px 0;

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media(max-width: 650px) {

    .container {

        width:
            min(100% - 28px, 1180px);

    }


    h1 {

        font-size: 44px;

    }


    h2 {

        font-size: 36px;

    }


    .hero-content {

        padding-top: 60px;

    }


    .hero-content > p {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .button {

        width: 100%;

    }


    .hero-mini-info {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

    }


    .hero-mini-info .line {

        width: 100%;

        height: 1px;

    }


    .hero-image-wrapper {

        min-height: 380px;

    }


    .hero-laptop {

        right: 10px;

        width: 230px;

    }


    .laptop-screen {

        height: 130px;

    }


    .laptop-base {

        width: 260px;

        margin-left: -15px;

    }


    .hero-cup {

        left: 32%;

        width: 70px;

        height: 80px;

    }


    .hero-book {

        width: 180px;

    }


    .hero-floating-card {

        bottom: 15px;

        width: 190px;

    }


    /* TRUST */

    .trust-grid {

        grid-template-columns: 1fr;

    }


    .trust-item {

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.1);

    }


    /* SERVICES */

    .service-grid {

        grid-template-columns: 1fr;

    }


    /* ABOUT */

    .about-image {

        min-height: 400px;

    }


    .document-book {

        width: 170px;

        height: 240px;

        left: 60px;

        bottom: 70px;

    }


    .about-glasses {

        font-size: 55px;

        right: 30px;

    }


    .about-list {

        grid-template-columns: 1fr;

    }


    /* STATS */

    .stats-grid {

        grid-template-columns: 1fr 1fr;

    }


    .stat-item {

        padding:
            35px 15px;

    }


    .stat-item strong {

        font-size: 32px;

    }


    /* WHY */

    .why-panel {

        padding: 25px;

    }


    /* BLOG */

    .blog-heading {

        align-items: flex-start;

        gap: 25px;

        flex-direction: column;

    }


    .blog-grid {

        grid-template-columns: 1fr;

    }


    /* ANNOUNCEMENTS */

    .announcement {

        grid-template-columns:
            65px 1fr 20px;

        gap: 12px;

    }


    .announcement-content p {

        display: none;

    }


    /* CONTACT */

    .contact-info,
    .contact-form {

        padding:
            40px 25px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    /* FOOTER */

    .footer-grid {

        grid-template-columns: 1fr;

        padding:
            60px 0;

    }


    .footer-bottom-wrapper {

        padding:
            25px 0;

        align-items: flex-start;

        flex-direction: column;

    }


    .footer-bottom-wrapper div {

        gap: 14px;

    }

}


/* =====================================================
   ANIMATION
===================================================== */

.fade-in {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}


.fade-in.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =====================================================
   HAKKIMIZDA PAGE
===================================================== */

/* =====================================================
   PAGE HERO
===================================================== */

.page-hero {
    position: relative;

    width: 100%;
    height: 230px;

    margin-top: 88px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(11, 28, 44, 0.92) 0%,
            rgba(11, 28, 44, 0.84) 40%,
            rgba(11, 28, 44, 0.55) 72%,
            rgba(11, 28, 44, 0.35) 100%
        ),
        url("../images/page-hero-bg.jpg");

    background-size: cover;
    background-position: center 52%;
    background-repeat: no-repeat;
}


/* =====================================================
   HAFİF OVERLAY
===================================================== */

.page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(194, 160, 106, 0.025),
            transparent 50%
        );
}


/* =====================================================
   HERO INNER
===================================================== */

.page-hero-inner {
    position: relative;
    z-index: 2;

    width: min(1300px, calc(100% - 80px));

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* =====================================================
   CONTENT
===================================================== */

.page-hero-content {
    width: 100%;

    padding: 0;

    margin: 0;
}


/* =====================================================
   TITLE
===================================================== */

.page-hero-content h1 {
    margin: 0 0 15px 0;

    padding: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: 48px;
    font-weight: 500;

    line-height: 1;

    color: #ffffff;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.page-breadcrumb {
    display: flex;
    align-items: center;

    gap: 11px;

    margin: 0;

    font-size: 12px;
}


/* ANA SAYFA */

.page-breadcrumb a {
    color:
        rgba(255, 255, 255, 0.65);

    text-decoration: none;

    transition: all 0.3s ease;
}


.page-breadcrumb a:hover {
    color: var(--gold);
}


/* ICON */

.page-breadcrumb i {
    color: var(--gold);

    font-size: 8px;
}


/* CURRENT PAGE */

.page-breadcrumb span {
    color: #ffffff;

    font-weight: 600;
}


/* =====================================================
   LARGE SCREEN
===================================================== */

@media (min-width: 1600px) {

    .page-hero-inner {
        width: 1300px;
    }

}


/* =====================================================
   1200 - 1599
===================================================== */

@media (max-width: 1599px) {

    .page-hero-inner {
        width: min(
            1180px,
            calc(100% - 60px)
        );
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .page-hero {
        height: 210px;
    }


    .page-hero-inner {
        width:
            calc(100% - 50px);
    }


    .page-hero-content h1 {
        font-size: 44px;
    }

}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 900px) {

    .page-hero {
        margin-top: 75px;

        height: 195px;

        background-position:
            60% center;
    }


    .page-hero-inner {
        width:
            calc(100% - 40px);
    }


    .page-hero-content h1 {
        font-size: 40px;

        margin-bottom: 13px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .page-hero {
        height: 175px;

        background-position:
            66% center;
    }


    .page-hero-inner {
        width:
            calc(100% - 30px);
    }


    .page-hero-content h1 {
        font-size: 35px;
    }


    .page-breadcrumb {
        font-size: 11px;

        gap: 9px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .page-hero {
        height: 160px;
    }


    .page-hero-content h1 {
        font-size: 32px;
    }

}

/* =====================================================
   ABOUT PAGE INTRO
===================================================== */

.about-page-intro {
    padding: 75px 0 90px;

    background: #fff;
}


.about-page-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 90px;
}


/* IMAGE */

.about-page-image {
    position: relative;

    min-height: 580px;
}


.about-page-image > img {
    width: 100%;
    height: 580px;

    object-fit: cover;

    display: block;
}


.about-image-badge {
    position: absolute;

    right: -35px;
    bottom: 35px;

    min-width: 230px;

    padding: 22px;

    display: flex;
    align-items: center;

    gap: 15px;

    background: var(--primary);

    color: #fff;

    box-shadow: var(--shadow-hover);
}


.about-image-badge-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(194,160,106,.5);

    color: var(--gold);

    font-size: 19px;
}


.about-image-badge > div:last-child {
    display: flex;
    flex-direction: column;
}


.about-image-badge small {
    font-size: 9px;

    color: #9ca9b5;

    letter-spacing: 1.5px;
}


.about-image-badge strong {
    font-family:
        "Playfair Display",
        serif;

    color: var(--gold-light);

    font-size: 18px;
}


/* CONTENT */

.about-page-content h2 {
    margin-bottom: 25px;
}


.about-page-content p {
    color: var(--text-light);

    margin-bottom: 16px;

    line-height: 1.8;
}


.about-page-content .about-lead {
    font-family:
        "Playfair Display",
        serif;

    color: var(--primary);

    font-size: 20px;

    line-height: 1.6;
}


.about-signature {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-top: 35px;
}


.signature-line {
    width: 55px;
    height: 1px;

    background: var(--gold);
}


.about-signature > div:last-child {
    display: flex;
    flex-direction: column;
}


.about-signature strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 18px;
}


.about-signature span {
    color: var(--text-light);

    font-size: 11px;
}


/* =====================================================
   VALUES
===================================================== */

.about-values {
    padding: 105px 0;

    background: var(--cream);
}


.about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.about-value-card {
    position: relative;

    min-height: 300px;

    padding: 35px 28px;

    background: #fff;

    border: 1px solid var(--border);

    transition: var(--transition);

    overflow: hidden;
}


.about-value-card:hover {
    transform:
        translateY(-7px);

    box-shadow: var(--shadow-hover);

    border-color:
        rgba(194,160,106,.5);
}


.about-value-number {
    position: absolute;

    right: 20px;
    top: 18px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 50px;

    color:
        rgba(194,160,106,.12);
}


.about-value-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    border:
        1px solid var(--gold-light);

    color: var(--gold-dark);

    font-size: 21px;
}


.about-value-card h3 {
    margin-bottom: 13px;

    font-size: 18px;
}


.about-value-card p {
    color: var(--text-light);

    font-size: 13px;

    line-height: 1.75;
}


/* =====================================================
   APPROACH
===================================================== */

.about-approach {
    padding: 110px 0;

    background: var(--primary);

    color: #fff;
}


.about-approach-grid {
    display: grid;

    grid-template-columns:
        1fr .85fr;

    align-items: center;

    gap: 100px;
}


.approach-content h2 {
    margin-bottom: 23px;
}


.approach-content h2 span {
    display: block;
}


.approach-content > p {
    max-width: 600px;

    color: #aeb7c0;

    line-height: 1.8;
}


.approach-list {
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 23px;
}


.approach-item {
    display: flex;

    gap: 16px;
}


.approach-item > span {
    min-width: 32px;
    height: 32px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(194,160,106,.5);

    color: var(--gold);

    font-size: 11px;
}


.approach-item h3 {
    margin-bottom: 5px;

    font-size: 14px;
}


.approach-item p {
    color: #9eabb6;

    font-size: 12px;

    line-height: 1.7;
}


/* QUOTE BOX */

.approach-box {
    border:
        1px solid rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.03);
}


.approach-box-top {
    min-height: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-bottom:
        1px solid rgba(255,255,255,.1);
}


.approach-box-top > span {
    font-family:
        "Playfair Display",
        serif;

    color: var(--gold);

    font-size: 36px;

    letter-spacing: 8px;
}


.approach-box-top small {
    margin-top: 5px;

    color: #8695a2;

    font-size: 8px;

    letter-spacing: 2px;
}


.approach-box-content {
    padding: 45px;
}


.approach-box blockquote {
    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    color: #e5e8eb;

    font-size: 22px;

    line-height: 1.6;
}


.approach-box-footer {
    margin-top: 35px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.1);

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.approach-box-footer > div {
    display: flex;
    flex-direction: column;
}


.approach-box-footer strong {
    color: var(--gold-light);
}


.approach-box-footer span {
    color: #8997a3;

    font-size: 10px;
}


.approach-box-footer > i {
    color: var(--gold);

    font-size: 24px;
}


/* =====================================================
   WHY US
===================================================== */

.about-why {
    padding: 110px 0;

    background: #fff;
}


.about-why-grid {
    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 100px;

    align-items: center;
}


.about-why-heading h2 {
    margin-bottom: 22px;
}


.about-why-heading p {
    max-width: 500px;

    color: var(--text-light);

    line-height: 1.8;

    margin-bottom: 30px;
}


.about-why-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}


.about-why-item {
    min-height: 200px;

    padding: 28px;

    border: 1px solid var(--border);

    transition: var(--transition);
}


.about-why-item:hover {
    box-shadow: var(--shadow);

    transform:
        translateY(-4px);

    border-color:
        rgba(194,160,106,.45);
}


.about-why-icon {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    background: var(--cream);

    color: var(--gold-dark);

    border:
        1px solid var(--border);
}


.about-why-item h3 {
    margin-bottom: 9px;

    font-size: 15px;
}


.about-why-item p {
    color: var(--text-light);

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .about-values-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .about-page-grid {
        gap: 55px;
    }


    .about-approach-grid {
        gap: 60px;
    }


    .about-why-grid {
        gap: 60px;
    }

}


@media (max-width: 900px) {

    .page-hero {
        padding-top: 75px;
    }


    .page-hero-wrapper {
        min-height: 300px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 25px;

        padding:
            55px 0;
    }


    .about-page-grid {
        grid-template-columns: 1fr;
    }


    .about-page-image {
        min-height: 500px;
    }


    .about-page-image > img {
        height: 500px;
    }


    .about-image-badge {
        right: 20px;
    }


    .about-approach-grid {
        grid-template-columns: 1fr;
    }


    .about-why-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .page-hero-wrapper {
        min-height: auto;

        padding:
            45px 0;
    }


    .page-hero-content h1 {
        font-size: 40px;
    }


    .page-breadcrumb {
        font-size: 10px;
    }


    .about-page-intro,
    .about-values,
    .about-approach,
    .about-why {
        padding:
            75px 0;
    }


    .about-page-image,
    .about-page-image > img {
        height: 390px;

        min-height: 390px;
    }


    .about-image-badge {
        right: 15px;
        bottom: 15px;

        min-width: 195px;
    }


    .about-values-grid {
        grid-template-columns: 1fr;
    }


    .about-value-card {
        min-height: auto;
    }


    .approach-box-content {
        padding: 30px 25px;
    }


    .approach-box blockquote {
        font-size: 19px;
    }


    .about-why-list {
        grid-template-columns: 1fr;
    }


    .about-why-item {
        min-height: auto;
    }

}


/* =====================================================
   HİZMETLERİMİZ PAGE
===================================================== */


/* =====================================================
   INTRO
===================================================== */

.services-page-intro {
    padding: 95px 0 110px;

    background: #ffffff;
}


/* =====================================================
   SERVICE GRID
===================================================== */

.services-page-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.service-page-card {
    position: relative;

    min-height: 440px;

    padding: 34px 30px;

    background: #fff;

    border: 1px solid var(--border);

    transition: var(--transition);

    overflow: hidden;
}


.service-page-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--gold);

    transition: var(--transition);
}


.service-page-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-hover);

    border-color:
        rgba(194,160,106,.4);
}


.service-page-card:hover::after {
    width: 100%;
}


.service-page-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 25px;
}


.service-page-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold-light);

    color: var(--gold-dark);

    font-size: 22px;
}


.service-page-number {
    font-family:
        "Playfair Display",
        serif;

    font-size: 50px;

    line-height: 1;

    color:
        rgba(194,160,106,.13);
}


.service-page-card h3 {
    margin-bottom: 14px;

    font-size: 19px;
}


.service-page-card > p {
    min-height: 68px;

    margin-bottom: 22px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.7;
}


.service-page-card ul {
    list-style: none;

    margin: 0 0 26px;

    padding: 0;
}


.service-page-card li {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 8px 0;

    color: #58616a;

    font-size: 12px;

    border-bottom:
        1px solid #f1ede7;
}


.service-page-card li i {
    color: var(--gold-dark);

    font-size: 9px;
}


.service-page-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--gold-dark);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;
}


.service-page-link i {
    transition: var(--transition);
}


.service-page-link:hover i {
    transform: translateX(5px);
}


/* =====================================================
   SERVICE DETAIL
===================================================== */

.service-detail {
    padding: 110px 0;

    background: var(--cream);
}


.service-detail-alt {
    background: #ffffff;
}


.service-detail-grid {
    display: grid;

    grid-template-columns:
        1fr .85fr;

    align-items: center;

    gap: 90px;
}


.service-detail-reverse {
    grid-template-columns:
        .85fr 1fr;
}


.service-detail-content h2 {
    margin-bottom: 24px;
}


.service-detail-content h2 span {
    display: block;
}


.service-detail-content > p {
    margin-bottom: 16px;

    max-width: 620px;

    color: var(--text-light);

    line-height: 1.8;
}


.service-detail-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 13px;

    margin-top: 30px;
}


.service-detail-list div {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px 15px;

    background: #fff;

    border:
        1px solid var(--border);

    font-size: 12px;
}


.service-detail-alt .service-detail-list div {
    background: var(--cream);
}


.service-detail-list i {
    width: 23px;
    height: 23px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(194,160,106,.13);

    color: var(--gold-dark);

    font-size: 9px;
}


/* =====================================================
   DETAIL PANEL
===================================================== */

.service-detail-panel {
    position: relative;

    min-height: 390px;

    padding: 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--primary);

    color: #fff;

    box-shadow: var(--shadow-hover);

    overflow: hidden;
}


.service-detail-panel::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    border:
        1px solid rgba(194,160,106,.12);

    right: -80px;
    top: -80px;
}


.service-detail-panel-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border:
        1px solid rgba(194,160,106,.45);

    color: var(--gold);

    font-size: 22px;
}


.service-detail-panel > span {
    margin-bottom: 10px;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 2px;
}


.service-detail-panel h3 {
    max-width: 360px;

    margin-bottom: 17px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 31px;

    line-height: 1.25;
}


.service-detail-panel p {
    max-width: 420px;

    color: #aeb7c0;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   PROCESS
===================================================== */

.services-process {
    padding: 105px 0;

    background: var(--primary);

    color: #fff;
}


.services-process .section-heading h2 {
    color: #fff;
}


.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    background:
        rgba(255,255,255,.1);
}


.process-item {
    position: relative;

    min-height: 280px;

    padding: 35px 28px;

    background: var(--primary);
}


.process-number {
    position: absolute;

    top: 20px;
    right: 22px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 48px;

    color:
        rgba(194,160,106,.15);
}


.process-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    color: var(--gold);

    border:
        1px solid rgba(194,160,106,.42);

    font-size: 19px;
}


.process-item h3 {
    margin-bottom: 12px;

    font-size: 15px;
}


.process-item p {
    color: #aeb7c0;

    font-size: 12px;

    line-height: 1.75;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .services-page-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .service-detail-grid,
    .service-detail-reverse {
        gap: 55px;
    }


    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .service-detail-grid,
    .service-detail-reverse {
        grid-template-columns: 1fr;
    }


    .service-detail-panel {
        min-height: 340px;
    }

}


@media (max-width: 650px) {

    .services-page-intro,
    .service-detail,
    .services-process {
        padding: 75px 0;
    }


    .services-page-grid {
        grid-template-columns: 1fr;
    }


    .service-page-card {
        min-height: auto;
    }


    .service-detail-list {
        grid-template-columns: 1fr;
    }


    .service-detail-panel {
        min-height: auto;

        padding: 35px 27px;
    }


    .service-detail-panel h3 {
        font-size: 26px;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .process-item {
        min-height: auto;
    }

}


/* =====================================================
   BLOG PAGE
===================================================== */


/* =====================================================
   BLOG INTRO
===================================================== */

.blog-page-intro {
    padding: 90px 0 45px;

    background: #ffffff;
}


/* =====================================================
   FEATURED BLOG
===================================================== */

.featured-blog {
    padding: 0 0 85px;

    background: #ffffff;
}


.featured-blog-card {
    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    min-height: 450px;

    background: var(--cream);

    border: 1px solid var(--border);

    overflow: hidden;
}


.featured-blog-image {
    position: relative;

    min-height: 450px;

    overflow: hidden;
}


.featured-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .6s ease;
}


.featured-blog-card:hover .featured-blog-image img {
    transform: scale(1.035);
}


.featured-category {
    position: absolute;

    top: 25px;
    left: 25px;

    z-index: 2;

    padding: 8px 14px;

    background: var(--primary);

    color: #fff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.featured-blog-content {
    padding: 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.featured-label {
    display: block;

    margin:
        20px 0 10px;

    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


.featured-blog-content h2 {
    margin-bottom: 20px;

    font-size:
        clamp(30px, 3vw, 44px);

    line-height: 1.15;
}


.featured-blog-content p {
    margin-bottom: 28px;

    color: var(--text-light);

    line-height: 1.8;

    font-size: 14px;
}


/* =====================================================
   BLOG META
===================================================== */

.blog-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 17px;
}


.blog-meta span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--text-light);

    font-size: 10px;
}


.blog-meta i {
    color: var(--gold-dark);
}


/* =====================================================
   BLOG FILTER
===================================================== */

.blog-filter-section {
    padding:
        25px 0;

    background: var(--cream);

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}


.blog-filters {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    flex-wrap: wrap;
}


.blog-filter {
    min-height: 39px;

    padding:
        0 17px;

    border:
        1px solid var(--border);

    background: #fff;

    color: #66707a;

    font-size: 11px;
    font-weight: 600;

    transition: var(--transition);
}


.blog-filter:hover,
.blog-filter.active {
    background: var(--primary);

    border-color: var(--primary);

    color: #fff;
}


/* =====================================================
   BLOG LIST
===================================================== */

.blog-page-list {
    padding:
        90px 0 110px;

    background: #fff;
}


.blog-page-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* CARD */

.blog-page-card {
    background: #fff;

    border:
        1px solid var(--border);

    transition: var(--transition);

    overflow: hidden;
}


.blog-page-card:hover {
    transform:
        translateY(-6px);

    box-shadow: var(--shadow-hover);

    border-color:
        rgba(194,160,106,.45);
}


/* IMAGE */

.blog-page-image {
    position: relative;

    display: block;

    height: 235px;

    overflow: hidden;

    background: var(--cream);
}


.blog-page-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .5s ease;
}


.blog-page-card:hover .blog-page-image img {
    transform:
        scale(1.045);
}


.blog-page-image > span {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 2;

    padding:
        7px 11px;

    background:
        rgba(255,255,255,.95);

    color: var(--primary);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;

    box-shadow:
        0 4px 15px
        rgba(0,0,0,.05);
}


/* PLACEHOLDER */

.blog-placeholder {
    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #26384b,
            #aa9a82
        );
}


.blog-placeholder > div {
    color:
        rgba(255,255,255,.65);

    font-size: 50px;
}


/* CONTENT */

.blog-page-content {
    padding: 25px;
}


.blog-page-content h3 {
    margin:
        15px 0 13px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 21px;

    line-height: 1.35;
}


.blog-page-content h3 a {
    transition: var(--transition);
}


.blog-page-content h3 a:hover {
    color: var(--gold-dark);
}


.blog-page-content > p {
    min-height: 68px;

    margin-bottom: 20px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.7;
}


.blog-read-more {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;
}


.blog-read-more i {
    transition: var(--transition);
}


.blog-read-more:hover i {
    transform:
        translateX(5px);
}


/* =====================================================
   PAGINATION
===================================================== */

.blog-pagination {
    display: flex;
    justify-content: center;

    gap: 7px;

    margin-top: 55px;
}


.blog-pagination a {
    width: 41px;
    height: 41px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    background: #fff;

    color: var(--text-light);

    font-size: 11px;

    transition: var(--transition);
}


.blog-pagination a:hover,
.blog-pagination a.active {
    background: var(--primary);

    border-color: var(--primary);

    color: #fff;
}


.blog-pagination a.disabled {
    opacity: .4;

    pointer-events: none;
}


/* =====================================================
   FILTER HIDDEN
===================================================== */

.blog-page-card.blog-hidden {
    display: none;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .featured-blog-card {
        grid-template-columns:
            1fr 1fr;
    }


    .featured-blog-content {
        padding: 40px;
    }


    .blog-page-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .featured-blog-card {
        grid-template-columns: 1fr;
    }


    .featured-blog-image {
        min-height: 350px;
    }


    .featured-blog-content {
        padding: 40px 30px;
    }

}


@media (max-width: 650px) {

    .blog-page-intro {
        padding:
            70px 0 35px;
    }


    .featured-blog {
        padding-bottom: 65px;
    }


    .featured-blog-image {
        min-height: 280px;
    }


    .featured-blog-content {
        padding:
            30px 22px;
    }


    .featured-blog-content h2 {
        font-size: 30px;
    }


    .blog-page-list {
        padding:
            70px 0 80px;
    }


    .blog-page-grid {
        grid-template-columns: 1fr;
    }


    .blog-page-image {
        height: 230px;
    }


    .blog-page-content > p {
        min-height: auto;
    }

}


/* =====================================================
   BLOG DETAIL PAGE
===================================================== */

.blog-detail-page {
    padding: 90px 0 110px;
    background: #ffffff;
}


/* =====================================================
   LAYOUT
===================================================== */

.blog-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 330px;

    gap: 65px;

    align-items: start;
}


/* =====================================================
   MAIN
===================================================== */

.blog-detail-main {
    min-width: 0;
}


/* =====================================================
   HEADER
===================================================== */

.blog-detail-header {
    max-width: 900px;

    margin-bottom: 35px;
}


.blog-detail-category {
    display: inline-block;

    margin-bottom: 18px;

    padding: 8px 13px;

    background: var(--cream);

    border: 1px solid var(--border);

    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.blog-detail-header h1 {
    margin: 0 0 22px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(38px, 4vw, 58px);

    font-weight: 500;

    line-height: 1.13;

    color: var(--primary);
}


.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;
}


.blog-detail-meta span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--text-light);

    font-size: 11px;
}


.blog-detail-meta i {
    color: var(--gold-dark);
}


/* =====================================================
   HERO IMAGE
===================================================== */

.blog-detail-image {
    width: 100%;

    height: 470px;

    margin-bottom: 45px;

    overflow: hidden;
}


.blog-detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =====================================================
   CONTENT
===================================================== */

.blog-detail-content {
    max-width: 850px;
}


.blog-detail-content > p {
    margin-bottom: 21px;

    color: #5f6871;

    font-size: 15px;

    line-height: 1.9;
}


.blog-detail-content .blog-lead {
    color: var(--primary);

    font-family:
        "Playfair Display",
        serif;

    font-size: 21px;

    line-height: 1.7;
}


.blog-detail-content h2 {
    margin:
        45px 0 18px;

    color: var(--primary);

    font-family:
        "Playfair Display",
        serif;

    font-size: 31px;
    font-weight: 500;

    line-height: 1.25;
}


/* =====================================================
   BLOCKQUOTE
===================================================== */

.blog-detail-content blockquote {
    position: relative;

    margin:
        40px 0;

    padding:
        30px 35px 30px 40px;

    background: var(--cream);

    border-left:
        3px solid var(--gold);

    color: var(--primary);

    font-family:
        "Playfair Display",
        serif;

    font-size: 21px;

    line-height: 1.65;
}


.blog-detail-content blockquote::before {
    content: "\201C";

    position: absolute;

    top: 8px;
    right: 25px;

    color:
        rgba(194,160,106,.18);

    font-size: 70px;

    line-height: 1;
}


/* =====================================================
   CHECK LIST
===================================================== */

.blog-detail-check-list {
    display: flex;
    flex-direction: column;

    gap: 12px;

    margin:
        28px 0 35px;
}


.blog-detail-check-list > div {
    display: flex;

    gap: 12px;

    align-items: flex-start;

    padding: 14px 16px;

    background: #faf9f7;

    border:
        1px solid var(--border);

    color: #56606a;

    font-size: 13px;

    line-height: 1.6;
}


.blog-detail-check-list i {
    min-width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    margin-top: 1px;

    border-radius: 50%;

    background:
        rgba(194,160,106,.13);

    color: var(--gold-dark);

    font-size: 9px;
}


/* =====================================================
   INFO BOX
===================================================== */

.blog-info-box {
    display: flex;

    gap: 18px;

    margin:
        40px 0;

    padding: 28px;

    background: #172536;

    color: #fff;
}


.blog-info-icon {
    min-width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(194,160,106,.5);

    color: var(--gold);

    font-size: 17px;
}


.blog-info-box h3 {
    margin-bottom: 8px;

    font-size: 15px;
}


.blog-info-box p {
    color: #aeb7c0;

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   TAG / SHARE
===================================================== */

.blog-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 50px;

    padding-top: 28px;

    border-top:
        1px solid var(--border);
}


.blog-tags,
.blog-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}


.blog-tags > span,
.blog-share > span {
    color: var(--primary);

    font-size: 11px;
    font-weight: 700;
}


.blog-tags a {
    padding: 6px 10px;

    background: var(--cream);

    border: 1px solid var(--border);

    color: var(--text-light);

    font-size: 9px;

    transition: var(--transition);
}


.blog-tags a:hover {
    background: var(--primary);
    border-color: var(--primary);

    color: #fff;
}


.blog-share a {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    color: var(--primary);

    font-size: 12px;

    transition: var(--transition);
}


.blog-share a:hover {
    background: var(--gold);
    border-color: var(--gold);

    color: #fff;
}


/* =====================================================
   SIDEBAR
===================================================== */

.blog-sidebar {
    position: sticky;

    top: 115px;

    display: flex;
    flex-direction: column;

    gap: 22px;
}


.blog-sidebar-box {
    padding: 28px;

    background: #fff;

    border:
        1px solid var(--border);
}


/* =====================================================
   AUTHOR
===================================================== */

.blog-author-box {
    text-align: center;

    background: var(--cream);
}


.author-logo {
    width: 75px;
    height: 75px;

    display: grid;
    place-items: center;

    margin:
        0 auto 18px;

    background: var(--primary);

    color: var(--gold);

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    letter-spacing: 4px;
}


.blog-author-box h3 {
    margin-bottom: 4px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 20px;
}


.blog-author-box > span {
    display: block;

    margin-bottom: 15px;

    color: var(--gold-dark);

    font-size: 9px;

    letter-spacing: .8px;

    text-transform: uppercase;
}


.blog-author-box > p {
    margin-bottom: 18px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.75;
}


.sidebar-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}


/* =====================================================
   SIDEBAR TITLE
===================================================== */

.sidebar-title {
    position: relative;

    margin-bottom: 22px;

    padding-bottom: 13px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 19px;
}


.sidebar-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 1px;

    background: var(--gold);
}


/* =====================================================
   CATEGORIES
===================================================== */

.sidebar-categories {
    display: flex;
    flex-direction: column;
}


.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding:
        11px 0;

    border-bottom:
        1px solid #eeeae4;

    color: #5c6670;

    font-size: 12px;

    transition: var(--transition);
}


.sidebar-categories a:last-child {
    border-bottom: 0;
}


.sidebar-categories a:hover {
    color: var(--gold-dark);

    padding-left: 5px;
}


.sidebar-categories strong {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    background: var(--cream);

    color: var(--gold-dark);

    font-size: 9px;
}


/* =====================================================
   SIDEBAR POSTS
===================================================== */

.sidebar-posts {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


.sidebar-post {
    display: grid;

    grid-template-columns:
        78px 1fr;

    gap: 13px;

    align-items: center;
}


.sidebar-post img,
.sidebar-placeholder {
    width: 78px;
    height: 65px;

    object-fit: cover;
}


.sidebar-placeholder {
    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #6e655a
        );

    color:
        rgba(255,255,255,.7);

    font-size: 20px;
}


.sidebar-post span {
    display: block;

    margin-bottom: 5px;

    color: var(--gold-dark);

    font-size: 8px;
}


.sidebar-post h4 {
    color: var(--primary);

    font-family:
        "Playfair Display",
        serif;

    font-size: 13px;

    line-height: 1.35;

    transition: var(--transition);
}


.sidebar-post:hover h4 {
    color: var(--gold-dark);
}


/* =====================================================
   SIDEBAR CTA
===================================================== */

.blog-sidebar-cta {
    padding: 32px 28px;

    background: var(--primary);

    color: #fff;
}


.blog-sidebar-cta > span {
    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 1.7px;
}


.blog-sidebar-cta h3 {
    margin-bottom: 13px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;

    line-height: 1.3;
}


.blog-sidebar-cta p {
    margin-bottom: 22px;

    color: #aeb7c0;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   RELATED
===================================================== */

.related-posts {
    padding:
        100px 0;

    background: var(--cream);
}


.related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}


.related-post-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 23px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .blog-detail-layout {
        grid-template-columns:
            1fr 290px;

        gap: 40px;
    }


    .related-post-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 850px) {

    .blog-detail-layout {
        grid-template-columns: 1fr;
    }


    .blog-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }


    .blog-sidebar-cta {
        grid-column:
            1 / -1;
    }

}


@media (max-width: 650px) {

    .blog-detail-page {
        padding:
            70px 0 80px;
    }


    .blog-detail-header h1 {
        font-size: 36px;
    }


    .blog-detail-image {
        height: 280px;

        margin-bottom: 35px;
    }


    .blog-detail-content .blog-lead {
        font-size: 18px;
    }


    .blog-detail-content h2 {
        margin-top: 36px;

        font-size: 27px;
    }


    .blog-detail-content blockquote {
        padding:
            25px;

        font-size: 18px;
    }


    .blog-detail-footer {
        flex-direction: column;

        align-items: flex-start;
    }


    .blog-sidebar {
        grid-template-columns: 1fr;
    }


    .blog-sidebar-cta {
        grid-column: auto;
    }


    .related-posts {
        padding:
            75px 0;
    }


    .related-heading {
        flex-direction: column;

        align-items: flex-start;
    }


    .related-post-grid {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   DUYURULAR PAGE
===================================================== */


/* =====================================================
   INTRO
===================================================== */

.announcement-page-intro {
    padding:
        90px 0 45px;

    background: #fff;
}


/* =====================================================
   FEATURED ANNOUNCEMENT
===================================================== */

.featured-announcement {
    padding:
        0 0 80px;

    background: #fff;
}


.featured-announcement-card {
    position: relative;

    display: grid;

    grid-template-columns:
        165px 1fr 180px;

    align-items: center;

    min-height: 285px;

    background: var(--cream);

    border:
        1px solid var(--border);

    overflow: hidden;
}


/* DATE */

.featured-announcement-date {
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: #fff;
}


.featured-announcement-date > span {
    margin-bottom: 4px;

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;
}


.featured-announcement-date strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 68px;

    font-weight: 500;

    line-height: 1;
}


.featured-announcement-date small {
    margin-top: 7px;

    color:
        rgba(255,255,255,.55);

    font-size: 10px;

    letter-spacing: 2px;
}


/* CONTENT */

.featured-announcement-content {
    padding:
        42px 50px;
}


.announcement-badge {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.featured-announcement-content h2 {
    max-width: 650px;

    margin-bottom: 15px;

    font-size:
        clamp(29px, 3vw, 40px);
}


.featured-announcement-content > p {
    max-width: 680px;

    margin-bottom: 19px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.75;
}


.featured-announcement-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 24px;
}


.featured-announcement-meta span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--text-light);

    font-size: 10px;
}


.featured-announcement-meta i {
    color: var(--gold-dark);
}


/* ICON */

.featured-announcement-icon {
    display: grid;

    place-items: center;

    height: 100%;

    color:
        rgba(194,160,106,.18);

    font-size: 88px;
}


/* =====================================================
   FILTER
===================================================== */

.announcement-filter-section {
    padding:
        24px 0;

    background: var(--cream);

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}


.announcement-filters {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    flex-wrap: wrap;
}


.announcement-filter {
    min-height: 39px;

    padding:
        0 18px;

    border:
        1px solid var(--border);

    background: #fff;

    color: #646e78;

    font-size: 11px;
    font-weight: 600;

    transition: var(--transition);
}


.announcement-filter:hover,
.announcement-filter.active {
    background: var(--primary);

    border-color: var(--primary);

    color: #fff;
}


/* =====================================================
   LIST
===================================================== */

.announcement-page-list {
    padding:
        85px 0 105px;

    background: #fff;
}


.announcement-page-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


/* CARD */

.announcement-page-card {
    display: grid;

    grid-template-columns:
        105px 1fr;

    min-height: 230px;

    background: #fff;

    border:
        1px solid var(--border);

    transition: var(--transition);

    overflow: hidden;
}


.announcement-page-card:hover {
    transform:
        translateY(-5px);

    box-shadow: var(--shadow-hover);

    border-color:
        rgba(194,160,106,.45);
}


/* DATE */

.announcement-card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #f8f5f0;

    border-right:
        1px solid var(--border);
}


.announcement-card-date strong {
    font-family:
        "Playfair Display",
        serif;

    color: var(--primary);

    font-size: 40px;

    line-height: 1;
}


.announcement-card-date span {
    margin:
        6px 0 3px;

    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


.announcement-card-date small {
    color: #9aa1a7;

    font-size: 9px;

    letter-spacing: 1px;
}


/* CONTENT */

.announcement-card-content {
    padding:
        27px 28px;

    display: flex;
    flex-direction: column;
}


.announcement-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 12px;
}


.announcement-card-category {
    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.4px;
}


.announcement-status {
    padding:
        5px 8px;

    background:
        rgba(23,37,54,.06);

    color: #6f7982;

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;
}


.announcement-status.urgent {
    background:
        rgba(194,160,106,.14);

    color: var(--gold-dark);
}


.announcement-card-content h3 {
    margin-bottom: 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 21px;

    line-height: 1.35;
}


.announcement-card-content > p {
    margin-bottom: 18px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.7;
}


.announcement-card-content > a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: auto;

    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .8px;
}


.announcement-card-content > a i {
    transition: var(--transition);
}


.announcement-card-content > a:hover i {
    transform:
        translateX(5px);
}


/* =====================================================
   FILTER HIDDEN
===================================================== */

.announcement-page-card.announcement-hidden {
    display: none;
}


/* =====================================================
   PAGINATION
===================================================== */

.announcement-pagination {
    display: flex;
    justify-content: center;

    gap: 7px;

    margin-top: 50px;
}


.announcement-pagination a {
    width: 41px;
    height: 41px;

    display: grid;
    place-items: center;

    background: #fff;

    border:
        1px solid var(--border);

    color: var(--text-light);

    font-size: 11px;

    transition: var(--transition);
}


.announcement-pagination a:hover,
.announcement-pagination a.active {
    background: var(--primary);

    border-color: var(--primary);

    color: #fff;
}


.announcement-pagination a.disabled {
    opacity: .4;

    pointer-events: none;
}


/* =====================================================
   INFO STRIP
===================================================== */

.announcement-info-strip {
    padding:
        36px 0;

    background: var(--cream);

    border-top:
        1px solid var(--border);
}


.announcement-info-wrapper {
    display: flex;
    align-items: flex-start;

    gap: 18px;
}


.announcement-info-icon {
    min-width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--gold-light);

    color: var(--gold-dark);

    font-size: 18px;
}


.announcement-info-wrapper h3 {
    margin-bottom: 5px;

    font-size: 14px;
}


.announcement-info-wrapper p {
    max-width: 850px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .featured-announcement-card {
        grid-template-columns:
            140px 1fr;
    }


    .featured-announcement-icon {
        display: none;
    }


    .announcement-page-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .announcement-page-intro {
        padding:
            70px 0 35px;
    }


    .featured-announcement {
        padding-bottom: 60px;
    }


    .featured-announcement-card {
        grid-template-columns: 1fr;
    }


    .featured-announcement-date {
        min-height: 120px;

        flex-direction: row;

        gap: 11px;
    }


    .featured-announcement-date strong {
        font-size: 45px;
    }


    .featured-announcement-date > span,
    .featured-announcement-date small {
        margin: 0;
    }


    .featured-announcement-content {
        padding:
            30px 23px;
    }


    .featured-announcement-content h2 {
        font-size: 28px;
    }


    .announcement-page-list {
        padding:
            70px 0 80px;
    }


    .announcement-page-card {
        grid-template-columns:
            85px 1fr;
    }


    .announcement-card-content {
        padding:
            22px 20px;
    }


    .announcement-card-content h3 {
        font-size: 18px;
    }


    .announcement-info-wrapper {
        gap: 13px;
    }

}

/* =====================================================
   DUYURU DETAY PAGE
===================================================== */

.announcement-detail-page {
    padding: 90px 0 110px;
    background: #ffffff;
}


/* =====================================================
   LAYOUT
===================================================== */

.announcement-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 325px;

    gap: 65px;

    align-items: start;
}


/* =====================================================
   HEADER
===================================================== */

.announcement-detail-header {
    display: grid;

    grid-template-columns:
        135px 1fr;

    align-items: stretch;

    margin-bottom: 35px;

    border:
        1px solid var(--border);

    background: #fff;
}


/* DATE */

.announcement-detail-date {
    min-height: 205px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: #fff;
}


.announcement-detail-date span {
    margin-bottom: 5px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


.announcement-detail-date strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 58px;

    font-weight: 500;

    line-height: 1;
}


.announcement-detail-date small {
    margin-top: 8px;

    color:
        rgba(255,255,255,.55);

    font-size: 9px;

    letter-spacing: 2px;
}


/* HEADING */

.announcement-detail-heading {
    padding:
        32px 38px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.announcement-detail-top {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;
}


.announcement-detail-category {
    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.6px;
}


.announcement-detail-status {
    padding:
        5px 9px;

    background:
        rgba(194,160,106,.13);

    color: var(--gold-dark);

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
}


.announcement-detail-heading h1 {
    max-width: 700px;

    margin-bottom: 17px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(34px, 4vw, 48px);

    font-weight: 500;

    line-height: 1.15;

    color: var(--primary);
}


.announcement-detail-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;
}


.announcement-detail-meta span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--text-light);

    font-size: 10px;
}


.announcement-detail-meta i {
    color: var(--gold-dark);
}


/* =====================================================
   WARNING BOX
===================================================== */

.announcement-warning-box {
    display: flex;
    align-items: flex-start;

    gap: 20px;

    margin-bottom: 38px;

    padding:
        27px 30px;

    background:
        #f8f4ed;

    border:
        1px solid var(--gold-light);

    border-left:
        3px solid var(--gold);
}


.announcement-warning-icon {
    min-width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    background: #fff;

    border:
        1px solid var(--gold-light);

    color: var(--gold-dark);

    font-size: 18px;
}


.announcement-warning-box span {
    display: block;

    margin-bottom: 5px;

    color: var(--gold-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.announcement-warning-box h3 {
    margin-bottom: 7px;

    font-size: 15px;
}


.announcement-warning-box p {
    max-width: 680px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.75;
}


/* =====================================================
   CONTENT
===================================================== */

.announcement-detail-content {
    max-width: 850px;
}


.announcement-detail-content > p {
    margin-bottom: 20px;

    color: #606a73;

    font-size: 15px;

    line-height: 1.9;
}


.announcement-detail-content .announcement-lead {
    color: var(--primary);

    font-family:
        "Playfair Display",
        serif;

    font-size: 21px;

    line-height: 1.7;
}


.announcement-detail-content h2 {
    margin:
        42px 0 17px;

    color: var(--primary);

    font-family:
        "Playfair Display",
        serif;

    font-size: 30px;

    font-weight: 500;
}


/* =====================================================
   CHECK LIST
===================================================== */

.announcement-check-list {
    display: flex;
    flex-direction: column;

    gap: 11px;

    margin:
        27px 0 36px;
}


.announcement-check-list > div {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding:
        14px 16px;

    background:
        #faf9f7;

    border:
        1px solid var(--border);

    color: #59636c;

    font-size: 13px;

    line-height: 1.65;
}


.announcement-check-list i {
    min-width: 24px;
    height: 24px;

    margin-top: 1px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(194,160,106,.13);

    color: var(--gold-dark);

    font-size: 9px;
}


/* =====================================================
   INFO CARD
===================================================== */

.announcement-info-card {
    display: flex;

    gap: 18px;

    margin:
        40px 0;

    padding:
        27px;

    background: var(--primary);

    color: #fff;
}


.announcement-info-card-icon {
    min-width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(194,160,106,.45);

    color: var(--gold);

    font-size: 17px;
}


.announcement-info-card h3 {
    margin-bottom: 7px;

    color: #fff;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 14px;
}


.announcement-info-card p {
    color: #aeb7c0;

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   DETAIL FOOTER
===================================================== */

.announcement-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 50px;

    padding-top: 28px;

    border-top:
        1px solid var(--border);
}


.announcement-back {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;
}


.announcement-back i {
    transition: var(--transition);
}


.announcement-back:hover i {
    transform:
        translateX(-4px);
}


.announcement-share {
    display: flex;
    align-items: center;

    gap: 8px;
}


.announcement-share > span {
    margin-right: 3px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 700;
}


.announcement-share a {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    color: var(--primary);

    font-size: 12px;

    transition: var(--transition);
}


.announcement-share a:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: #fff;
}


/* =====================================================
   SIDEBAR
===================================================== */

.announcement-sidebar {
    position: sticky;

    top: 115px;

    display: flex;
    flex-direction: column;

    gap: 22px;
}


.announcement-sidebar-box {
    padding: 27px;

    background: #fff;

    border:
        1px solid var(--border);
}


.announcement-sidebar-title {
    position: relative;

    margin-bottom: 21px;

    padding-bottom: 12px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 19px;
}


.announcement-sidebar-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 1px;

    background: var(--gold);
}


/* =====================================================
   SIDEBAR INFO
===================================================== */

.announcement-sidebar-info {
    display: flex;
    flex-direction: column;

    gap: 15px;
}


.announcement-sidebar-info > div {
    display: flex;
    align-items: center;

    gap: 12px;
}


.announcement-sidebar-info > div > span {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    background: var(--cream);

    color: var(--gold-dark);

    font-size: 13px;
}


.announcement-sidebar-info > div > div {
    display: flex;
    flex-direction: column;
}


.announcement-sidebar-info small {
    color: #9aa1a7;

    font-size: 8px;
}


.announcement-sidebar-info strong {
    margin-top: 2px;

    color: var(--primary);

    font-size: 11px;
}


/* =====================================================
   SIDEBAR CATEGORIES
===================================================== */

.announcement-sidebar-categories {
    display: flex;
    flex-direction: column;
}


.announcement-sidebar-categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding:
        11px 0;

    border-bottom:
        1px solid #eeeae4;

    color: var(--text-light);

    font-size: 12px;

    transition: var(--transition);
}


.announcement-sidebar-categories a:last-child {
    border-bottom: 0;
}


.announcement-sidebar-categories a:hover {
    padding-left: 5px;

    color: var(--gold-dark);
}


.announcement-sidebar-categories strong {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    background: var(--cream);

    color: var(--gold-dark);

    font-size: 9px;
}


/* =====================================================
   SIDEBAR POSTS
===================================================== */

.announcement-sidebar-posts {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


.announcement-sidebar-post {
    display: grid;

    grid-template-columns:
        57px 1fr;

    align-items: center;

    gap: 13px;
}


.sidebar-announcement-date {
    width: 57px;
    height: 60px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--cream);

    border:
        1px solid var(--border);
}


.sidebar-announcement-date strong {
    font-family:
        "Playfair Display",
        serif;

    color: var(--primary);

    font-size: 23px;

    line-height: 1;
}


.sidebar-announcement-date span {
    margin-top: 3px;

    color: var(--gold-dark);

    font-size: 8px;

    letter-spacing: 1px;
}


.announcement-sidebar-post > div:last-child > span {
    display: block;

    margin-bottom: 4px;

    color: var(--gold-dark);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1px;
}


.announcement-sidebar-post h4 {
    font-family:
        "Playfair Display",
        serif;

    font-size: 13px;

    line-height: 1.35;

    transition: var(--transition);
}


.announcement-sidebar-post:hover h4 {
    color: var(--gold-dark);
}


/* =====================================================
   SIDEBAR CTA
===================================================== */

.announcement-sidebar-cta {
    padding:
        32px 27px;

    background: var(--primary);

    color: #fff;
}


.announcement-sidebar-cta > span {
    display: block;

    margin-bottom: 9px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.7px;
}


.announcement-sidebar-cta h3 {
    margin-bottom: 13px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;

    line-height: 1.3;
}


.announcement-sidebar-cta p {
    margin-bottom: 22px;

    color: #aeb7c0;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   OTHER ANNOUNCEMENTS
===================================================== */

.other-announcements {
    padding:
        100px 0;

    background: var(--cream);
}


.announcement-related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}


.other-announcement-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.other-announcement-card {
    display: grid;

    grid-template-columns:
        78px 1fr;

    gap: 20px;

    padding:
        27px;

    background: #fff;

    border:
        1px solid var(--border);

    transition: var(--transition);
}


.other-announcement-card:hover {
    transform:
        translateY(-5px);

    box-shadow: var(--shadow);

    border-color:
        rgba(194,160,106,.45);
}


.other-announcement-date {
    width: 70px;
    height: 78px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: #fff;
}


.other-announcement-date strong {
    font-family:
        "Playfair Display",
        serif;

    color: var(--gold);

    font-size: 30px;

    line-height: 1;
}


.other-announcement-date span {
    margin-top: 5px;

    color:
        rgba(255,255,255,.6);

    font-size: 8px;

    letter-spacing: 1.5px;
}


.other-announcement-category {
    display: block;

    margin-bottom: 7px;

    color: var(--gold-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.4px;
}


.other-announcement-card h3 {
    margin-bottom: 8px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 18px;

    line-height: 1.35;
}


.other-announcement-card p {
    margin-bottom: 14px;

    color: var(--text-light);

    font-size: 11px;

    line-height: 1.65;
}


.other-announcement-card a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .announcement-detail-layout {
        grid-template-columns:
            1fr 285px;

        gap: 40px;
    }


    .other-announcement-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 850px) {

    .announcement-detail-layout {
        grid-template-columns: 1fr;
    }


    .announcement-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }


    .announcement-sidebar-cta {
        grid-column:
            1 / -1;
    }

}


@media (max-width: 650px) {

    .announcement-detail-page {
        padding:
            70px 0 80px;
    }


    .announcement-detail-header {
        grid-template-columns: 1fr;
    }


    .announcement-detail-date {
        min-height: 105px;

        flex-direction: row;

        gap: 11px;
    }


    .announcement-detail-date strong {
        font-size: 43px;
    }


    .announcement-detail-date span,
    .announcement-detail-date small {
        margin: 0;
    }


    .announcement-detail-heading {
        padding:
            27px 22px;
    }


    .announcement-detail-heading h1 {
        font-size: 34px;
    }


    .announcement-warning-box {
        padding:
            22px;

        gap: 14px;
    }


    .announcement-detail-content .announcement-lead {
        font-size: 18px;
    }


    .announcement-detail-content h2 {
        font-size: 26px;
    }


    .announcement-detail-footer {
        flex-direction: column;

        align-items: flex-start;
    }


    .announcement-sidebar {
        grid-template-columns: 1fr;
    }


    .announcement-sidebar-cta {
        grid-column: auto;
    }


    .other-announcements {
        padding:
            75px 0;
    }


    .announcement-related-heading {
        flex-direction: column;

        align-items: flex-start;
    }


    .other-announcement-grid {
        grid-template-columns: 1fr;
    }


    .other-announcement-card {
        grid-template-columns:
            68px 1fr;

        padding:
            22px;
    }


    .other-announcement-date {
        width: 62px;
        height: 70px;
    }

}

/* =====================================================
   CONTACT PAGE
===================================================== */


/* =====================================================
   INTRO
===================================================== */

.contact-page-intro {
    padding: 90px 0 55px;

    background: #ffffff;
}


.contact-page-heading {
    display: grid;

    grid-template-columns:
        1fr .75fr;

    align-items: end;

    gap: 80px;
}


.contact-page-heading h2 {
    max-width: 680px;
}


.contact-page-heading h2 span {
    display: block;
}


.contact-page-heading > p {
    max-width: 520px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   INFO CARDS
===================================================== */

.contact-info-section {
    padding: 0 0 85px;

    background: #fff;
}


.contact-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.contact-info-card {
    position: relative;

    min-height: 190px;

    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 30px;

    border:
        1px solid var(--border);

    background: var(--cream);

    transition: var(--transition);
}


a.contact-info-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(194,160,106,.45);

    box-shadow: var(--shadow);
}


.contact-info-card-icon {
    min-width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    background: #ffffff;

    border:
        1px solid var(--gold-light);

    color: var(--gold-dark);

    font-size: 18px;
}


.contact-info-card span {
    display: block;

    margin-bottom: 6px;

    color: var(--gold-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.7px;
}


.contact-info-card h3 {
    margin-bottom: 8px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 18px;

    line-height: 1.3;
}


.contact-info-card p {
    color: var(--text-light);

    font-size: 11px;

    line-height: 1.7;
}


.contact-info-arrow {
    position: absolute;

    right: 22px;
    bottom: 22px;

    color: var(--gold-dark);

    font-size: 12px;

    transition: var(--transition);
}


.contact-info-card:hover .contact-info-arrow {
    transform: translateX(4px);
}


/* =====================================================
   MAIN CONTACT
===================================================== */

.contact-page-main {
    padding: 100px 0;

    background: var(--cream);
}


.contact-page-grid {
    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 85px;

    align-items: start;
}


/* =====================================================
   LEFT
===================================================== */

.contact-page-left {
    padding-top: 20px;
}


.contact-page-left h2 {
    margin-bottom: 22px;
}


.contact-page-left h2 span {
    display: block;
}


.contact-page-left > p {
    max-width: 520px;

    margin-bottom: 38px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;
}


/* OFFICE ITEMS */

.contact-office-details {
    display: flex;
    flex-direction: column;

    gap: 17px;
}


.contact-office-item {
    display: flex;
    align-items: center;

    gap: 16px;

    padding:
        18px 0;

    border-bottom:
        1px solid var(--border);
}


.contact-office-item:last-child {
    border-bottom: 0;
}


.contact-office-icon {
    min-width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--gold-light);

    background: #fff;

    color: var(--gold-dark);

    font-size: 16px;
}


.contact-office-item > div:last-child {
    display: flex;
    flex-direction: column;
}


.contact-office-item small {
    margin-bottom: 2px;

    color: var(--gold-dark);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.contact-office-item strong {
    color: var(--primary);

    font-size: 13px;
}


.contact-office-item span {
    margin-top: 2px;

    color: var(--text-light);

    font-size: 11px;
}


/* =====================================================
   FORM
===================================================== */

.contact-page-form {
    padding: 45px;

    background: #fff;

    border:
        1px solid var(--border);

    box-shadow: var(--shadow);
}


.contact-page-form-header {
    margin-bottom: 30px;
}


.contact-page-form-header > span {
    display: block;

    margin-bottom: 6px;

    color: var(--gold-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.contact-page-form-header h3 {
    margin-bottom: 7px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 29px;
}


.contact-page-form-header p {
    color: var(--text-light);

    font-size: 12px;
}


/* ROW */

.contact-form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


/* GROUP */

.contact-form-group {
    margin-bottom: 17px;
}


.contact-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #4f5963;

    font-size: 10px;
    font-weight: 700;
}


.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;

    border:
        1px solid var(--border);

    outline: none;

    background: #faf9f7;

    color: var(--primary);

    font-family: inherit;

    font-size: 12px;

    transition: var(--transition);
}


.contact-form-group input,
.contact-form-group select {
    height: 50px;

    padding:
        0 14px;
}


.contact-form-group textarea {
    min-height: 140px;

    padding: 14px;

    resize: vertical;

    line-height: 1.6;
}


.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--gold);

    background: #fff;

    box-shadow:
        0 0 0 3px
        rgba(194,160,106,.08);
}


/* CONSENT */

.contact-form-consent {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin:
        2px 0 22px;

    color: var(--text-light);

    font-size: 10px;

    line-height: 1.6;
}


.contact-form-consent input {
    margin-top: 3px;
}


/* BUTTON */

.contact-submit-button {
    width: 100%;

    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    border: 0;

    background: var(--primary);

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .5px;

    transition: var(--transition);
}


.contact-submit-button:hover {
    background: var(--gold);
}


.contact-submit-button i {
    transition: var(--transition);
}


.contact-submit-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   LOCATION
===================================================== */

.contact-location {
    background: var(--primary);

    color: #fff;
}


.contact-location-grid {
    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    min-height: 520px;
}


/* MAP */

.contact-map {
    min-height: 520px;

    margin-left:
        calc((100vw - min(1180px, calc(100vw - 40px))) / -2);

    overflow: hidden;
}


.contact-map iframe {
    width: 100%;
    height: 100%;

    min-height: 520px;

    border: 0;

    display: block;

    filter:
        grayscale(35%)
        contrast(.93);
}


/* LOCATION CONTENT */

.contact-location-content {
    padding:
        75px 0 75px 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.contact-location-content h2 {
    margin-bottom: 20px;

    color: #fff;
}


.contact-location-content h2 span {
    display: block;
}


.contact-location-content > p {
    max-width: 480px;

    margin-bottom: 30px;

    color: #aeb7c0;

    font-size: 13px;

    line-height: 1.8;
}


/* DETAILS */

.location-details {
    display: flex;
    flex-direction: column;

    margin-bottom: 30px;
}


.location-details > div {
    display: flex;
    align-items: center;

    gap: 14px;

    padding:
        14px 0;

    border-bottom:
        1px solid rgba(255,255,255,.09);
}


.location-details > div > i {
    width: 35px;

    color: var(--gold);

    font-size: 15px;
}


.location-details > div > div {
    display: flex;
    flex-direction: column;
}


.location-details small {
    color: #71808d;

    font-size: 7px;

    letter-spacing: 1.4px;
}


.location-details strong {
    margin-top: 2px;

    color: #fff;

    font-size: 12px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .contact-page-heading {
        grid-template-columns:
            1fr 1fr;

        gap: 50px;
    }


    .contact-page-grid {
        gap: 55px;
    }


    .contact-location-content {
        padding-left: 45px;
    }

}


@media (max-width: 900px) {

    .contact-page-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .contact-info-grid {
        grid-template-columns: 1fr;
    }


    .contact-info-card {
        min-height: auto;
    }


    .contact-page-grid {
        grid-template-columns: 1fr;
    }


    .contact-page-left {
        padding-top: 0;
    }


    .contact-location-grid {
        grid-template-columns: 1fr;
    }


    .contact-map {
        min-height: 400px;

        margin: 0;
    }


    .contact-map iframe {
        min-height: 400px;
    }


    .contact-location-content {
        padding:
            65px 0;
    }

}


@media (max-width: 650px) {

    .contact-page-intro {
        padding:
            70px 0 40px;
    }


    .contact-info-section {
        padding-bottom: 65px;
    }


    .contact-info-card {
        padding:
            25px 22px;
    }


    .contact-page-main {
        padding:
            70px 0;
    }


    .contact-page-form {
        padding:
            30px 22px;
    }


    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-map,
    .contact-map iframe {
        min-height: 330px;
    }


    .contact-location-content {
        padding:
            55px 0;
    }


    .contact-location-content h2 {
        font-size: 34px;
    }

}

/* =====================================================
   TEKLİF AL PAGE
===================================================== */


/* =====================================================
   INTRO
===================================================== */

.quote-page-intro {
    padding: 85px 0 55px;
    background: #ffffff;
}


.quote-intro-grid {
    display: grid;

    grid-template-columns:
        1fr .75fr;

    align-items: end;

    gap: 80px;
}


.quote-intro-grid h2 {
    max-width: 700px;
}


.quote-intro-grid h2 span {
    display: block;
}


.quote-intro-grid > p {
    max-width: 520px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   MAIN
===================================================== */

.quote-page-main {
    padding: 0 0 110px;

    background: #ffffff;
}


.quote-page-grid {
    display: grid;

    grid-template-columns:
        .72fr 1.28fr;

    align-items: start;

    gap: 35px;
}


/* =====================================================
   LEFT INFO
===================================================== */

.quote-page-info {
    position: sticky;

    top: 115px;

    background: var(--primary);

    color: #ffffff;
}


.quote-info-inner {
    padding: 48px 42px;
}


.quote-small-title {
    display: block;

    margin-bottom: 13px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.quote-page-info h2 {
    margin-bottom: 21px;

    color: #ffffff;

    font-size:
        clamp(32px, 3vw, 43px);
}


.quote-page-info h2 span {
    display: block;
}


.quote-page-info > *,
.quote-info-inner > p {
    color: #abb6c0;
}


.quote-info-inner > p {
    margin-bottom: 15px;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   BENEFITS
===================================================== */

.quote-benefits {
    display: flex;
    flex-direction: column;

    gap: 6px;

    margin-top: 34px;
}


.quote-benefit {
    display: flex;

    gap: 15px;

    padding:
        18px 0;

    border-bottom:
        1px solid rgba(255,255,255,.09);
}


.quote-benefit:last-child {
    border-bottom: 0;
}


.quote-benefit-icon {
    min-width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(194,160,106,.42);

    color: var(--gold);

    font-size: 16px;
}


.quote-benefit h3 {
    margin-bottom: 4px;

    color: #ffffff;

    font-size: 13px;
}


.quote-benefit p {
    color: #909da8;

    font-size: 11px;

    line-height: 1.65;
}


/* =====================================================
   DIRECT CONTACT
===================================================== */

.quote-direct-contact {
    margin-top: 35px;

    padding:
        26px;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid rgba(255,255,255,.09);
}


.quote-direct-contact > span {
    display: block;

    margin-bottom: 6px;

    color: var(--gold);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.quote-direct-contact h3 {
    margin-bottom: 14px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        serif;

    font-size: 20px;
}


.quote-direct-contact a {
    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        7px 0;

    color: #adb8c1;

    font-size: 11px;

    transition: var(--transition);
}


.quote-direct-contact a:hover {
    color: var(--gold);
}


.quote-direct-contact i {
    width: 17px;

    color: var(--gold);
}


/* =====================================================
   FORM
===================================================== */

.quote-form {
    padding:
        45px;

    background: var(--cream);

    border:
        1px solid var(--border);

    box-shadow: var(--shadow);
}


/* HEADER */

.quote-form-header {
    padding-bottom: 28px;

    margin-bottom: 30px;

    border-bottom:
        1px solid var(--border);
}


.quote-form-header > span {
    display: block;

    margin-bottom: 7px;

    color: var(--gold-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.quote-form-header h2 {
    margin-bottom: 8px;

    font-size: 34px;
}


.quote-form-header p {
    color: var(--text-light);

    font-size: 12px;
}


/* =====================================================
   FORM SECTION
===================================================== */

.quote-form-section {
    padding-bottom: 30px;

    margin-bottom: 30px;

    border-bottom:
        1px solid var(--border);
}


.quote-form-section-title {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 23px;
}


.quote-form-section-title > span {
    min-width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    background: var(--primary);

    color: var(--gold);

    font-family:
        "Playfair Display",
        serif;

    font-size: 13px;
}


.quote-form-section-title h3 {
    margin-bottom: 3px;

    font-size: 14px;
}


.quote-form-section-title p {
    color: var(--text-light);

    font-size: 10px;
}


/* =====================================================
   ROW
===================================================== */

.quote-form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


/* =====================================================
   FORM GROUP
===================================================== */

.quote-form-group {
    margin-bottom: 17px;
}


.quote-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #505a64;

    font-size: 10px;
    font-weight: 700;
}


.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
    width: 100%;

    border:
        1px solid var(--border);

    outline: none;

    background: #ffffff;

    color: var(--primary);

    font-family: inherit;

    font-size: 12px;

    transition: var(--transition);
}


.quote-form-group input,
.quote-form-group select {
    height: 50px;

    padding:
        0 14px;
}


.quote-form-group textarea {
    min-height: 135px;

    padding: 14px;

    resize: vertical;

    line-height: 1.6;
}


.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(194,160,106,.08);
}


/* =====================================================
   SERVICES
===================================================== */

.quote-service-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 11px;
}


.quote-service-option {
    position: relative;

    min-height: 85px;

    display: grid;

    grid-template-columns:
        42px 1fr;

    align-items: center;

    gap: 13px;

    padding:
        15px;

    background: #ffffff;

    border:
        1px solid var(--border);

    cursor: pointer;

    transition: var(--transition);
}


.quote-service-option:hover {
    border-color:
        rgba(194,160,106,.65);

    box-shadow:
        0 5px 20px
        rgba(20,29,38,.05);
}


.quote-service-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.quote-service-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: var(--gold-dark);

    background: var(--cream);

    border:
        1px solid var(--border);

    transition: var(--transition);
}


.quote-service-text {
    display: flex;
    flex-direction: column;
}


.quote-service-text strong {
    margin-bottom: 3px;

    color: var(--primary);

    font-size: 11px;
}


.quote-service-text small {
    color: var(--text-light);

    font-size: 9px;
}


/* CHECK */

.quote-service-check {
    position: absolute;

    right: 10px;
    top: 10px;

    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #ffffff;

    border:
        1px solid var(--border);

    color: transparent;

    font-size: 8px;

    transition: var(--transition);
}


.quote-service-option input:checked
    ~ .quote-service-check {

    background: var(--gold);

    border-color: var(--gold);

    color: #ffffff;
}


.quote-service-option:has(input:checked) {
    border-color: var(--gold);

    background: #fffdf9;
}


.quote-service-option:has(input:checked)
    .quote-service-icon {

    background: var(--primary);

    border-color: var(--primary);

    color: var(--gold);
}


/* =====================================================
   CONSENT
===================================================== */

.quote-consent {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    margin-bottom: 22px;

    color: var(--text-light);

    font-size: 10px;

    line-height: 1.6;
}


.quote-consent input {
    margin-top: 3px;
}


/* =====================================================
   SUBMIT
===================================================== */

.quote-submit-button {
    width: 100%;

    min-height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    border: 0;

    background: var(--primary);

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .5px;

    transition: var(--transition);
}


.quote-submit-button:hover {
    background: var(--gold);
}


.quote-submit-button i {
    transition: var(--transition);
}


.quote-submit-button:hover i {
    transform:
        translateX(4px);
}


/* =====================================================
   FORM MESSAGE
===================================================== */

.quote-form-message {
    display: none;

    margin-top: 17px;

    padding: 13px 15px;

    font-size: 11px;
}


.quote-form-message.success {
    display: block;

    background:
        rgba(48,145,85,.08);

    border:
        1px solid
        rgba(48,145,85,.2);

    color: #267441;
}


.quote-form-message.error {
    display: block;

    background:
        rgba(177,63,63,.07);

    border:
        1px solid
        rgba(177,63,63,.2);

    color: #9c3333;
}


/* =====================================================
   NOTE
===================================================== */

.quote-form-note {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-top: 17px;

    padding-top: 17px;

    border-top:
        1px solid var(--border);

    color: #858e96;

    font-size: 9px;

    line-height: 1.6;
}


.quote-form-note i {
    margin-top: 2px;

    color: var(--gold-dark);
}


/* =====================================================
   PROCESS
===================================================== */

.quote-process {
    padding:
        105px 0;

    background: var(--cream);
}


.quote-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.quote-process-item {
    position: relative;

    min-height: 245px;

    padding: 30px;

    background: #ffffff;

    border:
        1px solid var(--border);

    transition: var(--transition);
}


.quote-process-item:hover {
    transform:
        translateY(-5px);

    box-shadow: var(--shadow);

    border-color:
        rgba(194,160,106,.45);
}


.quote-process-item > span {
    position: absolute;

    right: 20px;
    top: 17px;

    color:
        rgba(194,160,106,.15);

    font-family:
        "Playfair Display",
        serif;

    font-size: 43px;
}


.quote-process-icon {
    width: 53px;
    height: 53px;

    display: grid;
    place-items: center;

    margin-bottom: 23px;

    border:
        1px solid var(--gold-light);

    color: var(--gold-dark);

    font-size: 18px;
}


.quote-process-item h3 {
    margin-bottom: 9px;

    font-size: 14px;
}


.quote-process-item p {
    color: var(--text-light);

    font-size: 11px;

    line-height: 1.75;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .quote-intro-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 50px;
    }


    .quote-page-grid {
        grid-template-columns:
            .8fr 1.2fr;

        gap: 25px;
    }


    .quote-info-inner {
        padding:
            40px 30px;
    }


    .quote-form {
        padding:
            38px 32px;
    }


    .quote-process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .quote-intro-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .quote-page-grid {
        grid-template-columns: 1fr;
    }


    .quote-page-info {
        position: static;
    }


    .quote-benefits {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap:
            0 25px;
    }

}


@media (max-width: 650px) {

    .quote-page-intro {
        padding:
            70px 0 45px;
    }


    .quote-page-main {
        padding-bottom: 75px;
    }


    .quote-info-inner {
        padding:
            35px 24px;
    }


    .quote-benefits {
        grid-template-columns: 1fr;
    }


    .quote-form {
        padding:
            30px 21px;
    }


    .quote-form-header h2 {
        font-size: 29px;
    }


    .quote-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .quote-service-grid {
        grid-template-columns: 1fr;
    }


    .quote-process {
        padding:
            75px 0;
    }


    .quote-process-grid {
        grid-template-columns: 1fr;
    }


    .quote-process-item {
        min-height: auto;
    }

}

/* =====================================================
   DYNAMIC SERVICE DETAIL
===================================================== */

.dynamic-service-detail {
    padding: 95px 0 110px;
    background: #ffffff;
}


/* =====================================================
   LAYOUT
===================================================== */

.dynamic-service-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 320px;

    gap: 65px;

    align-items: start;
}


/* =====================================================
   MAIN
===================================================== */

.dynamic-service-main {
    min-width: 0;
}


/* =====================================================
   HEADING
===================================================== */

.dynamic-service-heading {
    margin-bottom: 35px;
}


.dynamic-service-title-row {
    display: flex;
    align-items: flex-start;

    gap: 22px;
}


.dynamic-service-big-icon {
    min-width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    background: var(--cream);

    border: 1px solid var(--gold-light);

    color: var(--gold-dark);

    font-size: 26px;
}


.dynamic-service-title-row h2 {
    margin: 0 0 13px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(34px, 4vw, 48px);

    line-height: 1.2;

    color: var(--primary);
}


.dynamic-service-title-row p {
    max-width: 700px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   IMAGE
===================================================== */

.dynamic-service-image {
    width: 100%;

    height: 430px;

    margin-bottom: 40px;

    overflow: hidden;
}


.dynamic-service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =====================================================
   CONTENT
===================================================== */

.dynamic-service-content {
    color: #5f6871;

    font-size: 15px;

    line-height: 1.9;
}


.dynamic-service-content p {
    margin-bottom: 20px;
}


.dynamic-service-content h2 {
    margin:
        42px 0 17px;

    font-family:
        "Playfair Display",
        serif;

    color: var(--primary);

    font-size: 30px;

    line-height: 1.3;
}


.dynamic-service-content h3 {
    margin:
        32px 0 13px;

    color: var(--primary);

    font-size: 19px;
}


.dynamic-service-content ul,
.dynamic-service-content ol {
    margin:
        20px 0 25px;

    padding-left: 22px;
}


.dynamic-service-content li {
    margin-bottom: 8px;
}


.dynamic-service-content strong {
    color: var(--primary);
}


.dynamic-service-content blockquote {
    margin:
        35px 0;

    padding:
        28px 32px;

    background: var(--cream);

    border-left:
        3px solid var(--gold);

    font-family:
        "Playfair Display",
        serif;

    color: var(--primary);

    font-size: 20px;

    line-height: 1.7;
}


/* =====================================================
   CONTACT BOX
===================================================== */

.dynamic-service-contact-box {
    display: grid;

    grid-template-columns:
        55px 1fr auto;

    align-items: center;

    gap: 20px;

    margin-top: 50px;

    padding: 28px 30px;

    background: var(--primary);

    color: #ffffff;
}


.dynamic-service-contact-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(194,160,106,.45);

    color: var(--gold);

    font-size: 20px;
}


.dynamic-service-contact-box span {
    display: block;

    margin-bottom: 4px;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 1.6px;

    font-weight: 700;
}


.dynamic-service-contact-box h3 {
    margin-bottom: 5px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 20px;
}


.dynamic-service-contact-box p {
    max-width: 520px;

    color: #9ca8b3;

    font-size: 11px;

    line-height: 1.65;
}


/* =====================================================
   SIDEBAR
===================================================== */

.dynamic-service-sidebar {
    position: sticky;

    top: 115px;

    display: flex;
    flex-direction: column;

    gap: 22px;
}


.dynamic-service-sidebar-box {
    padding: 27px;

    background: #ffffff;

    border:
        1px solid var(--border);
}


.dynamic-service-sidebar-title {
    position: relative;

    margin-bottom: 20px;

    padding-bottom: 12px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 19px;
}


.dynamic-service-sidebar-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 1px;

    background: var(--gold);
}


/* =====================================================
   SIDEBAR SERVICES
===================================================== */

.dynamic-service-menu {
    display: flex;
    flex-direction: column;
}


.dynamic-service-menu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding:
        13px 0;

    border-bottom:
        1px solid #eeeae4;

    color: #5e6871;

    font-size: 11px;

    transition: var(--transition);
}


.dynamic-service-menu > a:last-child {
    border-bottom: 0;
}


.dynamic-service-menu > a > span {
    display: flex;
    align-items: center;

    gap: 10px;
}


.dynamic-service-menu > a > span > i {
    width: 20px;

    color: var(--gold-dark);

    text-align: center;
}


.dynamic-service-menu > a > i {
    color: #b1b7bc;

    font-size: 8px;
}


.dynamic-service-menu > a:hover,
.dynamic-service-menu > a.active {
    color: var(--gold-dark);

    padding-left: 5px;
}


.dynamic-service-menu > a.active {
    font-weight: 700;
}


/* =====================================================
   SIDEBAR CTA
===================================================== */

.dynamic-service-sidebar-cta {
    padding: 32px 27px;

    background: var(--primary);

    color: #ffffff;
}


.dynamic-service-sidebar-cta > span {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 1.7px;
}


.dynamic-service-sidebar-cta h3 {
    margin-bottom: 13px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;

    line-height: 1.3;
}


.dynamic-service-sidebar-cta p {
    margin-bottom: 22px;

    color: #9ca8b3;

    font-size: 11px;

    line-height: 1.7;
}


/* =====================================================
   CONTACT LIST
===================================================== */

.dynamic-service-contact-list {
    display: flex;
    flex-direction: column;

    gap: 14px;
}


.dynamic-service-contact-list > a {
    display: flex;
    align-items: center;

    gap: 12px;
}


.dynamic-service-contact-list > a > span {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: var(--cream);

    border:
        1px solid var(--border);

    color: var(--gold-dark);
}


.dynamic-service-contact-list > a > div {
    display: flex;
    flex-direction: column;
}


.dynamic-service-contact-list small {
    color: #9ba2a8;

    font-size: 7px;
}


.dynamic-service-contact-list strong {
    margin-top: 2px;

    color: var(--primary);

    font-size: 10px;
}


/* =====================================================
   OTHER SERVICES
===================================================== */

.dynamic-other-services {
    padding:
        100px 0;

    background: var(--cream);
}


.dynamic-other-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}


.dynamic-other-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.dynamic-other-service-card {
    position: relative;

    min-height: 210px;

    padding: 28px;

    background: #ffffff;

    border:
        1px solid var(--border);

    transition: var(--transition);
}


.dynamic-other-service-card:hover {
    transform:
        translateY(-5px);

    box-shadow: var(--shadow);

    border-color:
        rgba(194,160,106,.45);
}


.dynamic-other-service-icon {
    width: 53px;
    height: 53px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    background: var(--cream);

    border:
        1px solid var(--gold-light);

    color: var(--gold-dark);

    font-size: 19px;
}


.dynamic-other-service-card h3 {
    margin-bottom: 18px;

    font-family:
        "Playfair Display",
        serif;

    color: var(--primary);

    font-size: 19px;

    line-height: 1.35;
}


.dynamic-other-service-card > span {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.dynamic-other-service-card > span i {
    transition: var(--transition);
}


.dynamic-other-service-card:hover > span i {
    transform:
        translateX(4px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 1050px) {

    .dynamic-service-layout {
        grid-template-columns:
            minmax(0,1fr) 280px;

        gap: 40px;
    }


    .dynamic-service-contact-box {
        grid-template-columns:
            55px 1fr;
    }


    .dynamic-service-contact-box .button {
        grid-column:
            1 / -1;

        justify-self: start;
    }


    .dynamic-other-services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media(max-width: 850px) {

    .dynamic-service-layout {
        grid-template-columns: 1fr;
    }


    .dynamic-service-sidebar {
        position: static;
    }

}


@media(max-width: 650px) {

    .dynamic-service-detail {
        padding:
            70px 0 80px;
    }


    .dynamic-service-title-row {
        flex-direction: column;
    }


    .dynamic-service-title-row h2 {
        font-size: 34px;
    }


    .dynamic-service-image {
        height: 280px;
    }


    .dynamic-service-content h2 {
        font-size: 26px;
    }


    .dynamic-service-contact-box {
        grid-template-columns: 1fr;

        padding: 25px 22px;
    }


    .dynamic-service-contact-box .button {
        grid-column: auto;
    }


    .dynamic-other-services {
        padding:
            75px 0;
    }


    .dynamic-other-heading {
        flex-direction: column;

        align-items: flex-start;
    }


    .dynamic-other-services-grid {
        grid-template-columns: 1fr;
    }

}
.footer-bottom p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-designer {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;

    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-designer a {
    color: #c2a06a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-designer a:hover {
    color: #ffffff;
}