﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900:1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800:1,400..800&family=Nova+Square&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800:1,400..800&family=Lora:ital,wght@0,400..700:1,400..700&family=Nova+Square&display=swap');

* {
    font-family: "Manrope", sans-serif;
}

/* Hide default cursor */
body, * {
    cursor: none !important;
}

/* Inner dot */
.cursor-dot {
    width: 15px;
    height: 15px;
    background-color: var(--accent); /* dark */
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* Outer ring */
.cursor-ring {
    width: 28px;
    height: 28px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, border 0.2s ease;
}

    /* Hover effect */
    .cursor-ring.hover {
        transform: translate(-50%, -50%) scale(1.5);
        border: 1px solid var(--accent);
    }

:root {
    --primary-dark: #1A1A1A; /*  dark  */
    --primary-light: #FFFFFF; /* Clean white background */

    --accent: #C9A96E; /* Soft luxury gold */
    --accent-soft: rgba(201, 169, 110, 0.15);
    --text-main: #2B2B2B; /* Main readable text */
    --text-muted: #8A8A8A; /* Subtle text */

    --border-light: #EAEAEA; /* Minimal borders */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* =========================
   HEADER BASE
========================= */
.site-header {
    /*    font-family: "Manrope", sans-serif;*/
    font-family: "Montserrat", sans-serif !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /*background: rgba(255, 255, 255);*/ /* frosted white */
    /*    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);*/
    /*    border-bottom: 1px solid rgba(0, 0, 0, 0.06);*/
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    transition: all 0.3s ease-in-out;
}

/*.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

    .logo img:hover {
        transform: scale(1.04);
    }*/
.logo {
    font-size: clamp(20px, 2.2vw, 30px);
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-left: 10vw;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .logo:hover {
        color: #c9a96e; /* subtle gold tone for luxury feel */
    }


/* =========================
   DESKTOP NAVIGATION
========================= */
.nav-desktop {
    display: flex;
    gap: 24px;
    overflow: visible;
    margin-right: 10vw;
}

    .nav-desktop a {
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 6px;
        color: var(--text-muted);
        transition: all 0.3s ease;
    }

        /* Active link */
        .nav-desktop a.active {
            color: #FFFFFF; /* active white */
            font-weight: 600 !important;
        }

        /* Hover */
        .nav-desktop a:hover {
            color: #FFFFFF;
        }


    /* =========================
   NAV UNDERLINE EFFECT
========================= */
    .nav-desktop > a::after,
    .nav-desktop .nav-item > a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 2px;
        border-radius: 2px;
        background-color: var(--accent);
        transform: translateX(-50%);
        transition: all 0.3s ease;
    }

    /* Hover (inactive only) */
    .nav-desktop > a:not(.active):hover::after,
    .nav-desktop .nav-item > a:not(.active):hover::after {
        width: 100%;
    }

    /* Active */
    .nav-desktop > a.active::after,
    .nav-desktop .nav-item > a.active::after {
        width: 100%;
        left: 0;
        transform: none;
    }

    .nav-desktop > a.active,
    .nav-desktop .nav-item > a.active {
        font-weight: 600;
    }

/* Header Scroll Adjust */
.site-header.scrolled {
    /*background: rgba(29, 43, 87, 0.88);*/ /* company color, softened */
    background: #FFFFFF;
    /*    backdrop-filter: blur(10px);*/
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

    .site-header.scrolled .header-inner {
        padding: 10px 20px;
        transition: all 0.5s ease-in-out;
    }



    .site-header.scrolled .nav-desktop a {
        color: #999; /* dark text on white background */
    }

        .site-header.scrolled .nav-desktop a.active,
        .site-header.scrolled .nav-desktop a:hover,
        .site-header.scrolled .logo {
            color: var(--accent); /* highlight active / hover on white bg */
            /*            background-color: rgba(0, 0, 0, 0.04);*/
        }

    .site-header.scrolled .contact-links {
        color: #f5f5f5;
    }

        .site-header.scrolled .contact-links:hover {
            color: var(--accent);
        }

    .site-header.scrolled .dropdown-menu a {
        color: #333;
        padding: 10px 14px; /* optional but recommended */
        transition: color 0.25s ease, background-color 0.25s ease;
    }

        .site-header.scrolled .dropdown-menu a:hover {
            color: var(--accent);
            background-color: rgba(0, 0, 0, 0.04);
        }


/* =========================
   DROPDOWN (DESKTOP)
========================= */
.has-dropdown {
    position: relative;
    display: inline-flex;
}

.dropdown-toggle::after {
    display: none;
}

/* Dropdown menu */
/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.98);
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    z-index: 1200;
    transition: all 0.25s ease;
    overflow: hidden;
}

    /* Accent top strip */
    .dropdown-menu::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--accent);
    }

/* Show dropdown */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Dropdown links */
.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--company-color);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

    /* Hover effect */
    .dropdown-menu a:hover {
        background: rgba(255, 0, 0, 0.05);
        color: var(--accent);
        padding-left: 22px;
    }

    /* Subtle divider */
    .dropdown-menu a:not(:last-child) {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

/* Hover open */
.has-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/*Arrow Animation*/
/* Align text + arrow */
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Arrow default state */
.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* =========================
   HEADER CONTACT (DESKTOP)
========================= */
.header-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-links {
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

    .contact-links:hover {
        color: var(--accent);
    }

    .contact-links i {
        margin-right: 6px;
        color: var(--accent);
    }

/* =========================
   CONTACT LINK UNDERLINE
========================= */
/*.header-contact .contact-links::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}*/

/* Hover */
/*.header-contact .contact-links:hover::after {
    width: 100%;
}*/



/* =========================
   HAMBURGER BUTTON
========================= */
.nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}


/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -80%;
    width: 80%;
    height: 100%;
    background: #111; 
    color: #fff;
    z-index: 2000;
    transition: left 0.4s ease;
}

    .mobile-menu.open {
        left: 0;
    }
