@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=EB+Garamond:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400&display=swap');
/* =========================================================
   ANANTA INFRA - GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f4ef;
    color: #171717;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    background: transparent;
}

.header-container {
    width: min(94%, 1440px);
    min-height: 105px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo img {
    width: 150px;
    height: auto;
    display: block;
}

.logo-mark {
    width: 42px;
    height: 52px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    gap: 3px;
}

.logo-mark span {
    display: block;
    width: 10px;

    border: 2px solid #b7834b;
    border-bottom: none;
}

.logo-mark span:nth-child(1) {
    height: 32px;
}

.logo-mark span:nth-child(2) {
    height: 48px;
}

.logo-mark span:nth-child(3) {
    height: 38px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 5px;
}

.logo-text strong {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 3px;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-left: auto;
}

.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 10px 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    color: #181818;
    text-decoration: none;

    transition: color 0.25s ease;
}

.nav-link:hover {
    color: #b7834b;
}


/* =========================================================
   ACTIVE PAGE
========================================================= */

.nav-link.active {
    color: #b7834b;
}

.nav-link.active::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -4px;

    width: 100%;
    height: 2px;

    background: #b7834b;
}


/* =========================================================
   NAVIGATION DROPDOWN WRAPPER
========================================================= */

.nav-dropdown {
    position: relative;
}


/* =========================================================
   DROPDOWN ARROWS
========================================================= */

.dropdown-arrow {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1;

    transform: translateY(-3px);

    transition: transform 0.25s ease;
}


/* =========================================================
   FIRST LEVEL DROPDOWN
========================================================= */

.dropdown-menu {
    position: absolute;

    top: calc(100% + 8px);
    left: 50%;

    transform: translateX(-50%) translateY(8px);

    width: 170px;

    padding: 6px 0;

    background: #f8f5f0;

    border: 1px solid #e2d8ca;

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;

    z-index: 1000;
}


/* Show First Level Dropdown */

.nav-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.dropdown-item {
    position: relative;
    width: 100%;
}

.dropdown-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 13px 18px;

    box-sizing: border-box;

    color: #181818;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    text-decoration: none;

    transition:
        color 0.22s ease,
        background 0.22s ease;
}

.dropdown-item > a:hover {
    color: #b7834b;
    background: rgba(184, 132, 75, 0.06);
}


/* =========================================================
   SUBMENU ARROW
========================================================= */

.submenu-arrow {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    line-height: 1;

    color: #b7834b;

    transition: transform 0.22s ease;
}

.dropdown-item:hover > a .submenu-arrow {
    transform: translateX(3px);
}


/* =========================================================
   SECOND LEVEL SUBMENU
========================================================= */

.submenu {
    position: absolute;

    top: 0;
    left: calc(100% + 1px);

    width: 215px;

    padding: 6px 0;

    background: #f8f5f0;

    border: 1px solid #e2d8ca;

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(8px);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;

    z-index: 1001;
}


/* Show Second Level Submenu */

.dropdown-item:hover > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);
}


/* =========================================================
   SUBMENU LINKS
========================================================= */

.submenu a {
    display: block;

    width: 100%;

    padding: 12px 18px;

    box-sizing: border-box;

    color: #181818;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    text-decoration: none;

    transition:
        color 0.22s ease,
        background 0.22s ease;
}

.submenu a:hover {
    color: #b7834b;
    background: rgba(184, 132, 75, 0.06);
}


/* =========================================================
   SERVICES DROPDOWN
========================================================= */

.services-dropdown {
    width: 170px;
}


/* Services Dropdown Links */

.services-dropdown > a {
    display: block;

    width: 100%;

    padding: 12px 18px;

    box-sizing: border-box;

    color: #181818;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    text-decoration: none;

    transition:
        color 0.22s ease,
        background 0.22s ease;
}

.services-dropdown > a:hover {
    color: #b7834b;
    background: rgba(184, 132, 75, 0.06);
}


/* =========================================================
   DROPDOWN HOVER BRIDGE
========================================================= */

.nav-dropdown::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;
    height: 8px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .main-navigation {
        display: none;
    }

    .dropdown-menu,
    .submenu {
        display: none;
    }
}

/* =========================================================
   HEADER CTA
========================================================= */

.header-cta {
    min-height: 52px;
    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    flex-shrink: 0;

    background: #b7834b;
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;

    border: 1px solid #a8723d;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.header-cta:hover {
    background: #9f6938;
    transform: translateY(-1px);
}