.menu-header h3 {
    position: relative;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 40px;
}

    .menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 25px;
}

.mobile-menu nav a {
    display: block;
    padding: 14px 0;
    font-size: 20px;
    color: #ddd;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

    .mobile-menu nav a:hover {
        color: #C9A96E;
        transform: translateX(5px);
    }

    .mobile-menu nav a.highlight {
        margin-top: 15px;
        padding: 12px;
        background: rgba(201,169,110,0.15);
        border: 1px solid #C9A96E;
        color: #C9A96E;
        border-radius: 6px;
        text-align: center;
    }

.mobile-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

    .mobile-footer a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        color: #ccc;
        text-decoration: none;
        font-size: 16px;
    }

        .mobile-footer a.insta i {
            font-size: 20px;
            background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
/* =========================
   MOBILE CONTACT
========================= */
.mobile-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

    .mobile-contact a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
        color: #333;
        text-decoration: none;
    }


/* =========================
   OVERLAY
========================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: none;
    z-index: 1500;
}

    .menu-overlay.show {
        display: block;
    }


/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 768px) {

    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .header-contact {
        display: none;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-left: 10px;
        margin-top: 8px;
        padding: 10px
    }

        .dropdown-menu.open {
            display: block;
        }

    .logo {
        margin-left: 0;
    }
}



/* ===== HERO ===== */
.hero-canvas {
    height: 100vh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}

.hero-content {
    margin-top: 20px;
    /*    font-family: "Manrope", sans-serif;*/
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-content {
    opacity: 1;
}

.hero-tagline {
    display: inline-block;
    margin-bottom: 52px;
    text-transform: uppercase;
    letter-spacing: 4px;
    word-spacing: 1px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(36px, 6vw, 80px) !important;
    font-weight: 700;
    /*    line-height: 91.8px;*/
}

.accent-text {
    color: var(--accent);
    font-weight: 400
}

.accent-word {
    font-size: 1em;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #D4B57A;
    letter-spacing: 0.5px;
}

.hero-content p {
    font-size: clamp(14px, 1.2vw, 16px);
    margin-top: 25px;
    margin-bottom: 10px;
}

.hero-text-wrapper {
    position: relative;
}

.hero-text {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .hero-text p {
        /*        font-family: "Montserrat", sans-serif !important;*/
        font-family: "Lora", serif;
        font-size: 20px;
        font-style: italic;
    }

    .hero-text.active {
        opacity: 1;
        transform: translateY(-25px);
        position: relative;
    }

    .hero-text.exit {
        opacity: 0;
        transform: translateY(-55px); /* exit further up */
    }


/*Base hidden state*/
/*.hero-content.is-animated .hero-tagline,
.hero-content.is-animated .hero-text-wrapper,
.hero-content.is-animated .btn-primary-animated,
.hero-content.is-animated .btn-secondary-animated {
    opacity: 0;
    pointer-events: none;
}*/

/*Tagline*/
/*.hero-tagline.enter {
    animation: taglineEnter 0.6s ease forwards;
}

.hero-tagline.exit {
    animation: taglineExit 0.6s ease forwards;
}

@keyframes taglineEnter {
    from {
        opacity: 0;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(-20px);
    }
}

@keyframes taglineExit {
    from {
        opacity: 1;
        transform: translateY(-20px);
    }

    to {
        opacity: 0;
        transform: translateY(-45px);
    }
}*/

/*Text Wrapper*/
/*.hero-text-wrapper.enter {
    animation: textEnter 0.6s ease forwards;
}

.hero-text-wrapper.exit {
    animation: textExit 0.6s ease forwards;
}

@keyframes textEnter {
    from {
        opacity: 0;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(-15px);
    }
}

@keyframes textExit {
    from {
        opacity: 1;
        transform: translateY(-15px);
    }

    to {
        opacity: 0;
        transform: translateY(-40px);
    }
}*/

/*Button Primary Animation*/
/*.hero-content .btn-primary-animated.enter {
    animation: btnEnter 0.6s ease forwards;
    pointer-events: auto;
}

.hero-content .btn-primary-animated.exit {
    animation: btnExit 0.6s ease forwards;
    pointer-events: none;
}

@keyframes btnEnter {
    from {
        opacity: 0;
        transform: translateX(0);
    }

    to {
        opacity: 1;
        transform: translateX(8px);
    }
}

@keyframes btnExit {
    from {
        opacity: 1;
        transform: translateX(8px);
    }

    to {
        opacity: 0;
        transform: translateX(0);
    }
}*/

/*Button Secondary Animation*/
/*.hero-content .btn-secondary-animated.enter {
    animation: btnsecEnter 0.6s ease forwards;
    pointer-events: auto;
}

.hero-content .btn-secondary-animated.exit {
    animation: btnsecExit 0.6s ease forwards;
    pointer-events: none;
}

@keyframes btnsecEnter {
    from {
        opacity: 0;
        transform: translateX(0);
    }

    to {
        opacity: 1;
        transform: translateX(-8px);
    }
}

@keyframes btnsecExit {
    from {
        opacity: 1;
        transform: translateX(-8px);
    }

    to {
        opacity: 0;
        transform: translateX(0);
    }
}*/

/*====== Button Primary ======*/

.btn-primary-animated {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 28px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s ease;
    font-family: "Montserrat", sans-serif !important;
}



    .btn-primary-animated:hover {
        transform: translateY(-3px);
        border: 1px solid var(--accent);
    }

    .btn-primary-animated::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #fff;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
        z-index: 0;
    }

    .btn-primary-animated:hover::before {
        transform: scaleX(1);
    }

    .btn-primary-animated .btn-text,
    .btn-primary-animated .btn-arrow {
        position: relative;
        z-index: 1;
        transition: color 0.4s ease, transform 0.4s ease;
    }

    .btn-primary-animated:hover .btn-text {
        color: #1d2b57;
    }

    /* Arrow animation */
    .btn-primary-animated .btn-arrow {
        display: inline-block;
        font-size: 20px;
        opacity: 1;
        color: #fff;
    }

    .btn-primary-animated:hover .btn-arrow {
        transform: translateX(10px);
        opacity: 1;
        color: var(--accent);
    }

/* ============================= */
/* Explore Products CTA Button   */
/* ============================= */

.btn-secondary-animated {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 28px;
    background: transparent;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s ease;
    font-family: "Montserrat", sans-serif !important;
}

    /* Subtle lift */
    .btn-secondary-animated:hover {
        transform: translateY(-3px);
        border-color: var(--accent);
    }

    /* Sliding background */
    .btn-secondary-animated::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
        z-index: 0;
    }

    .btn-secondary-animated:hover::before {
        transform: scaleX(1);
    }

    /* Text & Arrow */
    .btn-secondary-animated .btn-secondary-text,
    .btn-secondary-animated .btn-secondary-arrow {
        position: relative;
        z-index: 1;
        transition: all 0.4s ease;
    }

    /* Text color change */
    .btn-secondary-animated:hover .btn-secondary-text {
        color: #fff;
    }

    /* Arrow styling */
    .btn-secondary-animated .btn-secondary-arrow {
        display: inline-block;
        font-size: 18px;
        color: #fff;
    }

    /* Arrow move */
    .btn-secondary-animated:hover .btn-secondary-arrow {
        transform: translateX(8px);
    }

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center
}
/* ===== HERO SLIDER ===== */
.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 1.2s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
    }



/* ===== HERO HIGHLIGHTS (bottom-centered) ===== */
.hero-highlights {
    position: absolute;
    bottom: 20px; /* distance from hero bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 50px;
    z-index: 5;
    justify-content: center;
    max-width: 100%;
    overflow-x: hidden
}


    .hero-highlights .highlight-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        border-radius: 8px;
    }

    .hero-highlights .highlight-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--accent);
    }

        .hero-highlights .highlight-icon i {
            font-size: 16px;
            color: #fff;
        }

    .hero-highlights h3 {
        font-family: "Manrope", sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        margin: 0;
        text-align: center;
        white-space: nowrap;
    }




/* ===== RESPONSIVE ===== */

/*Smaller PC Screens*/
@media (min-width: 992px) and (max-width: 1366px) {
    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-tagline {
        font-size: 13px;
        letter-spacing: 3px;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 768px) {
    @keyframes btnEnter {
        from {
            opacity: 0;
            transform: translateX(0);
        }

        to {
            opacity: 1;
            transform: translateX(2px);
        }
    }

    @keyframes btnExit {
        from {
            opacity: 1;
            transform: translateX(2px);
        }

        to {
            opacity: 0;
            transform: translateX(0);
        }
    }

    @keyframes btnsecEnter {
        from {
            opacity: 0;
            transform: translateX(0);
        }

        to {
            opacity: 1;
            transform: translateX(-2px);
        }
    }

    @keyframes btnsecExit {
        from {
            opacity: 1;
            transform: translateX(-2px);
        }

        to {
            opacity: 0;
            transform: translateX(0);
        }
    }

    .hero-text.active h1 {
        text-align: center !important;
    }

    .hero-content {
        margin-top: 70px;
    }

    .header-wrap {
        flex-wrap: nowrap;
        height: 80px;
        padding: 10px 20px;
    }

    .main-nav {
        position: static;
    }

        .main-nav .nav-list {
            position: absolute;
            top: 80px; /* height of header */
            left: 0;
            background: #ffffff;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            padding: 10px 20px;
            z-index: 998;
        }

        .main-nav .nav-list {
            flex-direction: column;
            gap: 0;
            width: 100%;
            display: none; /* hidden by default, toggle via JS */
        }

            .main-nav .nav-list li {
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

                .main-nav .nav-list li a {
                    padding: 12px 0;
                }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1000;
    }

        .nav-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background: #222;
            transition: 0.3s;
        }

    .main-nav.open .nav-list {
        display: flex;
    }

    /* Submenu on mobile */
    .has-submenu .submenu {
        position: relative;
        top: 0;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
    }

    .hero-content {
        text-align: center;
    }

        .hero-content h1 {
            font-size: 36px;
        }

        .hero-content p {
            font-size: 15px;
        }

    .btn-primary {
        padding: 12px 28px;
        font-size: 15px;
    }
    /*Highlights*/

    .highlights {
        padding: 40px 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlight-icon {
        width: 64px;
        height: 64px;
    }

        .highlight-icon i {
            font-size: 24px;
        }

    .highlight-item h3 {
        font-size: 18px;
    }
    /*.hero-highlights {
        flex-wrap: wrap;
        row-gap: 20px;
    }

        .hero-highlights .highlight-item {
            width: 45%;
        }
    .hero-highlights {
        bottom: 16px;
        gap: 16px;
        padding: 8px 14px;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .hero-highlight i,
        .hero-highlight svg {
            font-size: 18px;*/ /* reduce icon size */
    /*}

        .hero-highlight span {
            font-size: 12px;
            line-height: 1.2;
        }*/
    .hero-highlights {
        position: absolute;
        bottom: 14px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 14px;
        padding: 6px 10px;
        flex-wrap: nowrap; /* 🔒 critical */
    }

        .hero-highlights .highlight-item {
            padding: 4px 6px;
        }

        .hero-highlights .highlight-icon {
            width: 24px;
            height: 24px;
        }

            .hero-highlights .highlight-icon i {
                font-size: 12px;
            }

        .hero-highlights h3 {
            font-size: 11px;
            font-weight: 600;
        }

    .hero-buttons {
        display: flex;
        flex-direction: column
    }
}

@media (max-width: 480px) {
    .hero-highlights {
        gap: 10px;
        bottom: 10px;
    }

        .hero-highlights h3 {
            font-size: 10px;
        }
}



/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn-primary {
        padding: 13px 32px;
        font-size: 16px;
    }
}

/* Desktop adjustments (992px+) */
@media (min-width: 992px) {
    .main-nav .nav-list {
        display: flex !important;
    }
}

/* ===== MINI ABOUT ===== */

/* ===== BASE ===== */
.about-minimal {
    padding: 110px 0;
    background: var(--primary-light);
}

    .about-minimal .container {
        max-width: 1400px;
    }

.about-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header & Animations*/
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 10px;
}