.cta-arrow {
    font-size: 19px;
    line-height: 1;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {
    width: 46px;
    height: 46px;

    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    background: transparent;
    border: 1px solid #c9b8a5;

    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 1px;
    background: #222;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-container {
        min-height: 90px;
    }

    .main-navigation {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .header-cta {
        padding: 0 16px;
        font-size: 11px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .header-container {
        min-height: 80px;
    }

    .main-navigation,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-mark {
        width: 36px;
        height: 45px;
    }

    .logo-text strong {
        font-size: 15px;
        letter-spacing: 2.5px;
    }
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero {
   position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-start;
    overflow: visible;
    background: #f8f4ef;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
   position: relative;
    z-index: 2;
    width: 48%;
    max-width: 680px;
    margin-left: 6%;
    padding: 120px 0 20px;
}

.hero-content h1 {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(48px, 5vw, 72px);
    font-weight: 400;

    line-height: 1.05;
    letter-spacing: -1.5px;

    color: #151515;
}


/* Gold divider */

.hero-divider {
    width: 58px;
    height: 2px;

    margin: 38px 0 32px;

    background: #b7834b;
}


/* Description */

.hero-description {
    max-width: 570px;

    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #3a3a3a;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 42px;
}

.hero-btn {
    min-height: 55px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    padding: 0 25px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.2px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}


/* Primary button */

.hero-btn-primary {
    min-width: 220px;

    background: #b7834b;
    color: #ffffff;

    border: 1px solid #b7834b;
}

.hero-btn-primary:hover {
    background: #9f6938;
}

.hero-btn-primary span {
    font-size: 20px;
    line-height: 1;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image-wrapper {
    position: absolute;

    top: 0;
    right: 0;

    width: 67%;
    height: 100%;

    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   IMAGE FADE
========================================================= */

.hero-image-wrapper::before {
    content: "";

    position: absolute;

    z-index: 1;

    top: 0;
    left: 0;

    width: 32%;
    height: 100%;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #f8f4ef 0%,
            rgba(248, 244, 239, 0.98) 18%,
            rgba(248, 244, 239, 0.75) 42%,
            rgba(248, 244, 239, 0.25) 75%,
            rgba(248, 244, 239, 0) 100%
        );
}


/* =========================================================
   HERO STATISTICS
========================================================= */

.hero-stats {
    position: absolute;

    z-index: 5;

    left: 50%;
    bottom: -65px;

    transform: translateX(-50%);

    width: min(88%, 1180px);

    min-height: 125px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: rgba(255, 253, 249, 0.96);

    border: 1px solid #dfd1c2;
}

.stat-item {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.stat-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 20%;
    right: 0;

    width: 1px;
    height: 60%;

    background: #dfd1c2;
}

.stat-number {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;
    font-weight: 400;

    color: #ad7841;
}

.stat-label {
    margin-top: 8px;

    font-size: 12px;
    font-weight: 600;

    color: #222;
}


/* =========================================================
   HERO RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .hero-content {
        width: 52%;
        margin-left: 5%;
    }

    .hero-content h1 {
        font-size: 54px;
    }

    .hero-image-wrapper {
        width: 64%;
    }

    .hero-stats {
        width: 90%;
    }
}


@media (max-width: 850px) {

    .hero {
        min-height: 850px;
    }

    .hero-image-wrapper {
        width: 100%;
    }

    .hero-image-wrapper::before {
        width: 100%;

        background:
            linear-gradient(
                90deg,
                rgba(248, 244, 239, 0.98) 0%,
                rgba(248, 244, 239, 0.90) 40%,
                rgba(248, 244, 239, 0.55) 70%,
                rgba(248, 244, 239, 0.15) 100%
            );
    }

    .hero-content {
        width: 70%;
        margin-left: 6%;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-stats {
        width: 92%;
        min-height: 120px;
    }
}


@media (max-width: 650px) {

    .hero {
        min-height: 900px;
        align-items: flex-start;
    }

    .hero-content {
        width: 90%;
        margin: 0 auto;

        padding-top: 150px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn {
        width: 230px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);

        min-height: 180px;

        bottom: 15px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-number {
        font-size: 27px;
    }

    .stat-label {
        font-size: 10px;
    }
}

/* =========================================
   ABOUT SECTION
========================================== */

.about-section {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    background: #f8f5f0;
    min-height: 760px;
    margin-top: 110px;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 760px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 10%;
    box-sizing: border-box;
}

.about-label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #b8844b;
    margin-bottom: 18px;
}

.about-divider {
    width: 94px;
    height: 1px;
    background: #c9a477;
    margin-bottom: 20px;
}

.about-content h2 {
    margin: 0;

    font-family: "EB Garamond", Georgia, serif;

    font-size: clamp(42px, 3.4vw, 64px);
    font-weight: 400;

    line-height: 1.12;
    letter-spacing: -1.5px;

    color: #171717;
}
.about-content h2 span {
    color: #ad7841;
}

.about-line {
    width: 100%;
    height: 1px;
    background: #dfd2c2;
    margin: 28px 0 20px;
}

.about-description {
     margin: 0 0 15px 0;
    max-width: 650px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-features {
    margin-top: 24px;
    width: 100%;
}

.about-feature {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid #dfd2c2;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #202020;
}

.about-feature:last-child {
    border-bottom: none;
}

.feature-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    transform: rotate(45deg);
    border: 1px solid #c7a47b;
    box-sizing: border-box;
}

.feature-icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 3px;
    left: 3px;
    border: 1px solid #c7a47b;
    box-sizing: border-box;
}

/* =========================================
   ABOUT SECTION - RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 550px;
    }

    .about-content {
        padding: 70px 7%;
    }

    .about-content h2 {
        font-size: clamp(40px, 7vw, 58px);
    }
}


@media (max-width: 600px) {

    .about-image {
        min-height: 420px;
    }

    .about-content {
        padding: 55px 6%;
    }

    .about-label {
        font-size: 15px;
    }

    .about-content h2 {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    .about-description {
        font-size: 16px;
        line-height: 1.65;
    }

    .about-feature {
        gap: 16px;
        font-size: 15px;
        line-height: 1.4;
        padding: 12px 0;
    }
}

/* =========================================
   SERVICES SECTION
========================================== */

.services-section {
    width: 100%;
    padding: 105px 4.5% 95px;
    background: #f8f5f0;
    box-sizing: border-box;
}


/* -----------------------------------------
   SERVICES INTRO
------------------------------------------ */

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 38px;
}

.section-label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #a9753e;
}

.section-label-line {
    width: 47px;
    height: 2px;
    background: #b8844b;
    margin-top: 18px;
}