/*.section-tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 20px;
}*/

.section-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 49px;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 57.2px;
    color: #121212;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 18px auto 0;
}

/* Hidden state */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    /* Visible state */
    .section-animate.show {
        opacity: 1;
        transform: translateY(0);
    }

.section-header.section-animate .section-tag {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-header.section-animate h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

/* When visible */
.section-header.section-animate.show .section-tag,
.section-header.section-animate.show h2 {
    opacity: 1;
    transform: translateY(0);
}

/* Tag */


/* Heading */
.about-minimal h2 {
    font-family: 'Cormorant Garamond', serif;
    /*    font-family: "Lora", serif !important;*/
    /*    font-family: "Montserrat", sans-serif;*/
    font-size: 49px;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

/* Paragraphs */
.about-text {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 18px;
}

    .about-text.subtle {
        color: var(--text-muted);
    }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* GRID LAYOUT */
.about-image-grid {
    display: grid;
    /* Creates 2 columns */
    grid-template-columns: 1fr 1fr;
    /* Creates the row heights seen in your photo */
    grid-template-rows: 180px 100px 200px;
    gap: 15px;
    grid-template-areas:
        "tall wide"
        "tall large"
        "square large";
}

.about-block {
    margin-top: 25px;
}

.about-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C9A96E; /* your gold accent */
    margin-bottom: 8px;
}

.about-highlights {
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .about-highlights span {
        font-size: 13px;
        padding: 8px 14px;
        border: 1px solid rgba(201, 169, 110, 0.3);
        border-radius: 20px;
        background: rgba(201, 169, 110, 0.08);
        color: #1A1A1A;
    }

.grid-item {
    overflow: hidden;
    border-radius: 16px;
}

    .grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    /* Hover effect for extra flair */
    .grid-item:hover img {
        transform: scale(1.05);
    }

/* Assigning items to the grid areas */
.tall {
    grid-area: tall;
}

.wide {
    grid-area: wide;
}

.square {
    grid-area: square;
}

.large {
    grid-area: large;
}

@media (max-width: 1400px) {

    .about-minimal .container {
        max-width: 1100px;
    }
}

@media (max-width: 991px) {
    .about-image-grid {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    /* Stack them into 2 columns on mobile or 1 column if you prefer */
    .about-image-grid {
        margin-top: 20px;
        grid-template-rows: 150px 150px;
        grid-template-areas:
            "tall wide"
            "square large";
    }

    .grid-item.tall, .grid-item.large {
        grid-row: span 1; /* Resetting heights for mobile balance */
    }
}



/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 300px;
    }

    .about-image-grid {
        margin-top: 20px;
        grid-template-rows: 150px 150px;
        grid-template-areas:
            "tall wide"
            "square large";
    }

    .grid-item.tall, .grid-item.large {
        grid-row: span 1; /* Resetting heights for mobile balance */
    }
}

@media (max-width: 991px) {

    .about-minimal {
        padding: 90px 0;
    }

    .about-wrap {
        max-width: 600px;
    }

    .about-minimal h2 {
        font-size: 34px;
    }

    .about-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {

    .about-wrap {
        max-width: 520px;
    }

    .about-minimal h2 {
        font-size: 30px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.75;
    }

    .about-minimal {
        padding: 80px 0;
    }
}

/* ===== KEY POSTS ===== */
.insta-section {
    padding: 80px 0;
    text-align: center;
    background: #fafafa;
}

    .insta-section .container {
        max-width: 1400px;
    }

.insta-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 600;
    margin-bottom: 10px;
}

.insta-subtext {
    font-size: clamp(14px, 2vw, 16px);
    color: #6f6f6f;
    margin-bottom: 40px;
    letter-spacing: 0.3px;
}

/* Instagram Gradient Text */
.insta-link {
    font-weight: 500;
    text-decoration: none;
    background: linear-gradient( 45deg, #f58529, #dd2a7b, #8134af, #515bd4 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s ease;
}

    .insta-link:hover {
        opacity: 0.7;
    }

.insta-subtext a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.insta-grid {
    display: grid;
    /*    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.insta-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

    .insta-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .insta-card:hover img {
        transform: scale(1.05);
    }

    /* Overlay */
    .insta-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.2);
        opacity: 0;
        transition: 0.4s;
    }

    .insta-card:hover::after {
        opacity: 1;
    }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* Stronger glass effect */
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    /* Glow for visibility */
    box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 0 2px rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    /* Triangle */
    .play-btn::before {
        content: '';
        border-left: 16px solid white;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        margin-left: 3px;
    }

/* Hover effect */
.insta-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1);
    background: rgba(0, 0, 0, 0.6);
}

/* ===== CLIENT SLIDER ===== */
.partners-section {
    padding: 120px 0;
    background: var(--primary-light);
}

    .partners-section .section-header {
        text-align: center;
        margin-bottom: 70px;
    }

/* Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
}


/* Card */
.partner-card {
    text-align: center;
    padding: 20px;
    transition: all 0.4s ease;
}

    /* Brand Name */
    .partner-card h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 6px;
        color: var(--primary-dark);
        letter-spacing: 0.5px;
    }

    /* Locations */
    .partner-card p {
        font-size: 13px;
        color: var(--text-muted);
        letter-spacing: 0.8px;
    }

    .partner-card img {
        height: 50px;
        margin-bottom: 18px;
        object-fit: contain;
        opacity: 0.7;
        filter: grayscale(100%);
        transition: all 0.4s ease;
    }

    .partner-card:hover img {
        opacity: 1;
        filter: grayscale(0%);
        transform: scale(1.05);
    }

    .partner-card:hover h3 {
        letter-spacing: 1px;
    }

    .partner-card:hover {
        transform: translateY(-6px);
    }
/* ANIMATIONS */
.insta-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    /* When visible */
    .insta-card.show {
        opacity: 1;
        transform: translateY(0);
    }

    .insta-card:nth-child(1) {
        transition-delay: 0.1s;
    }

    .insta-card:nth-child(2) {
        transition-delay: 0.2s;
    }

    .insta-card:nth-child(3) {
        transition-delay: 0.3s;
    }

    .insta-card:nth-child(4) {
        transition-delay: 0.4s;
    }

    .insta-card:nth-child(5) {
        transition-delay: 0.5s;
    }

    .insta-card:nth-child(6) {
        transition-delay: 0.6s;
    }

    .insta-card:nth-child(7) {
        transition-delay: 0.7s;
    }

    .insta-card:nth-child(8) {
        transition-delay: 0.8s;
    }


@media (max-width: 1400px) {

    .insta-section .container {
        max-width: 1100px;
    }
}

    @media (max-width: 991px) {

        .partners-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }
    }

    @media (max-width: 768px) {
        .insta-grid {
            grid-template-columns: 1fr;
        }

        .partners-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .partner-card {
            text-align: center;
        }
    }


    /* ===== FOOTER ===== */
    /* Container max width */
    .site-footer .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* ===== FOOTER ===== */
    .site-footer {
        background: #1a1410;
        color: #eae7df;
        padding: 75px 0 60px;
        font-family: "Manrope", sans-serif;
    }

        .site-footer .container {
            max-width: 1600px;
        }

    .footer-brand {
        margin-bottom: 40px;
    }

    .site-footer .logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 26px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--accent);
        text-decoration: none;
        display: inline-block;
        position: relative;
        margin-left: 0;
    }

        /* subtle underline glow */
        .site-footer .logo::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 40%;
            height: 1px;
            background: var(--accent);
            opacity: 0.5;
        }

    /* Layout */
    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 0.6fr;
        gap: 100px;
        align-items: start;
    }

    /* Headline */
    .footer-left h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: 52px;
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: 24px;
        letter-spacing: 1px;
    }

    /* Tagline */
    .footer-tagline {
        font-family: "Montserrat", sans-serif !important;
        font-size: 15px;
        line-height: 1.9;
        color: rgba(255,255,255,0.6);
        max-width: 440px;
        margin-bottom: 40px;
    }

    /* Contact */
    .footer-contact p {
        margin-bottom: 10px;
        font-size: 14px;
        letter-spacing: 0.5px;
        color: rgba(255,255,255,0.65);
    }

    .footer-card-content .logo {
        margin-bottom: 40px;
    }

    /* Actions container */
    .footer-actions {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    /* Icon Button */
    .footer-icon-btn {
        flex: 1;
        min-width: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(10px);
        text-decoration: none;
        color: white;
        transition: all 0.3s ease;
        border: 1px solid rgba(255,255,255,0.08);
    }

        /* Instagram button */
        .footer-icon-btn.instagram i {
            font-size: 35px;
            background: linear-gradient( 45deg, #f58529, #dd2a7b, #8134af, #515bd4 );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-icon-btn.instagram:hover {
            transform: translateY(-4px);
            border-color: rgba(221, 42, 123, 0.4);
        }
        /* Icon */
        .footer-icon-btn i {
            font-size: 28px;
            margin-bottom: 10px;
        }

        /* Text */
        .footer-icon-btn span {
            font-size: 13px;
            letter-spacing: 0.5px;
            font-family: "Manrope", sans-serif !important;
        }

        /* Hover */
        .footer-icon-btn:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.12);
            color: #FFFFFF
        }

        /* Highlight CTA */
        .footer-icon-btn.highlight {
            background: linear-gradient(45deg, #caa66a, #e6c78f);
            color: #1a1a1a;
            font-weight: 500;
        }

            .footer-icon-btn.highlight:hover {
                transform: translateY(-4px) scale(1.02);
                box-shadow: 0 8px 20px rgba(202,166,106,0.3);
            }

    /* links */
    .footer-card-link {
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        margin-bottom: 10px;
        transition: all 0.3s ease;
    }

        /* premium hover */
        .footer-card-link:hover {
            color: var(--accent);
            transform: translateX(4px);
        }

        /* highlight CTA */
        .footer-card-link.highlight {
            margin-top: 10px;
            font-size: 15px;
            opacity: 0.85;
        }

    /* Links */
    .footer-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        text-decoration: none;
        color: #fff;
        font-size: 15px;
        position: relative;
        transition: all 0.3s ease;
    }

        .footer-link:hover {
            color: var(--accent);
        }

    /* IG Icon */
    .ig-icon {
        font-size: 14px;
        opacity: 0.8;
    }

    /* Divider */
    .footer-divider {
        height: 2px;
        background: linear-gradient( to right, transparent, rgba(255,255,255,0.08), transparent );
        margin: 0 0 40px;
    }

    /* Bottom */
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

        /* Copyright */
        .footer-bottom p {
            font-family: "Manrope", sans-serif !important;
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            line-height: 1.6;
        }

        .footer-bottom .credit a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            margin-left: 5px;
            transition: all 0.3s ease;
        }

            .footer-bottom .credit a:hover {
                color: var(--accent);
            }

    /* Nav */
    .footer-nav {
        display: flex;
        gap: 30px;
    }

        .footer-nav a {
            font-family: "Manrope", sans-serif !important;
            text-decoration: none;
            color: rgba(255,255,255,0.65);
            font-size: 13px;
            position: relative;
            transition: all 0.3s ease;
        }

            /* Hover animation for breadcrumbs */
            .footer-nav a::after {
                content: "";
                position: absolute;
                bottom: -4px;
                left: 50%;
                transform: translateX(-50%);
                width: 0%;
                height: 1px;
                background: var(--accent);
                transition: width 0.3s ease;
            }

            .footer-nav a:hover {
                color: var(--accent);
            }

                .footer-nav a:hover::after {
                    width: 100%;
                }