.services-heading h2 {
    margin: 23px 0 0;
    font-family: "EB Garamond", Georgia, serif;
    font-size: clamp(48px, 4.2vw, 70px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: #171717;
}

.services-heading h2 span {
    color: #ad7841;
}

.services-title-line {
    width: 56px;
    height: 3px;
    background: #b8844b;
    margin-top: 31px;
}

.services-description {
    padding-top: 58px;
    max-width: 610px;
}

.services-description p {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #3f3f3f;
}


/* -----------------------------------------
   SERVICE CARDS
------------------------------------------ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 570px;
    padding: 39px 28px 30px;
    border: 1px solid #dfd2c2;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: rgba(248, 245, 240, 0.35);
}

.service-number {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #b27c43;
}

.service-card-line {
    width: 100%;
    height: 1px;
    background: #dfd2c2;
    margin-top: 16px;
}


/* -----------------------------------------
   SERVICE ICON
------------------------------------------ */

.service-icon {
    width: 100%;
    height: 155px;
    margin: 25px 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-icon img {
    width: 82%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* -----------------------------------------
   SERVICE TITLE
------------------------------------------ */

.service-card h3 {
    margin: 0;
    font-family: "Lora", Georgia, serif;
    font-size: 31px;
    font-weight: 400;
    line-height: 1.15;
    color: #171717;
}

.service-small-line {
    width: 34px;
    height: 2px;
    background: #b8844b;
    margin-top: 19px;
}


/* -----------------------------------------
   SERVICE DESCRIPTION
------------------------------------------ */

.service-card p {
    margin: 24px 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #3f3f3f;
}


/* -----------------------------------------
   EXPLORE LINK
------------------------------------------ */

.service-explore {
    margin-top: auto;
    padding-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #a9753e;
}

.service-explore span {
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.service-explore:hover span {
    transform: translateX(5px);
}


/* -----------------------------------------
   EXPLORE ALL SERVICES BUTTON
------------------------------------------ */

.services-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.services-cta-button {
    min-width: 345px;
    height: 58px;
    padding: 0 35px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
    background: #b8844b;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.services-cta-button span {
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.services-cta-button:hover {
    background: #9f6938;
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================================
   SERVICES SECTION - RESPONSIVE
========================================== */

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        min-height: 560px;
    }
}


@media (max-width: 800px) {

    .services-section {
        padding: 80px 6%;
    }

    .services-intro {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .services-description {
        padding-top: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }
}


@media (max-width: 500px) {

    .services-section {
        padding: 65px 5%;
    }

    .services-heading h2 {
        font-size: 42px;
    }

    .services-description p {
        font-size: 16px;
    }

    .services-cta-button {
        width: 100%;
        min-width: 0;
    }
}

/* =========================================================
   FEATURED PROJECTS
========================================================= */

.projects-section {
    width: 100%;
    padding: 5px 6% 25px;
    background: #f8f5f0;
}

.projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
}

.section-label {
    display: block;
    margin-bottom: 20px;
    color: #ad7841;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.projects-heading-row {
    display: flex;
    align-items: center;
    gap: 36px;
}

.projects-heading-row h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 68px);
    font-weight: 400;
    line-height: 1;
    color: #151515;
}

.projects-heading-row h2 span {
    color: #ad7841;
}

.heading-divider {
    width: 1px;
    height: 55px;
    background: #ad7841;
}

.projects-heading-row p {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    color: #444;
}

.project-slider-controls {
    display: flex;
    gap: 12px;
}

.project-arrow {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d8c8b7;
    border-radius: 50%;

    background: transparent;
    color: #ad7841;

    font-size: 22px;
    cursor: pointer;

    transition: all 0.25s ease;
}

.project-arrow:hover {
    background: #ad7841;
    color: #fff;
}


/* =========================================================
   PROJECT SLIDER
========================================================= */

.projects-slider {
    position: relative;
    width: 100%;
}

.project-slide {
    display: none;

    grid-template-columns: 60% 40%;
    gap: 14px;

    width: 100%;
    min-height: 755px;

    background: transparent;
}

.project-slide.active {
    display: grid;
}

/* =========================================================
   PROJECT IMAGE SLIDE ANIMATION
========================================================= */

.project-image-wrap {
    overflow: hidden;
}

.project-image-wrap img {
    transform: translateY(0);
    opacity: 1;
    transition:
        transform 0.8s ease,
        opacity 0.8s ease;
}

.project-image-wrap.image-enter img {
    transform: translateY(100%);
    opacity: 0;
}

.project-image-wrap.image-enter-active img {
    transform: translateY(0);
    opacity: 1;
}

/* Project image */

.project-image-wrap {
    position: relative;
    min-height: 755px;
    overflow: hidden;

    border: 1px solid #dfd1c2;
    border-radius: 18px;
    background: #f8f5f0;
}

.project-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* =========================================================
   PROJECT IMAGE SLIDE ANIMATION
========================================================= */

.project-image-wrap.image-enter img {
    transform: translateY(100%);
    opacity: 0;
}

.project-image-wrap.image-enter-active img {
    transform: translateY(0);
    opacity: 1;

    transition:
        transform 0.8s ease,
        opacity 0.8s ease;
}


/* Location */

.project-location {
    position: absolute;

    left: 30px;
    bottom: 30px;

    padding: 14px 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: rgba(25, 25, 25, 0.82);
    color: #fff;

    border-radius: 5px;

    font-size: 13px;
}

.project-location span {
    color: #fff;
}


/* =========================================================
   PROJECT CONTENT
========================================================= */

.project-content {
    padding: 52px 46px 40px;

    display: flex;
    flex-direction: column;

    border: 1px solid #dfd1c2;
    border-radius: 18px;
    background: #f8f5f0;
}

.project-number {
    color: #ad7841;
    font-size: 13px;
    font-weight: 600;
}

.project-content h3 {
    margin: 34px 0 18px;

    font-family: "Lora", Georgia, serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 400;

    color: #151515;
}

.project-divider {
    width: 42px;
    height: 2px;
    margin-bottom: 34px;

    background: #ad7841;
}


/* Info blocks */

.project-info-block {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;

    margin-bottom: 28px;
}

.project-icon {
    color: #ad7841;
    font-size: 24px;
    line-height: 1.1;
}

.project-info-block h4 {
    margin: 0 0 9px;

    font-size: 15px;
    font-weight: 600;

    color: #181818;
}

.project-info-block p {
    margin: 0;

    font-size: 13px;
    line-height: 1.55;

    color: #4b4b4b;
}


/* Approach */

.project-approach {
    margin-top: 2px;
}

.project-approach .project-info-block {
    margin-bottom: 12px;
}

.project-approach ul {
    margin: 0 0 0 42px;
    padding: 0;

    list-style: none;
}

.project-approach li {
    position: relative;

    margin-bottom: 11px;
    padding-left: 23px;

    font-size: 12px;
    line-height: 1.4;

    color: #3d3d3d;
}

.project-approach li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    width: 15px;
    height: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ad7841;
    color: #fff;

    font-size: 9px;
}


/* Details button */

.project-details-btn {
    width: fit-content;

    margin-top: auto;

    padding: 14px 28px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    border: 1px solid #ad7841;

    color: #ad7841;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.25s ease;
}

.project-details-btn span {
    font-size: 17px;
}

.project-details-btn:hover {
    background: #ad7841;
    color: #fff;
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.project-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;

    margin-top: 28px;
}

.project-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #d7cec4;

    cursor: pointer;
}

.project-dot.active {
    background: #ad7841;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .projects-heading-row {
        gap: 20px;
    }

    .project-slide {
        grid-template-columns: 55% 45%;
    }

    .project-content {
        padding: 40px 30px;
    }

    .project-content h3 {
        font-size: 31px;
    }
}


@media (max-width: 768px) {

    .projects-section {
        padding: 80px 5% 70px;
    }

    .projects-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .projects-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .heading-divider {
        width: 45px;
        height: 2px;
    }

    .project-slide {
    grid-template-columns: 1fr;
    gap: 14px;
}

    .project-image-wrap {
        min-height: 450px;
    }

    .project-content {
        min-height: auto;
    }
}

/* =========================================================
   PROJECT CTA
========================================================= */

.project-cta {
    position: relative;

    width: 92%;
    max-width: none;
    margin: 35px auto 50px;

    box-sizing: border-box;

    min-height: 250px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #151515;
    border-radius: 30px;

    color: #fff;
}


/* =========================================================
   CTA DECORATIVE PATTERNS
========================================================= */

.cta-pattern {
    position: absolute;

    top: 0;
    bottom: 0;

    width: 220px;

    opacity: 0.45;

    pointer-events: none;
}

.cta-pattern-left {
    left: 0;

    background:
        linear-gradient(
            135deg,
            transparent 48%,
            rgba(173, 120, 65, 0.45) 49%,
            transparent 50%
        ),
        linear-gradient(
            45deg,
            transparent 48%,
            rgba(173, 120, 65, 0.35) 49%,
            transparent 50%
        );

    background-size: 75px 75px;
}