@media (max-width: 1400px) {

    .site-footer .container {
        max-width: 1200px;
    }
}

    /* Responsive */
    @media (max-width: 991px) {

        .footer-left h2 {
            font-size: 36px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .footer-nav {
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
    }

    /*================== ABOUT US PAGE ======================*/
    /* =========================
   About Page – Hero Section
   ========================= */

    .about-hero {
        position: relative;
        height: 60vh;
        min-height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: cover;
        background-position: center;
        font-family: "Manrope", sans-serif;
    }

    .about-hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
    }

    .about-hero-content {
        position: relative;
        text-align: left;
        width: 60vw;
        color: #fff;
        padding: 0 16px;
        /*    padding-left: clamp(20px, 6vw, 90px);*/
        max-width: 900px;
    }

        .about-hero-content h1 {
            font-size: clamp(2.4rem, 5vw, 3.6rem);
            font-weight: 600;
            margin-bottom: 10px;
        }

    /* About Hero – spacing aligned with Home sections */
    .about-hero-inner {
        width: 100%;
        max-width: 1200px; /* SAME value used across home sections */
        margin: 60px auto 0 auto;
        padding: 0 24px; /* SAME side gap as home */
    }


    /* Breadcrumb */
    .about-breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin-top: 40px !important;
    }

    .breadcrumb-dot {
        position: relative;
        width: 6px;
        height: 6px;
    }

        .breadcrumb-dot::after {
            content: "";
            position: absolute;
            width: 6px;
            height: 6px;
            background: #E5D3A3;
            border-radius: 50%;
        }


    .about-breadcrumb a {
        color: #E5D3A3;
        text-decoration: none;
    }

        .about-breadcrumb a:hover {
            text-decoration: underline;
            color: #E5D3A3;
        }

    .about-breadcrumb span {
        margin: 0 6px;
    }

    @media (max-width: 992px) {
        .about-hero {
            height: 60vh;
        }

        .about-breadcrumb {
            justify-content: center;
        }

        .about-hero-content h1 {
            font-size: 48px;
        }
    }

    @media (max-width: 768px) {
        .about-hero {
            height: auto;
            padding: 120px 0 80px;
        }

        .about-hero-content {
            padding-left: 24px;
            padding-right: 24px;
            text-align: center;
        }

            .about-hero-content h1 {
                font-size: 38px;
            }

        .about-hero-inner {
            padding: 0 20px;
        }
    }

    @media (max-width: 480px) {
        .about-hero-content h1 {
            font-size: 32px;
        }

        /*    .about-breadcrumb {
        font-size: 13px;
    }*/
        .about-hero-inner {
            padding: 0 16px;
        }
    }

    /* ====== HOW WE ADD VALUE ======*/
    .value-section {
        position: relative;
/*        background: url('/images/hero-1.jpg') center/cover no-repeat;*/
        background-attachment: fixed;
        padding: 140px 20px;
        color: #fff;
    }

    .value-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.9) );
    }

    .value-content {
        position: relative;
        max-width: 1100px;
        margin: auto;
        text-align: center;
        z-index: 2;
    }

    .value-heading {
        font-family: "Cormorant Garamond", serif;
        font-size: 56px;
        margin: 20px 0;
        line-height: 1.2;
        font-weight: 500;
    }

        .value-heading::after {
            content: "";
            display: block;
            width: 60px;
            height: 2px;
            background: var(--accent);
            margin: 18px auto 0;
        }

    /* Text */
    .value-text {
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
        line-height: 28px;
        color: rgba(255,255,255,0.75);
        max-width: 800px;
        margin: 0 auto 18px;
    }

    /* Grid */
    .value-points {
        margin-top: 60px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Cards */
    .point {
        display: flex;
        align-items: center;
        gap: 14px;
        font-family: "Montserrat", sans-serif;
        padding: 18px 20px;
        font-size: 14px;
        letter-spacing: 0.5px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 8px;
        backdrop-filter: blur(6px);
        transition: all 0.3s ease;
    }

        /* ICON */
        .point svg {
            stroke: #FFFFFF;
            stroke-width: 1.5;
            flex-shrink: 0;
        }

        /* TEXT */
        .point span {
            color: rgba(255,255,255,0.85);
        }

        /* HOVER */
        .point:hover {
            background: rgba(201,169,110,0.12);
            border-color: var(--accent);
            transform: translateY(-3px);
        }

            /* ICON HOVER */
            .point:hover svg {
                stroke: var(--accent);
                transform: scale(1.1);
            }

    /* Mobile */
    @media (max-width: 768px) {
        .value-section {
            background-attachment: scroll;
            padding: 90px 20px;
        }

        .value-heading {
            font-size: 34px;
        }

        .value-text {
            font-size: 14px;
        }

        .value-points {
            grid-template-columns: 1fr;
        }
    }

    /*====== Client Privileges ======*/
    .privilege-section.light {
        padding: 100px 20px;
        background: #f8f8f8;
        color: #111;
    }

    .privilege-section .container {
        max-width: 1400px;
    }

    .privilege-section .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .privilege-section h2 {
        /*    font-family: "Cormorant Garamond", serif;*/
        font-family: "Playfair Display SC", serif;
        font-size: 49px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    /* GRID */
    .privilege-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    /* CARD */
    .privilege-card {
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .privilege-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        /* IMAGE */
        .privilege-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        /* DARK OVERLAY */
        .privilege-card .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient( to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.2) 100% );
            transition: 0.4s ease;
        }

    /* TEXT */
    .card-content {
        font-family: "Montserrat", sans-serif;
        position: absolute;
        bottom: 25px; /* instead of center */
        left: 25px;
        right: 25px;
        transform: none;
        text-align: left;
        color: #fff;
        font-size: 18px;
        line-height: 1.4;
        font-weight: 500;
        z-index: 2;
    }

        .card-content::before {
            content: "";
            display: block;
            width: 35px;
            height: 2px;
            background: #c9a96e;
            margin-bottom: 10px;
        }

    /* HOVER EFFECT */
    .privilege-card:hover img {
        transform: scale(1.05);
    }

    .privilege-card:hover .overlay {
        background: linear-gradient( to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2) );
    }