.cta-pattern-right {
    right: 0;

    background:
        linear-gradient(
            135deg,
            transparent 48%,
            rgba(173, 120, 65, 0.45) 49%,
            transparent 50%
        ),
        linear-gradient(
            45deg,
            transparent 48%,
            rgba(173, 120, 65, 0.35) 49%,
            transparent 50%
        );

    background-size: 75px 75px;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.cta-content {
    position: relative;
    z-index: 2;

    width: min(86%, 1240px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1px 0.7fr;

    align-items: center;
    column-gap: 55px;
}


/* =========================================================
   CTA TEXT
========================================================= */

.cta-text h2 {
    margin: 0;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 400;
    line-height: 1.05;
    color: #fff;
}

.cta-divider {
    width: 55px;
    height: 2px;
    margin: 18px 0 16px;
    background: #ad7841;
}

.cta-text p {
    max-width: 680px;
    margin: 0;

    font-size: 16px;
    line-height: 1.45;

    color: #f1efeb;
}


/* =========================================================
   CTA VERTICAL SEPARATOR
========================================================= */

.cta-separator {
    width: 1px;
    height: 80px;
    background: rgba(173, 120, 65, 0.7);
}

/* =========================================================
   CTA BUTTON
========================================================= */

.cta-action {
    display: flex;
    justify-content: center;
}

.cta-button {
    min-width: 345px;

    min-height: 52px;

    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-radius: 5px;

    background: #ad7841;

    color: #fff;

    text-decoration: none;

    font-size: 17px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.cta-button .cta-arrow {
    font-size: 28px;

    line-height: 1;

    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: #fff;

    color: #151515;

    transform: translateY(-2px);
}

.cta-button:hover .cta-arrow {
    transform: translateX(7px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .project-cta {
        min-height: 420px;

        margin-top: 75px;
    }

    .cta-content {
        width: 82%;

        grid-template-columns: 1fr;

        row-gap: 35px;

        text-align: center;
    }

    .cta-text p {
        margin: 0 auto;
    }

    .cta-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-separator {
        width: 70px;
        height: 1px;

        margin: 0 auto;
    }

    .cta-action {
        justify-content: center;
    }
}


@media (max-width: 768px) {

    .project-cta {
        width: calc(100% - 10%);

        min-height: 480px;

        margin: 70px 5% 80px;

        border-radius: 24px;
    }

    .cta-content {
        width: 82%;
    }

    .cta-text h2 {
        font-size: 38px;
    }

    .cta-text p {
        font-size: 16px;
    }

    .cta-button {
        min-width: 280px;

        min-height: 70px;

        padding: 0 25px;

        font-size: 14px;
    }

    .cta-pattern {
        width: 130px;
    }
}

/* =========================================================
   PROCESS / OUR APPROACH
========================================================= */

.process-section {
    position: relative;
    width: 100%;
    padding: 30px 6% 90px;
    background: #f8f5f0;
}

.process-section::after {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 0;
    height: 1px;
    background: #d8cbbb;
}

.process-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 46% 54%;
    gap: 25px;

    align-items: start;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.process-intro {
    position: sticky;
    top: 100px;
    align-self: start;
    padding-top: 0;
    padding-right: 35px;
}

.process-label {
    display: block;

    color: #ad7841;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: 1px;
}

.process-title-line {
    width: 50px;
    height: 2px;

    margin: 25px 0 35px;

    background: #ad7841;
}

.process-intro h2 {
    margin: 0;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(50px, 5vw, 72px);
    line-height: 1.08;

    font-weight: 400;

    color: #151515;
}

.process-intro h2 span {
    color: #ad7841;
}

.process-intro p {
    max-width: 620px;

    margin: 38px 0 0;

    font-size: 18px;
    line-height: 1.75;

    color: #202020;
}


/* =========================================================
   RIGHT PROCESS AREA
========================================================= */

.process-list {
    position: relative;

    width: 100%;

    padding-left: 0;
}


/* =========================================================
   TIMELINE BASE LINE
========================================================= */

.process-line {
    position: absolute;

    left: 0;
    top: 55px;
    bottom: 55px;

    width: 2px;

    background: #d8cbbb;

    z-index: 1;
}


/* =========================================================
   TIMELINE ACTIVE PROGRESS
========================================================= */

.process-line-progress {
    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 0;

    background: #ad7841;

    transform-origin: top;

    transition: height 0.40s linear;

    z-index: 2;
}


/* =========================================================
   PROCESS STEP
========================================================= */

.process-step {
    position: relative;

    min-height: 205px;

    padding: 0 0 45px 70px;

    display: grid;

    grid-template-columns: 95px minmax(0, 1fr);

    column-gap: 22px;

    align-items: start;
}

.process-step:last-child {
    padding-bottom: 30px;
}


/* =========================================================
   TIMELINE MARKER
========================================================= */

.process-marker {
    position: absolute;

    left: -7px;
    top: 48px;

    width: 16px;
    height: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;
}

.process-dot {
    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: #f8f5f0;

    border: 2px solid #ad7841;

    box-sizing: border-box;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}


/* =========================================================
   ACTIVE TIMELINE DOT
========================================================= */

.process-step.active .process-dot {
    background: #ad7841;
    border-color: #ad7841;

    transform: scale(1.15);
}


/* =========================================================
   ICON
========================================================= */

.process-icon {
    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: #f3eee8;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.process-icon img {
    width: 62px;
    height: 62px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   PROCESS CONTENT
========================================================= */

.process-content {
    padding-top: 8px;
}

.process-content h3 {
    margin: 0 0 15px;

    font-family: "Lora", Georgia, serif;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 400;

    color: #151515;
}

.process-content p {
    max-width: 540px;

    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: #222;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .process-section {
        padding: 100px 6% 120px;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    /*
       On tablet/mobile the two-column sticky behavior
       is disabled so everything flows normally.
    */

    .process-intro {
        position: relative;
        top: auto;

        padding: 0;
        padding-right: 0;
    }

    .process-intro p {
        max-width: 700px;
    }

    .process-step {
        min-height: 230px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .process-section {
        padding: 80px 5% 100px;
    }

    .process-wrapper {
        gap: 55px;
    }

    .process-intro h2 {
        font-size: 45px;
    }

    .process-intro p {
        font-size: 16px;
        line-height: 1.65;
    }

    .process-line {
        left: 0;
        top: 42px;
        bottom: 42px;
    }

    .process-step {
        min-height: 190px;

        grid-template-columns: 80px minmax(0, 1fr);

        column-gap: 18px;

        padding-left: 60px;
        padding-bottom: 55px;
    }

    .process-marker {
        left: -6px;
        top: 36px;
    }

    .process-icon {
        width: 80px;
        height: 80px;
    }

    .process-icon img {
        width: 46px;
        height: 46px;
    }

    .process-content {
        padding-top: 3px;
    }

    .process-content h3 {
        font-size: 27px;
        margin-bottom: 10px;
    }

    .process-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    width: 100%;
    padding: 40px 6% 10px;
    background: #f8f5f0;
}


/* =========================================================
   WHY HEADER
========================================================= */

.why-header {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 55px;
}


.why-label {
    display: block;

    margin-bottom: 22px;

    color: #ad7841;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;
}

.why-label::after {
    content: "";
    display: block;

    width: 45px;
    height: 2px;

    margin-top: 12px;

    background: #ad7841;
}

/* =========================================================
   TITLE ROW
========================================================= */

.why-title-row {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.why-title-row h2 {
    width: 100%;

    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 400;
    color: #151515;

    white-space: nowrap;
    text-align: center;
}

.why-title-row h2 span {
    color: #ad7841;
}

.why-title-divider {
    width: 1px;
    height: 25px;
    background: transparent;
    margin: 0;
}

.why-title-row p {
    max-width: 800px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.65;

    color: #444;
    text-align: center;
}


/* =========================================================
   WHY GRID
========================================================= */

.why-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    position: relative;
}

.why-grid::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #d8cbbb;
}

/* =========================================================
   WHY CARD
========================================================= */

.why-card {
    position: relative;
    z-index: 0;
    min-height: 360px;
    padding: 45px 40px 40px;

    background: transparent;

    transition: background 0.3s ease;
}

/* =========================================================
   VERTICAL DIVIDER
========================================================= */

.why-card:not(:nth-child(3n))::after {
    content: "";
    position: absolute;

    top: 45px;
    right: 0;

    width: 1px;
    height: calc(100% - 90px);

    background: #d8cbbb;
}



/* =========================================================
   WHY ICON
========================================================= */

.why-icon {
    width: 100px;
    height: 100px;

    border-radius: 50%;

    border: 1px solid #d8cbbb;

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 32px;
}

.why-icon img {
    width: 50px;
    height: 50px;

    display: block;

    object-fit: contain;

    transition: transform 0.3s ease;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.why-card-number {
    margin-bottom: 12px;

    color: #ad7841;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;
}


/* =========================================================
   CARD HEADING
========================================================= */

.why-card h3 {
    margin: 0 0 14px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    line-height: 1.2;

    font-weight: 400;

    color: #151515;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.why-card p {
    max-width: 290px;

    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: #4a4a4a;
}


/* =========================================================
   HOVER
========================================================= */

.why-card {
    position: relative;
    min-height: 360px;
    padding: 45px 40px 40px;

    background: transparent;

    transition: background 0.3s ease;
}
/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .why-section {
        padding: 100px 6% 110px;
    }

    .why-title-row {
        grid-template-columns: 1fr;

        row-gap: 25px;
    }

    .why-title-divider {
        width: 50px;
        height: 2px;
    }

    .why-title-row p {
        max-width: 700px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card {
        min-height: 350px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 768px) {

    .why-section {
        padding: 80px 5% 100px;
    }

    .why-header {
        margin-bottom: 55px;
    }

    .why-title-row h2 {
        font-size: 45px;
    }

    .why-title-row p {
        font-size: 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;

        padding: 35px 30px 40px;
    }

    .why-card h3 {
        font-size: 26px;
    }

    .why-card p {
        max-width: 100%;
    }

    .why-icon {
        width: 90px;
        height: 90px;
    }

    .why-icon img {
        width: 50px;
        height: 50px;
    }
}

/* =========================================================
   TESTIMONIALS SECTION
========================================================= */

.testimonials-section {
    width: 100%;

    padding: 10px 6% 90px;

    background: #f8f5f0;
}


.testimonials-wrapper {
    width: 100%;

    max-width: 1480px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.testimonials-header {
    width: 100%;

    text-align: left;

    margin-bottom: 65px;
}


.testimonials-label {
    display: block;

    color: #ad7841;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;
}


/* SMALL LINE UNDER LABEL */

.testimonials-title-line {
        width: 74px;
    height: 2px;

    margin-top: 15px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 32px;

    background: #ad7841;
}

/* MAIN HEADING */

.testimonials-header h2 {
    margin: 0;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(48px, 5vw, 68px);

    line-height: 1.05;

    font-weight: 400;

    color: #151515;
}

.testimonials-header h2 span {
    color: #ad7841;
}


/* =========================================================
   SLIDER
========================================================= */

.testimonials-slider {
    position: relative;

    width: 100%;

    overflow: hidden;
}


.testimonials-track {
    position: relative;

    width: 100%;
}


/* =========================================================
   SLIDE
========================================================= */

.testimonial-slide {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 54px;

    position: absolute;

    top: 0;
    left: 0;

    opacity: 0;

    visibility: hidden;

    transform: translateX(35px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease,
        visibility 0.65s ease;
}


.testimonial-slide.active {
    position: relative;

    opacity: 1;

    visibility: visible;

    transform: translateX(0);
}


/* =========================================================
   CARD
========================================================= */

.testimonial-card {
    min-height: 440px;

    padding: 38px 35px 32px;

    border: 1px solid #e5d9cc;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.16);

    display: flex;

    flex-direction: column;
}


/* =========================================================
   QUOTE
========================================================= */

.testimonial-quote {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 67px;

    line-height: 0.8;

    font-weight: 700;

    color: #ad7841;

    margin-bottom: 30px;
}


/* =========================================================
   TEXT
========================================================= */

.testimonial-text {
    margin: 0;

    max-width: 100%;

    font-size: 17px;

    line-height: 1.75;

    color: #383838;
}


/* =========================================================
   DIVIDER
========================================================= */

.testimonial-divider {
    width: 100%;

    height: 1px;

    background: #e5d9cc;

    margin-top: auto;

    margin-bottom: 35px;
}


/* =========================================================
   CLIENT
========================================================= */

.testimonial-client {
    width: 100%;
}


.testimonial-client h3 {
    margin: 0 0 14px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    line-height: 1.2;

    font-weight: 700;

    color: #151515;
}


.testimonial-client p {
    margin: 0;

    font-size: 16px;

    line-height: 1.5;

    color: #555;
}


/* =========================================================
   DOTS
========================================================= */

.testimonial-dots {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 60px;
}


.testimonial-dot {
    width: 20px;

    height: 20px;

    padding: 0;

    border-radius: 50%;

    border: 2px solid #ad7841;

    background: transparent;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.testimonial-dot.active {
    background: #ad7841;

    transform: scale(1.02);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .testimonials-section {
        padding: 80px 6% 80px;
    }


    .testimonial-slide {
        gap: 25px;
    }


    .testimonial-card {
        min-height: 430px;

        padding: 32px 28px;
    }


    .testimonial-text {
        font-size: 16px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .testimonials-section {
        padding: 70px 5% 70px;
    }


    .testimonials-header {
        margin-bottom: 45px;
    }


    .testimonials-header h2 {
        font-size: 43px;
    }


    .testimonial-slide {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .testimonial-card {
        min-height: 360px;

        padding: 30px;
    }


    .testimonial-slide:not(.active) {
        position: absolute;
    }


    .testimonial-dots {
        margin-top: 40px;

        gap: 18px;
    }


    .testimonial-dot {
        width: 16px;

        height: 16px;
    }

}

/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    width: 100%;
    padding: 30px 6% 50px;
    background: #f8f5f0;
}

.faq-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   FAQ HEADER
========================================================= */

.faq-header {
    width: 100%;
    margin-bottom: 65px;
}


/* =========================================================
   FAQ LABEL
========================================================= */

.faq-label {
    display: block;

    width: fit-content;

    margin: 0 0 45px;

    color: #ad7841;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;

    text-align: left;

    position: relative;
}

.faq-label::after {
    content: "";

    position: absolute;

    left: 0;
    top: calc(100% + 12px);

    width: 17px;
    height: 2px;

    background: #ad7841;
}


/* =========================================================
   FAQ HEADING
========================================================= */

.faq-header h2 {
    width: 100%;

    margin: 0 0 32px;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(48px, 5vw, 72px);

    line-height: 1.05;

    font-weight: 400;

    color: #151515;

    text-align: center;

    white-space: nowrap;
}

.faq-header h2 span {
    color: #ad7841;
}


/* =========================================================
   FAQ DESCRIPTION
========================================================= */

.faq-header p {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    font-size: 17px;

    line-height: 1.7;

    color: #34495e;

    text-align: center;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 10px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {
    position: relative;

    width: 100%;

    border: 1px solid #dfd0c0;

    border-radius: 9px;

    overflow: hidden;

    background: #ffffff;

    transition: background 0.3s ease;
}


/* =========================================================
   QUESTION
========================================================= */

.faq-question {
    position: relative;

    width: 100%;

    min-height: 86px;

    padding: 22px 75px 22px 100px;

    border: 0;

    background: transparent;

    display: flex;
    align-items: center;

    text-align: left;

    cursor: pointer;

    font-family: inherit;
}


/* =========================================================
   QUESTION TEXT
========================================================= */

.faq-question span:first-child {
    font-family: "Lora", Georgia, serif;

    font-size: 27px;

    line-height: 1.3;

    font-weight: 400;

    color: #151515;
}


/* =========================================================
   LEFT CIRCLE
========================================================= */

.faq-arrow {
    position: absolute;

    left: 35px;
    top: 50%;

    transform: translateY(-50%);

    width: 34px;
    height: 34px;

    border-radius: 50%;

    border: 0;

    background: #ad7841;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 0;

    line-height: 1;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   PLUS
========================================================= */

.faq-arrow::before {
    content: "+";

    font-family: Arial, Helvetica, sans-serif;

    font-size: 23px;
    font-weight: 300;

    line-height: 1;

    color: #ffffff;
}


/* =========================================================
   RIGHT CHEVRON
========================================================= */

.faq-question::after {
    content: "";

    position: absolute;

    right: 42px;
    top: 50%;

    width: 10px;
    height: 10px;

    border-right: 1.5px solid #151515;
    border-bottom: 1.5px solid #151515;

    transform: translateY(-65%) rotate(45deg);

    transition: transform 0.3s ease;
}


/* =========================================================
   OPEN QUESTION
========================================================= */

.faq-item.active .faq-question {
    background: #f3eee8;
}


/* =========================================================
   MINUS
========================================================= */

.faq-item.active .faq-arrow {
    background: #ad7841;
}

.faq-item.active .faq-arrow::before {
    content: "−";

    font-size: 23px;
}


/* =========================================================
   UP CHEVRON
========================================================= */

.faq-item.active .faq-question::after {
    transform: translateY(-35%) rotate(225deg);
}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition: grid-template-rows 0.4s ease;
}

.faq-answer p {
    overflow: hidden;

    max-width: 1050px;

    margin: 0;

    padding: 0 100px;

    font-size: 17px;

    line-height: 1.8;

    color: #4b525a;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        padding 0.4s ease;
}


/* =========================================================
   OPEN ANSWER
========================================================= */

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding: 18px 100px 30px;

    opacity: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .faq-section {
        padding: 85px 6% 90px;
    }

    .faq-header h2 {
        font-size: clamp(44px, 5vw, 62px);
    }

    .faq-question {
        padding-left: 85px;
        padding-right: 65px;
    }

    .faq-question span:first-child {
        font-size: 23px;
    }

    .faq-arrow {
        left: 28px;
    }

    .faq-question::after {
        right: 30px;
    }

    .faq-answer p {
        padding-left: 85px;
        padding-right: 60px;
    }

    .faq-item.active .faq-answer p {
        padding-left: 85px;
        padding-right: 60px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 70px 5% 80px;
    }

    .faq-header {
        margin-bottom: 50px;
    }

    .faq-label {
        margin-bottom: 14px;
    }

    .faq-header h2 {
        font-size: 43px;

        line-height: 1.1;

        white-space: normal;

        margin-bottom: 22px;
    }

    .faq-header p {
        font-size: 15px;

        line-height: 1.7;
    }

    .faq-question {
        min-height: 76px;

        padding: 20px 55px 20px 70px;
    }

    .faq-question span:first-child {
        font-size: 19px;
    }

    .faq-arrow {
        left: 20px;

        width: 32px;
        height: 32px;
    }

    .faq-question::after {
        right: 22px;

        width: 8px;
        height: 8px;
    }

    .faq-answer p {
        padding: 0 70px;

        font-size: 15px;
    }

    .faq-item.active .faq-answer p {
        padding: 15px 70px 25px;
    }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: calc(100% - 28px);
    margin: 0 14px 14px;

    padding: 38px 45px 22px;

    background: #111518;
    color: #f5f1eb;

    border-radius: 20px;

    position: relative;
    overflow: hidden;

    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   FOOTER INNER
========================================================= */

.footer-inner {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.25fr
        0.80fr
        1.15fr
        1.30fr;

    gap: 28px;

    align-items: start;

    position: relative;
    z-index: 2;
}


/* =========================================================
   COMMON FOOTER HEADINGS
========================================================= */

.footer-column h3,
.footer-contact-form h3 {

    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    line-height: 1.2;
    font-weight: 400;

    color: #c1844b;
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.footer-logo {
    width: 220px;
    height: 75px;

    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 220px;
    max-width: 100%;
    height: auto;

    display: block;
}


/* =========================================================
   BRAND LINE
========================================================= */

.footer-brand-line {
    width: 43px;
    height: 2px;

    margin: 18px 0 32px;

    background: #c1844b;
}


/* =========================================================
   BRAND DESCRIPTION
========================================================= */

.footer-brand p {
    max-width: 330px;

    margin: 0;

    color: #e4e0db;

    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social-divider {
    width: 100%;
    max-width: 310px;

    height: 1px;

    margin: 62px 0 40px;

    background: rgba(194, 132, 75, 0.28);
}

.footer-brand h4 {

    margin: 0 0 22px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;
    font-weight: 400;

    color: #f4eee7;
}


.footer-socials {
    display: flex;
    align-items: center;

    gap: 18px;
}


.footer-socials a {

    width: 55px;
    height: 55px;

    border: 1px solid #825c39;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #c1844b;

    text-decoration: none;

    font-size: 20px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-socials a:hover {

    background: #c1844b;
    color: #111518;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER COLUMN
========================================================= */

.footer-column-line {

    width: 43px;
    height: 2px;

    margin: 18px 0 27px;

    background: #c1844b;
}


/* =========================================================
   SERVICES
========================================================= */

.footer-service-links {

    display: flex;
    flex-direction: column;

    padding: 0;
    margin: 0;
}


.footer-service-links a {

    display: block;

    width: max-content;

    margin-bottom: 24px;

    color: #e6e2dd;

    text-decoration: none;

    font-size: 16px;
    line-height: 1.4;

    transition: color 0.25s ease;
}


.footer-service-links a:last-child {
    margin-bottom: 0;
}


.footer-service-links a:hover {
    color: #c1844b;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.footer-contact-item {

    display: flex;
    align-items: flex-start;

    gap: 16px;

    margin-bottom: 22px;
}


.contact-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #1d2022;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #c1844b;

    font-size: 18px;
}


.footer-contact-item p {

    margin: 0;

    padding-top: 3px;

    color: #e4e0db;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT FORM CARD
========================================================= */

.footer-contact-form {

    width: 100%;

    padding: 20px 22px 20px;

    border: 1px solid rgba(193, 132, 75, 0.38);

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            rgba(193, 132, 75, 0.04),
            rgba(255, 255, 255, 0.01)
        );

    position: relative;
}


/* =========================================================
   FORM ICON
========================================================= */

.footer-form-icon {

    width: 48px;
    height: 48px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.footer-form-icon img {

    width: 48px;
    height: 48px;

    object-fit: contain;

    display: block;
}


/* =========================================================
   FORM HEADING
========================================================= */

.footer-contact-form h3 {

    text-align: center;

    font-size: 23px;

    color: #f5eee7;
}


/* =========================================================
   FORM DIVIDER
========================================================= */

.footer-form-divider {

    width: 43px;
    height: 2px;

    margin: 12px auto 14px;

    background: #c1844b;
}


/* =========================================================
   FORM INTRO
========================================================= */

.footer-form-intro {

    max-width: 280px;

    margin: 0 auto 16px;

    text-align: center;

    color: #d9d4ce;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    width: 100%;
}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-bottom: 10px;
}


.form-field {
    width: 100%;

    margin-bottom: 7px;
}


.form-field input,
.form-field select,
.form-field textarea {

    width: 100%;

    border: 1px solid rgba(216, 203, 187, 0.25);

    border-radius: 3px;

    background: rgba(255, 255, 255, 0.035);

    color: #f5f1eb;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}


.form-field input,
.form-field select {

    height: 38px;

    padding: 0 11px;
}


.form-field textarea {

    min-height: 68px;

    padding: 9px 11px;

    resize: vertical;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.form-field input::placeholder,
.form-field textarea::placeholder {

    color: #aaa39c;
}


/* =========================================================
   SELECT
========================================================= */

.form-field select {

    appearance: none;

    cursor: pointer;

    color: #aaa39c;
}


.form-field select option {

    background: #15191b;
    color: #f5f1eb;
}


/* =========================================================
   FORM FOCUS
========================================================= */

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {

    border-color: #c1844b;

    background: rgba(193, 132, 75, 0.06);
}


/* =========================================================
   SEND BUTTON
========================================================= */

.footer-form-button {

    width: 100%;

    min-height: 44px;

    margin-top: 4px;

    padding: 0 17px;

    border: 1px solid #a8723d;
    border-radius: 5px;

    background: #bd7e48;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.4px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.footer-form-button:hover {

    background: #d09159;

    transform: translateY(-1px);
}


.footer-form-button span:last-child {

    font-size: 22px;
    line-height: 1;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    width: 100%;

    margin-top: 35px;
    padding-top: 20px;

    border-top: 1px solid rgba(193, 132, 75, 0.28);

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 2;
}


.footer-bottom p {

    margin: 0;

    color: #ddd8d2;

    font-size: 14px;
}


.footer-bottom-links {

    display: flex;
    align-items: center;

    gap: 30px;
}


.footer-bottom-links a {

    color: #ddd8d2;

    text-decoration: none;

    font-size: 14px;

    transition: color 0.25s ease;
}


.footer-bottom-links a:hover {
    color: #c1844b;
}


.footer-bottom-links span {

    width: 1px;
    height: 25px;

    background: rgba(216, 203, 187, 0.35);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .site-footer {
        padding: 38px 35px 22px;
    }


    .footer-inner {

        grid-template-columns:
            1.1fr
            0.9fr
            0.9fr
            1fr;

        gap: 35px;
    }


    .footer-contact-form {
        width: 100%;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .footer-inner {

        grid-template-columns:
            1fr 1fr;

        gap: 45px 35px;
    }


    .footer-contact-form {
        grid-column: span 2;
    }


    .footer-brand p {
        max-width: 100%;
    }


    .footer-social-divider {
        max-width: 100%;
    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-footer {

        width: calc(100% - 20px);

        margin: 0 10px 10px;

        padding: 45px 22px 25px;

        border-radius: 15px;
    }


    .footer-inner {

        grid-template-columns: 1fr;

        gap: 42px;
    }


    .footer-contact-form {

        grid-column: auto;

        padding: 27px 20px 22px;
    }


    .footer-column h3,
    .footer-contact-form h3 {

        font-size: 24px;
    }


    .footer-logo {
        width: 190px;
    }


    .footer-logo img {
        width: 190px;
    }


    .footer-socials {
        gap: 12px;
    }


    .footer-socials a {

        width: 48px;
        height: 48px;

        font-size: 18px;
    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .footer-bottom {
        margin-top: 42px;
    }


    .footer-bottom-links {

        flex-wrap: wrap;

        gap: 18px;
    }
}

/* =========================================================
   GET A QUOTE POPUP
========================================================= */

.quote-modal {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(5px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;

    z-index: 9999;
}


/* =========================================================
   POPUP ACTIVE STATE
========================================================= */

.quote-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   POPUP BOX
========================================================= */

.quote-box {
    position: relative;

    width: min(760px, 100%);
    max-height: 90vh;

    overflow-y: auto;

    padding: 42px;

    background: #f8f5f0;
    border: 1px solid #dfd2c2;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);

    transform: translateY(15px);

    transition:
        transform 0.25s ease;
}


.quote-modal.active .quote-box {
    transform: translateY(0);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.close-modal {
    position: absolute;

    top: 15px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: none;
    background: transparent;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 300;

    line-height: 1;

    color: #333;

    cursor: pointer;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.close-modal:hover {
    color: #b7834b;
    transform: rotate(90deg);
}


/* =========================================================
   QUOTE HEADER
========================================================= */

.quote-label {
    margin-bottom: 14px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;

    color: #b7834b;
}


.quote-divider {
    width: 58px;
    height: 2px;

    margin-bottom: 20px;

    background: #b7834b;
}


.quote-header h2 {
    margin: 0 0 12px;

    font-family: "EB Garamond", Georgia, serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 400;

    line-height: 1.1;
    letter-spacing: -0.5px;

    color: #171717;
}


.quote-header p {
    max-width: 600px;

    margin: 0 0 30px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;

    color: #555;
}


/* =========================================================
   FORM GRID
========================================================= */

.quote-form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.quote-field {
    display: flex;
    flex-direction: column;

    gap: 7px;
}


.quote-field-full {
    grid-column: 1 / -1;
}


.quote-field label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;

    color: #303030;
}


.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;

    padding: 14px;

    box-sizing: border-box;

    border: 1px solid #d9cec0;

    background: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    color: #202020;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    border-color: #b7834b;

    box-shadow:
        0 0 0 2px rgba(183, 131, 75, 0.08);
}


.quote-field textarea {
    min-height: 110px;

    resize: vertical;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.quote-submit {
    display: inline-flex;

    align-items: center;
    gap: 24px;

    margin-top: 24px;

    padding: 15px 24px;

    border: 1px solid #b7834b;

    background: #b7834b;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.3px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.quote-submit:hover {
    background: #171717;
    border-color: #171717;
}


/* =========================================================
   POPUP RESPONSIVE
========================================================= */

@media (max-width: 650px) {

    .quote-modal {
        padding: 18px;
    }

    .quote-box {
        padding: 32px 22px;
    }

    .quote-form-grid {
        grid-template-columns: 1fr;
    }

    .quote-field-full {
        grid-column: auto;
    }

}