@media (max-width: 1400px) {

    .privilege-section .container {
        max-width: 1100px;
    }
}

    @media (max-width: 1024px) {
        .privilege-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .privilege-grid {
            grid-template-columns: 1fr;
        }

        .privilege-section h2 {
            font-size: 30px;
        }

        .privilege-card {
            height: 220px;
        }
    }

    /* ==== IS A GOOD FIT ==== */
    .fit-section {
        position: relative;
        padding: 140px 20px;
/*        background: url('/images/goodfit.jpg') center/cover no-repeat;*/
        background-attachment: fixed;
        color: #FFFFFF;
    }

    .fit-section-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.3) 100% );
    }

    .fit-container {
        position: relative;
        max-width: 1300px;
        margin: auto;
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    /* LEFT */
    .fit-left h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: 52px;
        font-weight: 400;
        margin: 15px 0 20px;
        letter-spacing: 1px;
    }

    .fit-intro {
        font-family: "Montserrat", sans-serif;
        font-size: 17px;
        color: rgba(255,255,255,0.85);
        line-height: 1.6;
        max-width: 500px;
    }

    .fit-left {
        z-index: 10
    }
    /* RIGHT */
    .fit-right {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .fit-line {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 16px 18px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }

        .fit-line:hover {
            transform: translateX(6px);
            /*        background: rgba(255,255,255,0.1);*/
            background: var(--accent);
        }

            .fit-line:hover svg {
                stroke: #FFFFFF;
                transform: scale(1.1);
            }

        /* ICON */
        .fit-line svg {
            font-size: 18px;
            stroke: var(--accent);
            min-width: 28px;
        }

        /* TEXT */
        .fit-line span {
            font-family: "Montserrat", sans-serif;
            font-size: 15.5px;
            color: rgba(255,255,255,0.9);
        }


@media (max-width: 1400px) {

    .fit-container {
        max-width: 1100px;
    }
}

    @media (max-width: 768px) {

        .fit-container {
            grid-template-columns: 1fr;
        }

        .fit-left h2 {
            font-size: 36px;
        }

        .fit-line {
            font-size: 14px;
        }
    }
    /* ======== PORTFOLIO SECTION ========= */

    .portfolio-section {
        padding: 100px 6%;
        background: #FFFFFF;
    }

        .portfolio-section .container {
            max-width: 1400px;
        }

    .property-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Card */
    .property-card {
        position: relative;
        overflow: hidden;
        border-radius: 6px;
        cursor: pointer;
    }

        /* Image */
        .property-card img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

    /* Overlay */
    .property-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 25px;
        background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
        color: #fff;
        transform: translateY(40px);
        opacity: 0;
        transition: all 0.4s ease;
    }

        .property-overlay h3 {
            /*        font-family: "Cormorant Garamond", serif;*/
            font-family: "Montserrat", sans-serif;
            font-size: 28px;
            margin-bottom: 5px;
        }

        .property-overlay p {
            font-size: 18px;
            letter-spacing: 1px;
            color: #cfcfcf;
        }

    /* Hover Effects */
    .property-card:hover img {
        transform: scale(1.08);
    }

    .property-card:hover .property-overlay {
        transform: translateY(0);
        opacity: 1;
    }

    /* Special Wide Card */
    .wide-card {
        grid-column: span 2;
    }

    /* ========================= */
    /* RESPONSIVE */
    /* ========================= */

@media (max-width: 1400px) {

    .portfolio-section .container {
        max-width: 1100px;
    }
}

    @media (max-width: 992px) {
        .property-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .wide-card {
            grid-column: span 2;
        }
    }

    @media (max-width: 600px) {
        .property-grid {
            grid-template-columns: 1fr;
        }

        .wide-card {
            grid-column: span 1;
        }

        .property-card img {
            height: 300px;
        }

        .property-overlay {
            transform: translateY(0);
            opacity: 1;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 15px;
        }

            .property-overlay h3 {
                font-size: 20px;
            }

            .property-overlay p {
                font-size: 14px;
            }
    }

    /* ===== Portfolio: Reels Section ====== */

    .portfolio-reels {
        padding: 100px 6%;
        position: relative;
        background: url('../images/image-asset.jpg') center/cover no-repeat;
    }

        .portfolio-reels .container {
            max-width: 1400px;
        }
        /* Soft overlay */
        .portfolio-reels::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.75); /* light luxury feel */
            backdrop-filter: blur(6px);
        }

        /* Keep content above overlay */
        .portfolio-reels .container {
            position: relative;
            z-index: 2;
        }

    .portfolio-header {
        text-align: center;
    }

        .portfolio-header h2 {
            color: #111;
        }

    .portfolio-tag {
        font-size: 13px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #a8894f;
        display: inline-block;
        margin-bottom: 10px;
    }

    .portfolio-subtext {
        font-family: "Montserrat", sans-serif;
        text-align: center;
        color: #555;
        margin-bottom: 50px;
        font-size: 15px;
    }

    .portfolio-link {
        color: #c8a96a;
        text-decoration: none;
    }

    /* GRID */
    .portfolio-reel-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    /* CARD */
    .portfolio-reel-card {
        position: relative;
        overflow: hidden;
        border-radius: 6px;
        cursor: pointer;
    }

        .portfolio-reel-card img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

    /* OVERLAY */
    .portfolio-reel-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(2px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.4s ease;
    }

    /* PLAY BUTTON */
    .portfolio-play-btn {
        width: 60px;
        height: 60px;
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 50%;
        position: relative;
    }

        .portfolio-play-btn::after {
            content: '';
            position: absolute;
            left: 24px;
            top: 20px;
            border-left: 14px solid #fff;
            border-top: 9px solid transparent;
            border-bottom: 9px solid transparent;
        }

    /* HOVER */
    .portfolio-reel-card:hover img {
        transform: scale(1.08);
    }

    .portfolio-reel-card:hover .portfolio-reel-overlay {
        opacity: 1;
    }

    /* MODAL */
    .portfolio-modal {
        background: #000;
        border-radius: 10px;
        overflow: hidden;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .portfolio-reel-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .portfolio-reel-grid {
            grid-template-columns: 1fr;
        }

        .portfolio-reel-card img {
            height: 260px;
        }
    }


    /* ======== CONTACT FORM SECTION ========= */
    .contact-form-section {
        padding: 90px 20px;
        background: #fdfdfd;
        margin-bottom: 0;
        overflow: hidden
    }

    iframe {
        display: block;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .form-row-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 18px;
    }

    .form-full {
        grid-column: span 2;
    }

    .form-row,
    .form-row-3 {
        margin-bottom: 5px;
    }

    /* MAIN GRID */
    .contact-form-container {
        max-width: 1100px;
        margin: auto;
        display: grid;
        /*    grid-template-columns: 1fr 1.4fr;*/
        grid-template-columns: 1fr;
        gap: 60px;
        align-items: center;
    }

    /* LEFT INFO */
    .contact-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--accent);
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .contact-info h1 {
        font-size: 46px;
        font-weight: 300;
        color: var(--company-color);
        line-height: 1.1;
    }

        .contact-info h1 span {
            font-weight: 700;
        }

    .contact-description {
        margin: 20px 0 40px;
        max-width: 420px;
        color: #666;
        line-height: 1.6;
        font-family: "Montserrat", sans-serif !important;
    }

    /* CONTACT ITEMS */
    .contact-item {
        display: flex;
        gap: 20px;
        padding: 22px 0;
        border-bottom: 1px solid #eee;
    }

        .contact-item:last-child {
            border-bottom: none;
        }

    .icon-box {
        width: 55px;
        height: 55px;
        color: #fff;
        border-radius: 12px;
        border: 2px solid var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        /*    box-shadow: 0 10px 20px rgba(0, 94, 255, 0.25);*/
    }

        .icon-box i {
            color: var(--accent);
        }

    .contact-item h4 {
        font-size: 18px;
        color: #222;
        margin-bottom: 4px;
    }

    .contact-item p {
        font-size: 14px;
        color: #777;
        font-family: "Montserrat", sans-serif !important;
    }

    /* FORM CARD */
    .contact-form-card {
        background: #fff;
        padding: 50px;
        border-radius: 40px;
        border: 1px solid #f0f0f0;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
        width: 100%;
        max-width: 100%;
    }


        .contact-form-card h1 {
            font-size: 46px;
            font-weight: 300;
            margin-bottom: 30px;
            color: var(--company-color);
        }

            .contact-form-card h1 span {
                font-weight: 700;
                color: var(--accent)
            }

    /* FORM */
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .contact-form-card input,
    .contact-form-card textarea {
        width: 100%;
        padding: 15px 20px;
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        font-size: 15px;
        margin-bottom: 15px;
        outline: none;
        transition: 0.3s;
        font-family: "Montserrat", sans-serif !important;
    }

        .contact-form-card input:focus,
        .contact-form-card textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(225, 37, 27, 0.18);
        }

    .contact-form-card textarea {
        resize: none;
        height: 120px;
    }

    .contact-form-card select {
        width: 100%;
        padding: 15px 20px;
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        font-size: 15px;
        margin-bottom: 15px;
        outline: none;
        transition: 0.3s;
        font-family: "Montserrat", sans-serif !important;
        background-color: #fff;
        color: #333;
        /* Remove default arrow */
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        /* Custom arrow */
        background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 18px center;
        background-size: 16px;
    }

        .contact-form-card select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(225, 37, 27, 0.18);
        }

        .contact-form-card select:invalid {
            color: #999;
        }

    /* BUTTON */
    .btn-submit {
        margin-top: 10px;
        padding: 12px 30px;
        background: rgba(255, 255, 255);
        border: 2px solid var(--accent);
        border-radius: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        color: var(--company-color);
    }

        .btn-submit:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }

    .text-danger {
        display: block;
        font-size: 13px;
        /*    margin-top: -8px;*/
        margin-bottom: 12px;
        color: #dc3545;
        font-family: "Montserrat", sans-serif !important;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .contact-form-card input,
    .contact-form-card textarea {
        margin-bottom: 0;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {

        .contact-form-container {
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 0 10px;
        }

        .contact-info h1,
        .contact-form-card h1 {
            font-size: 34px;
        }

        .contact-form-card {
            padding: 30px 25px;
            border-radius: 24px;
        }

        .contact-description {
            max-width: 100%;
        }


        .captcha-wrapper {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

        .g-recaptcha {
            transform: scale(0.85);
            -webkit-transform: scale(0.85);
            transform-origin: 0 0;
            -webkit-transform-origin: 0 0;
        }
    }

    @media (max-width: 768px) {
        .form-row,
        .form-row-3 {
            grid-template-columns: 1fr;
        }

        .captcha-wrapper {
            transform: scale(0.85);
            transform-origin: left top;
        }
    }
