
/* =========================================================
   PAYAL AGARWAL
   PREMIUM GLOSSY HEADER
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
    --header-bg: #080808;

    --glass-bg: rgba(22, 22, 22, 0.78);
    --glass-bg-hover: rgba(255, 255, 255, 0.055);

    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-border-light: rgba(255, 255, 255, 0.15);

    --gold: #c9a45c;
    --gold-light: #efd49a;
    --gold-dark: #9f7937;

    --white: #f7f5f0;
    --white-soft: #dedbd4;
    --muted: #9d9a93;

    --header-radius: 22px;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    padding: 18px 24px;

    background:
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.90) 65%,
            rgba(5, 5, 5, 0.70) 100%
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* =========================================================
   HEADER WRAPPER
   ========================================================= */

.header-wrap {
    position: relative;

    width: 100%;
    max-width: 1240px;

    min-height: 72px;

    margin: 0 auto;

    padding: 10px 12px 10px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.025)
        );

    border: 1px solid var(--glass-border);

    border-radius: var(--header-radius);

    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    overflow: visible;
}


/* Top glossy reflection */

.header-wrap::before {
    content: "";

    position: absolute;

    top: 0;
    left: 7%;

    width: 86%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.20),
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;

    color: var(--white);

    text-decoration: none;
}


/* Logo P */

.logo-mark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 14px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;
    font-weight: 600;

    color: #17120a;

    background:
        linear-gradient(
            135deg,
            #f4dda7 0%,
            #d8b36a 48%,
            #b88c45 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.28);

    box-shadow:
        0 8px 24px rgba(201, 164, 92, 0.18),
        inset 0 1px 2px rgba(255, 255, 255, 0.70);
}


/* Logo Text */

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;

    white-space: nowrap;
}


/* PAYAL */

.logo-text strong {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 2px;

    color: var(--white);
}


/* AGARWAL */

.logo-text small {
    display: block;

    margin-top: 5px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 3px;

    color: var(--gold-light);
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 3px;

    margin-left: auto;
    margin-right: auto;
}


/* Navigation Links */

.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 15px;

    color: var(--muted);

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 0.25px;

    border-radius: 12px;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


/* Navigation Hover */

.nav-link:hover {
    color: var(--white);

    background:
        rgba(255, 255, 255, 0.055);

    transform: translateY(-1px);
}


/* Active Navigation */

.nav-link.active {
    color: var(--gold-light);

    background:
        linear-gradient(
            135deg,
            rgba(216, 179, 106, 0.14),
            rgba(216, 179, 106, 0.035)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}


/* Active bottom glow */

.nav-link.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 4px;

    width: 18px;
    height: 2px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 10px rgba(216, 179, 106, 0.45);

    opacity: 0.85;
}


/* =========================================================
   WHATSAPP CONNECT BUTTON
   ========================================================= */

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-width: 104px;
    min-height: 44px;

    padding: 0 17px;

    flex-shrink: 0;

    color: #17120a;

    background:
        linear-gradient(
            135deg,
            var(--gold-light) 0%,
            var(--gold) 55%,
            var(--gold-dark) 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.28);

    border-radius: 13px;

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.7px;

    box-shadow:
        0 8px 24px rgba(201, 164, 92, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.70);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}


/* WhatsApp Icon */

.header-cta i {
    font-size: 16px;

    line-height: 1;
}


/* CTA Hover */

.header-cta:hover {
    color: #17120a;

    transform: translateY(-2px);

    filter: brightness(1.05);

    box-shadow:
        0 12px 30px rgba(201, 164, 92, 0.26),
        inset 0 1px 1px rgba(255, 255, 255, 0.78);
}


/* CTA Active */

.header-cta:active {
    transform: translateY(0);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    flex-shrink: 0;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );

    cursor: pointer;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07);

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}


/* Hamburger Lines */

.menu-toggle span {
    display: block;

    width: 19px;
    height: 1px;

    margin: 4px auto;

    background: var(--gold-light);

    border-radius: 2px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* Hamburger Hover */

.menu-toggle:hover {
    background:
        rgba(255, 255, 255, 0.07);

    border-color:
        rgba(216, 179, 106, 0.25);
}


/* =========================================================
   MOBILE MENU OPEN STATE
   ========================================================= */

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(5px)
        rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-5px)
        rotate(-45deg);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 1px;
    }

    .nav-link {
        padding: 0 11px;
        font-size: 12px;
    }

    .header-cta {
        min-width: 96px;
        padding: 0 14px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 850px) {

    .site-header {
        padding: 13px 16px;
    }


    .header-wrap {
        position: relative;

        min-height: 66px;

        padding:
            9px
            11px
            9px
            15px;

        border-radius: 19px;
    }


    /* Hide desktop navigation and CTA initially */

    .main-nav,
    .header-cta {
        display: none;
    }


    /* Mobile menu button */

    .menu-toggle {
        display: block;

        width: 44px;
        height: 44px;

        padding: 0;

        flex-shrink: 0;

        border: 1px solid rgba(255, 255, 255, 0.10);

        border-radius: 13px;

        background:
            linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.07),
                rgba(255, 255, 255, 0.025)
            );

        cursor: pointer;

        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.07);

        transition:
            background 0.25s ease,
            border-color 0.25s ease;
    }


    /* Hamburger lines */

    .menu-toggle span {
        display: block;

        width: 19px;
        height: 1px;

        margin: 4px auto;

        background: var(--gold-light);

        border-radius: 2px;

        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }


    /* Hamburger hover */

    .menu-toggle:hover {
        background:
            rgba(255, 255, 255, 0.07);

        border-color:
            rgba(216, 179, 106, 0.25);
    }


    /* =====================================================
       MOBILE DROPDOWN MENU
    ===================================================== */

    .main-nav.menu-open {
        display: flex;

        position: absolute;

        top: calc(100% + 10px);

        left: 0;
        right: 0;

        width: 100%;

        margin: 0;

        padding: 10px;

        flex-direction: column;
        align-items: stretch;

        gap: 4px;

        background:
            linear-gradient(
                145deg,
                rgba(27, 27, 27, 0.98),
                rgba(9, 9, 9, 0.97)
            );

        border: 1px solid rgba(255, 255, 255, 0.10);

        border-radius: 18px;

        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.50),
            inset 0 1px 0 rgba(255, 255, 255, 0.07);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }


    /* Mobile navigation links */

    .main-nav.menu-open .nav-link {
        width: 100%;

        min-height: 48px;

        display: flex;

        align-items: center;
        justify-content: flex-start;

        padding: 0 16px;

        border-radius: 12px;

        font-size: 13px;

        color: var(--muted);
    }


    .main-nav.menu-open .nav-link:hover {
        transform: none;

        color: var(--white);

        background:
            rgba(255, 255, 255, 0.055);
    }


    /* Active mobile link */

    .main-nav.menu-open .nav-link.active {
        color: var(--gold-light);

        background:
            linear-gradient(
                135deg,
                rgba(216, 179, 106, 0.15),
                rgba(216, 179, 106, 0.035)
            );
    }


    /* Active indicator */

    .main-nav.menu-open .nav-link.active::after {
        left: auto;
        right: 15px;

        bottom: 50%;

        width: 5px;
        height: 5px;

        transform: translateY(50%);

        border-radius: 50%;

        background: var(--gold);

        box-shadow:
            0 0 10px rgba(216, 179, 106, 0.45);
    }


    /* =====================================================
       HAMBURGER → CLOSE
    ===================================================== */

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(5px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-5px)
            rotate(-45deg);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .site-header {
        padding: 10px 11px;
    }

    .header-wrap {
        min-height: 62px;

        padding:
            8px
            9px
            8px
            13px;

        border-radius: 17px;
    }

    .logo-mark {
        width: 40px;
        height: 40px;

        border-radius: 12px;

        font-size: 21px;
    }

    .logo-text strong {
        font-size: 12px;

        letter-spacing: 1.7px;
    }

    .logo-text small {
        margin-top: 4px;

        font-size: 7px;

        letter-spacing: 2.5px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;

        border-radius: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .site-header {
        padding-left: 8px;
        padding-right: 8px;
    }

    .header-wrap {
        padding-left: 10px;
    }

    .logo-mark {
        width: 37px;
        height: 37px;

        border-radius: 11px;

        font-size: 19px;
    }

    .logo-text strong {
        font-size: 11px;
    }

    .logo-text small {
        font-size: 6.5px;
        letter-spacing: 2px;
    }

    .menu-toggle {
        width: 39px;
        height: 39px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .nav-link,
    .header-cta,
    .menu-toggle,
    .menu-toggle span {
        transition: none;
    }
}

/* =========================================================
   PREMIUM GLOSSY BANNER
========================================================= */

.premium-banner {
    width: 100%;
    padding: 18px 24px 0;
    background: #090909;
}


/* =========================================================
   BANNER WRAPPER
========================================================= */

.banner-wrap {
    position: relative;

    width: 100%;
    max-width: 1500px;
    height: 450px;

    margin: 0 auto;

    overflow: hidden;

    background: #111;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


/* =========================================================
   BANNER IMAGE
========================================================= */

.banner-image {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    max-width: none;
}


/* =========================================================
   DARK GLOSSY OVERLAY
========================================================= */

.banner-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.76) 0%,
            rgba(5, 5, 5, 0.48) 32%,
            rgba(5, 5, 5, 0.16) 68%,
            rgba(5, 5, 5, 0.24) 100%
        );

    pointer-events: none;
}


/* =========================================================
   GLOSSY TOP REFLECTION
========================================================= */

.banner-wrap::before {
    content: "";

    position: absolute;

    top: 0;
    left: 7%;

    z-index: 3;

    width: 86%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.25) 50%,
            transparent 100%
        );

    pointer-events: none;
}


/* =========================================================
   BANNER CONTENT
========================================================= */

.banner-content {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    max-width: 540px;

    padding: 50px 55px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;
}


/* =========================================================
   SMALL LABEL
========================================================= */

.banner-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #e6c982;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    line-height: 1.3;

    letter-spacing: 3px;

    text-transform: uppercase;

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   BANNER TITLE
   Using SPAN instead of H1
========================================================= */

.banner-title {
    display: block;

    margin: 0;

    color: #f8f5ed;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 45px);

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -1px;

    text-shadow:
        0 4px 25px rgba(0, 0, 0, 0.42);
}


/* =========================================================
   BANNER DESCRIPTION
========================================================= */

.banner-content p {
    max-width: 420px;

    margin: 16px 0 24px;

    color: rgba(247, 245, 240, 0.80);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.7;

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   BANNER BUTTON
========================================================= */

.banner-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 21px;

    color: #17120a;

    background:
        linear-gradient(
            135deg,
            #efd49a 0%,
            #c9a45c 55%,
            #a77d3a 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.28);

    border-radius: 12px;

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.5px;

    box-shadow:
        0 8px 25px rgba(201, 164, 92, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.68);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}


.banner-button:hover {
    color: #17120a;

    transform: translateY(-2px);

    filter: brightness(1.06);

    box-shadow:
        0 12px 32px rgba(201, 164, 92, 0.28),
        inset 0 1px 1px rgba(255, 255, 255, 0.78);
}


.banner-button:active {
    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .premium-banner {
        padding: 16px 20px 0;
    }

    .banner-wrap {
        height: 400px;
        border-radius: 18px;
    }

    .banner-content {
        padding: 40px 42px;
    }

    .banner-title {
        font-size: 35px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .premium-banner {
        padding: 12px 16px 0;
    }

    .banner-wrap {
        height: 300px;
        border-radius: 17px;
    }

    .banner-image {
        object-position: right center;
    }

    .banner-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 5, 5, 0.78) 0%,
                rgba(5, 5, 5, 0.48) 48%,
                rgba(5, 5, 5, 0.12) 100%
            );
    }

    .banner-content {
        max-width: 390px;
        padding: 30px 32px;
    }

    .banner-label {
        margin-bottom: 8px;
        font-size: 9px;
        letter-spacing: 2.3px;
    }

    .banner-title {
        font-size: 40px;
        line-height: 1.05;
        letter-spacing: -0.5px;
    }

    .banner-content p {
        max-width: 320px;
        margin: 10px 0 17px;
        font-size: 12px;
        line-height: 1.55;
    }

    .banner-button {
        min-height: 40px;
        padding: 0 17px;
        font-size: 11px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .premium-banner {
        padding: 10px 11px 0;
    }

    .banner-wrap {
        height: 235px;
        border-radius: 15px;
    }


    /* 
       Same desktop banner.
       Left side crop hoga.
       Right side model visible rahega.
    */

    .banner-image {
        object-position: right center;
    }


    /* Glossy dark overlay */

    .banner-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 5, 5, 0.84) 0%,
                rgba(5, 5, 5, 0.62) 42%,
                rgba(5, 5, 5, 0.18) 100%
            );
    }


    /* Content */

    .banner-content {
        width: 70%;
        max-width: 285px;

        padding: 20px 20px;

        justify-content: center;
    }


    /* Small label */

    .banner-label {
        margin-bottom: 7px;

        font-size: 7.5px;

        line-height: 1.3;

        letter-spacing: 1.8px;
    }


    /* Main title */

    .banner-title {
        font-size: 28px;

        line-height: 1.06;

        letter-spacing: -0.3px;
    }


    /* Description */

    .banner-content p {
        max-width: 255px;

        margin: 8px 0 13px;

        font-size: 10.5px;

        line-height: 1.5;
    }


    /* Button */

    .banner-button {
        min-height: 36px;

        padding: 0 14px;

        border-radius: 9px;

        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .premium-banner {
        padding: 8px 9px 0;
    }

    .banner-wrap {
        height: 220px;
        border-radius: 14px;
    }

    .banner-content {
        width: 72%;
        max-width: 270px;

        padding: 18px;
    }

    .banner-label {
        font-size: 7px;
        letter-spacing: 1.6px;
    }

    .banner-title {
        font-size: 26px;
        line-height: 1.05;
    }

    .banner-content p {
        max-width: 235px;

        margin: 7px 0 11px;

        font-size: 10px;
    }

    .banner-button {
        min-height: 34px;

        padding: 0 13px;

        font-size: 9.5px;
    }
}
/* =========================================================
   INTRO SECTION
========================================================= */

.intro-section {
    position: relative;

    width: 100%;

    padding: 85px 24px;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(201, 164, 92, 0.055),
            transparent 32%
        ),
        #090909;
}


/* =========================================================
   CONTAINER
========================================================= */

.intro-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.intro-heading {
    max-width: 760px;

    margin-bottom: 42px;
}


.section-label {
    display: block;

    margin-bottom: 13px;

    color: var(--gold-light);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.intro-heading h1 {
    margin: 0;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -0.8px;
}


/* Gold line */

.heading-line {
    display: block;

    width: 55px;
    height: 2px;

    margin-top: 21px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--gold-light),
            var(--gold-dark)
        );

    box-shadow:
        0 0 15px rgba(201, 164, 92, 0.20);
}


/* =========================================================
   CONTENT GRID
========================================================= */

.intro-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(280px, 0.75fr);

    gap: 55px;

    align-items: start;
}


/* =========================================================
   TEXT
========================================================= */

.intro-text {
    max-width: 720px;
}


.intro-text p {
    margin: 0 0 18px;

    color: #aaa8a2;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   INTRO BUTTON
========================================================= */

.intro-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 45px;

    margin-top: 8px;

    padding: 0 20px;

    color: #17120a;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 12px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.4px;

    box-shadow:
        0 8px 25px rgba(201, 164, 92, 0.14),
        inset 0 1px 1px rgba(255, 255, 255, 0.60);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.intro-button:hover {
    color: #17120a;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(201, 164, 92, 0.23),
        inset 0 1px 1px rgba(255, 255, 255, 0.72);
}


.intro-button i {
    font-size: 11px;
}


/* =========================================================
   HIGHLIGHT CARDS
========================================================= */

.intro-highlight {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.highlight-card {
    display: grid;

    grid-template-columns: 42px 1fr;

    column-gap: 13px;

    padding: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );

    border: 1px solid rgba(255, 255, 255, 0.085);

    border-radius: 16px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Highlight icon */

.highlight-icon {
    grid-row: span 2;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--gold-light);

    background:
        linear-gradient(
            135deg,
            rgba(216, 179, 106, 0.16),
            rgba(216, 179, 106, 0.035)
        );

    border: 1px solid rgba(216, 179, 106, 0.13);
}


.highlight-icon i {
    font-size: 15px;
}


.highlight-card strong {
    align-self: end;

    color: var(--white-soft);

    font-size: 13px;

    font-weight: 600;
}


.highlight-card > span:last-child {
    align-self: start;

    margin-top: 4px;

    color: #85827c;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .intro-section {
        padding: 65px 16px;
    }

    .intro-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .intro-heading {
        margin-bottom: 30px;
    }

    .intro-highlight {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 10px;
    }

    .highlight-card {
        grid-template-columns: 1fr;

        gap: 9px;

        padding: 16px;
    }

    .highlight-icon {
        grid-row: auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .intro-section {
        padding: 50px 11px;
    }

    .intro-container {
        padding: 0 10px;
    }

    .section-label {
        margin-bottom: 10px;

        font-size: 8px;

        letter-spacing: 2px;
    }

    .intro-heading h1 {
        font-size: 32px;

        line-height: 1.12;

        letter-spacing: -0.4px;
    }

    .heading-line {
        width: 45px;

        margin-top: 16px;
    }

    .intro-heading {
        margin-bottom: 27px;
    }

    .intro-content {
        gap: 28px;
    }

    .intro-text p {
        margin-bottom: 15px;

        font-size: 12px;

        line-height: 1.75;
    }

    .intro-button {
        min-height: 41px;

        padding: 0 17px;

        font-size: 11px;
    }

    .intro-highlight {
        display: flex;

        gap: 10px;
    }

    .highlight-card {
        grid-template-columns: 40px 1fr;

        column-gap: 11px;

        padding: 15px;

        border-radius: 14px;
    }

    .highlight-icon {
        grid-row: span 2;

        width: 40px;
        height: 40px;
    }

    .highlight-card strong {
        font-size: 12px;
    }

    .highlight-card > span:last-child {
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .intro-section {
        padding: 45px 9px;
    }

    .intro-container {
        padding: 0 8px;
    }

    .intro-heading h1 {
        font-size: 29px;
    }

    .intro-text p {
        font-size: 11.5px;
    }
}

/* =========================================================
   FEATURED PROFILES SECTION
========================================================= */

.profiles-section {
    position: relative;

    width: 100%;

    padding: 80px 24px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(201, 164, 92, 0.045),
            transparent 30%
        ),
        #090909;
}


/* =========================================================
   CONTAINER
========================================================= */

.profiles-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.profiles-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 35px;
}


.profiles-heading-text {
    max-width: 700px;
}


.profiles-heading .section-label {
    display: block;

    margin-bottom: 10px;

    color: var(--gold-light);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}


.profiles-heading h2 {
    margin: 0;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(30px, 3.5vw, 44px);

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -0.5px;
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.view-all-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 40px;

    padding: 0 15px;

    flex-shrink: 0;

    color: var(--gold-light);

    background:
        rgba(216, 179, 106, 0.045);

    border: 1px solid rgba(216, 179, 106, 0.20);

    border-radius: 11px;

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.3px;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.view-all-btn:hover {
    color: var(--gold-light);

    background:
        rgba(216, 179, 106, 0.09);

    border-color:
        rgba(216, 179, 106, 0.35);

    transform: translateY(-2px);
}


.view-all-btn i {
    font-size: 9px;
}


/* =========================================================
   PROFILE GRID
========================================================= */

.profiles-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   PROFILE CARD
========================================================= */

.profile-card {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );

    border: 1px solid rgba(255, 255, 255, 0.085);

    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.profile-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(216, 179, 106, 0.20);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.32),
        0 0 25px rgba(201, 164, 92, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}


/* =========================================================
   PROFILE IMAGE
========================================================= */

.profile-image {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 5 / 6;

    overflow: hidden;

    color: inherit;

    text-decoration: none;

    background: #151515;
}


.profile-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.profile-card:hover .profile-image img {
    transform: scale(1.035);
}


/* Image bottom shadow */

.profile-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 38%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(0, 0, 0, 0.58)
        );

    pointer-events: none;
}


/* =========================================================
   FEATURED BADGE
========================================================= */

.profile-badge {
    position: absolute;

    top: 13px;
    left: 13px;

    z-index: 2;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 10px;

    color: #17120a;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    border: 1px solid rgba(255, 255, 255, 0.24);

    border-radius: 8px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 8px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 1px;

    text-transform: uppercase;

    box-shadow:
        0 5px 16px rgba(0, 0, 0, 0.20),
        inset 0 1px 1px rgba(255, 255, 255, 0.50);
}


/* =========================================================
   PROFILE INFORMATION
========================================================= */

.profile-info {
    padding: 20px;
}


/* Location */

.profile-location {
    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 8px;

    color: var(--gold-light);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 500;

    line-height: 1.3;

    letter-spacing: 0.5px;
}


.profile-location i {
    font-size: 9px;
}


/* Profile Name */

.profile-info h3 {
    margin: 0;

    color: var(--white-soft);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    font-weight: 500;

    line-height: 1.2;
}


/* Description */

.profile-info p {
    margin: 9px 0 16px;

    color: #85827c;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   VIEW PROFILE LINK
========================================================= */

.profile-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--gold-light);

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.3px;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}


.profile-link:hover {
    color: var(--white);

    gap: 10px;
}


.profile-link i {
    font-size: 8px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .profiles-section {
        padding: 65px 16px;
    }

    .profiles-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 15px;
    }

    .profiles-heading {
        margin-bottom: 28px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .profiles-section {
        padding: 50px 11px;
    }

    .profiles-container {
        padding: 0 10px;
    }

    .profiles-heading {
        align-items: flex-start;

        margin-bottom: 24px;

        gap: 15px;
    }

    .profiles-heading-text {
        min-width: 0;
    }

    .profiles-heading .section-label {
        margin-bottom: 8px;

        font-size: 8px;

        letter-spacing: 2px;
    }

    .profiles-heading h2 {
        font-size: 29px;

        line-height: 1.12;
    }

    .view-all-btn {
        min-height: 36px;

        padding: 0 12px;

        font-size: 9px;
    }

    .profiles-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .profile-card {
        border-radius: 15px;
    }

    .profile-image {
        aspect-ratio: 4 / 4.8;
    }

    .profile-info {
        padding: 17px;
    }

    .profile-info h3 {
        font-size: 20px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .profiles-section {
        padding: 45px 9px;
    }

    .profiles-container {
        padding: 0 8px;
    }

    .profiles-heading {
        gap: 10px;
    }

    .profiles-heading h2 {
        font-size: 27px;
    }

    .view-all-btn {
        padding: 0 10px;

        font-size: 8.5px;
    }

    .profile-info h3 {
        font-size: 19px;
    }

    .profile-info p {
        font-size: 10.5px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .profile-card,
    .profile-image img,
    .view-all-btn,
    .profile-link {
        transition: none;
    }
}

/* =========================================================
   INDEPENDENT RANCHI SECTION
========================================================= */

.independent-section {
    position: relative;

    width: 100%;

    padding: 85px 24px;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(201, 164, 92, 0.045),
            transparent 32%
        ),
        #090909;
}


/* =========================================================
   CONTAINER
========================================================= */

.independent-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 3fr)
        minmax(280px, 2fr);

    gap: 60px;

    align-items: center;
}


/* =========================================================
   CONTENT
========================================================= */

.independent-content {
    max-width: 700px;
}


.independent-content .section-label {
    display: block;

    margin-bottom: 12px;

    color: var(--gold-light);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}


.independent-content h2 {
    margin: 0 0 22px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(32px, 3.5vw, 46px);

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -0.6px;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.independent-content p {
    margin: 0 0 17px;

    color: #aaa8a2;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.85;
}


/* =========================================================
   BUTTON
========================================================= */

.independent-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 44px;

    margin-top: 6px;

    padding: 0 19px;

    color: #17120a;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    border: 1px solid rgba(255, 255, 255, 0.23);

    border-radius: 12px;

    text-decoration: none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.4px;

    box-shadow:
        0 8px 25px rgba(201, 164, 92, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.65);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.independent-button:hover {
    color: #17120a;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(201, 164, 92, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.75);
}


.independent-button i {
    font-size: 9px;
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.independent-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #151515;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}


.independent-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.independent-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.independent-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(5, 5, 5, 0.72) 100%
        );

    pointer-events: none;
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.image-caption {
    position: absolute;

    left: 18px;
    bottom: 17px;

    z-index: 2;

    color: var(--white);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .independent-section {
        padding: 65px 16px;
    }

    .independent-container {
        grid-template-columns:
            minmax(0, 1.3fr)
            minmax(250px, 0.7fr);

        gap: 35px;
    }

    .independent-content h2 {
        font-size: 34px;
    }

    .independent-content p {
        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .independent-section {
        padding: 50px 11px;
    }

    .independent-container {
        display: flex;

        flex-direction: column;

        gap: 30px;
    }

    .independent-content {
        max-width: none;
    }

    .independent-content .section-label {
        margin-bottom: 9px;

        font-size: 8px;

        letter-spacing: 2px;
    }

    .independent-content h2 {
        margin-bottom: 17px;

        font-size: 30px;

        line-height: 1.13;
    }

    .independent-content p {
        margin-bottom: 15px;

        font-size: 12px;

        line-height: 1.75;
    }

    .independent-button {
        min-height: 41px;

        padding: 0 17px;

        font-size: 10.5px;
    }

    .independent-image {
        width: 100%;

        max-width: 420px;

        margin: 0 auto;

        aspect-ratio: 4 / 4.8;

        border-radius: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .independent-section {
        padding: 45px 9px;
    }

    .independent-content h2 {
        font-size: 28px;
    }

    .independent-content p {
        font-size: 11.5px;
    }

    .independent-image {
        border-radius: 14px;
    }

}

/* =========================================
   RANCHI BOOKING SECTION
========================================= */

.ranchi-booking-section {
    width: 100%;
    padding: 90px 24px;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(201, 164, 92, 0.08),
            transparent 35%
        ),
        #080808;
}

.ranchi-booking-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
    gap: 70px;

    align-items: center;
}

/* ---------- LEFT CONTENT ---------- */

.ranchi-booking-content {
    max-width: 760px;
}

.ranchi-booking-content .section-label {
    display: inline-block;
    margin-bottom: 16px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    color: var(--gold-light);
}

.ranchi-booking-content h2 {
    margin: 0 0 24px;

    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 700;

    color: var(--white);
    letter-spacing: -0.8px;
}

.ranchi-booking-content h2::after {
    content: "";
    display: block;

    width: 58px;
    height: 2px;

    margin-top: 22px;

    background: linear-gradient(
        90deg,
        var(--gold),
        transparent
    );
}

.ranchi-booking-content p {
    margin: 0 0 18px;

    font-size: 15px;
    line-height: 1.85;

    color: var(--white-soft);
}

.ranchi-booking-content p strong {
    color: var(--gold-light);
    font-weight: 600;
}

.ranchi-booking-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    margin-top: 12px;
    padding: 13px 21px;

    border: 1px solid rgba(201, 164, 92, 0.42);
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(201, 164, 92, 0.16),
            rgba(255, 255, 255, 0.035)
        );

    color: var(--gold-light);

    font-size: 13px;
    font-weight: 600;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.ranchi-booking-button i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ranchi-booking-button:hover {
    transform: translateY(-2px);

    border-color: rgba(239, 212, 154, 0.65);

    background:
        linear-gradient(
            135deg,
            rgba(201, 164, 92, 0.23),
            rgba(255, 255, 255, 0.055)
        );
}

.ranchi-booking-button:hover i {
    transform: translateX(4px);
}


/* ---------- RIGHT GLASS CARD ---------- */

.ranchi-booking-side {
    width: 100%;
}

.booking-glass-card {
    position: relative;

    padding: 38px 32px;

    border: 1px solid var(--glass-border);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);

    overflow: hidden;
}

.booking-glass-card::before {
    content: "";

    position: absolute;
    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(201, 164, 92, 0.08);

    filter: blur(5px);
}

.booking-icon {
    position: relative;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border: 1px solid rgba(201, 164, 92, 0.3);
    border-radius: 15px;

    background: rgba(201, 164, 92, 0.08);

    color: var(--gold-light);

    font-size: 19px;
}

.booking-card-label {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--gold);
}

.booking-glass-card h3 {
    position: relative;

    margin: 0 0 15px;

    font-size: 24px;
    line-height: 1.3;

    color: var(--white);
}

.booking-glass-card p {
    position: relative;

    margin: 0;

    font-size: 13px;
    line-height: 1.75;

    color: var(--muted);
}

.booking-card-line {
    width: 100%;
    height: 1px;

    margin: 25px 0 20px;

    background:
        linear-gradient(
            90deg,
            rgba(201, 164, 92, 0.45),
            transparent
        );
}

.booking-card-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-card-meta span {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 11px;
    color: var(--white-soft);
}

.booking-card-meta i {
    width: 16px;
    color: var(--gold);
    text-align: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .ranchi-booking-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .ranchi-booking-content {
        max-width: 100%;
    }

    .ranchi-booking-side {
        max-width: 560px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .ranchi-booking-section {
        padding: 65px 18px;
    }

    .ranchi-booking-container {
        gap: 32px;
    }

    .ranchi-booking-content h2 {
        font-size: 30px;
        line-height: 1.18;
    }

    .ranchi-booking-content p {
        font-size: 14px;
        line-height: 1.78;
    }

    .ranchi-booking-button {
        width: 100%;
        justify-content: center;
    }

    .booking-glass-card {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .booking-glass-card h3 {
        font-size: 21px;
    }

    .booking-glass-card p {
        font-size: 12.5px;
    }

}

/* =========================================
   PREMIUM GALLERY
========================================= */

.premium-gallery-section {
    width: 100%;
    padding: 90px 24px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201, 164, 92, 0.07),
            transparent 38%
        ),
        #080808;
}

.premium-gallery-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.gallery-heading h2 {
    margin: 10px 0 0;
    color: var(--white);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.gallery-view-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;

    border: 1px solid var(--glass-border);
    border-radius: 11px;

    color: var(--gold-light);
    background: rgba(255,255,255,0.025);

    font-size: 12px;
    font-weight: 600;
    text-decoration: none;

    white-space: nowrap;
    transition: .3s ease;
}

.gallery-view-all:hover {
    border-color: rgba(201,164,92,.45);
    background: rgba(201,164,92,.08);
    transform: translateY(-2px);
}

.gallery-view-all i {
    font-size: 11px;
}


/* ---------- 4 x 2 GRID ---------- */

.premium-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-card {
    position: relative;
    display: block;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border: 1px solid var(--glass-border);
    border-radius: 18px;

    background: #111;

    text-decoration: none;

    box-shadow:
        0 18px 45px rgba(0,0,0,.35);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease,
        filter .6s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);

    border-color: rgba(201,164,92,.45);

    box-shadow:
        0 25px 60px rgba(0,0,0,.55);
}

.gallery-card:hover img {
    transform: scale(1.06);
    filter: brightness(.82);
}


/* ---------- OVERLAY ---------- */

.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 20px 18px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.42) 38%,
            transparent 70%
        );

    opacity: .98;
}

.gallery-info span {
    display: block;

    margin-bottom: 6px;

    color: var(--gold-light);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.gallery-info h3 {
    margin: 0 0 4px;

    color: var(--white);

    font-size: 18px;
    line-height: 1.2;
}

.gallery-info strong {
    color: var(--white-soft);

    font-size: 11px;
    font-weight: 500;
}

.gallery-overlay > i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 2px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    background: rgba(0,0,0,.35);

    color: var(--gold-light);

    font-size: 11px;

    transition: .3s ease;
}

.gallery-card:hover .gallery-overlay > i {
    background: rgba(201,164,92,.14);
    border-color: rgba(201,164,92,.45);
    transform: rotate(8deg);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .premium-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .premium-gallery-section {
        padding: 65px 18px;
    }

    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 25px;
    }

    .gallery-heading h2 {
        font-size: 29px;
    }

    .gallery-view-all {
        padding: 10px 15px;
    }

    .premium-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-card {
        border-radius: 13px;
    }

    .gallery-overlay {
        padding: 12px 11px;
    }

    .gallery-info span {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .gallery-info h3 {
        font-size: 13px;
    }

    .gallery-info strong {
        font-size: 9px;
    }

    .gallery-overlay > i {
        width: 27px;
        height: 27px;
        font-size: 9px;
    }

}

/* =========================================
   WHY CHOOSE SECTION
========================================= */

.why-choose-section {
    width: 100%;
    padding: 90px 24px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(201, 164, 92, 0.055),
            transparent 42%
        ),
        #080808;
}

.why-choose-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* ---------- HEADING ---------- */

.why-choose-heading {
    max-width: 1100px;
    margin: 0 auto 45px;
    text-align: center;
}

.why-choose-heading .section-label {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.why-choose-heading h2 {
    margin: 0 0 15px;

    color: var(--white);

    font-size: clamp(32px, 4vw, 45px);
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.why-choose-heading p {
    max-width: 1000px;
    margin: 0 auto;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.75;
}


/* ---------- GRID ---------- */

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* ---------- CARD ---------- */

.why-card {
    position: relative;

    min-height: 255px;
    padding: 28px 24px;

    border: 1px solid var(--glass-border);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.015)
        );

    overflow: hidden;

    box-shadow:
        0 18px 45px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.04);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.why-card::before {
    content: "";

    position: absolute;
    top: -65px;
    right: -65px;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    background: rgba(201,164,92,.065);

    filter: blur(4px);
}

.why-card:hover {
    transform: translateY(-6px);

    border-color: rgba(201,164,92,.38);

    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 0 35px rgba(201,164,92,.055);
}


/* ---------- ICON ---------- */

.why-icon {
    position: relative;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border: 1px solid rgba(201,164,92,.28);
    border-radius: 14px;

    background: rgba(201,164,92,.07);

    color: var(--gold-light);

    font-size: 17px;
}

.why-number {
    position: absolute;
    top: 25px;
    right: 23px;

    color: rgba(239,212,154,.28);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.why-card h3 {
    position: relative;

    margin: 0 0 11px;

    color: var(--white);

    font-size: 19px;
    line-height: 1.3;
}

.why-card p {
    position: relative;

    margin: 0;

    color: var(--muted);

    font-size: 12.5px;
    line-height: 1.75;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .why-choose-section {
        padding: 65px 18px;
    }

    .why-choose-heading {
        margin-bottom: 30px;
    }

    .why-choose-heading h2 {
        font-size: 29px;
    }

    .why-choose-heading p {
        font-size: 13px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-card {
        min-height: auto;
        padding: 24px 21px;
    }

}

/* =========================================
   COMMON CITY CONTENT SECTION
========================================= */

.city-content-section {
    width: 100%;
    padding: 90px 24px;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(201, 164, 92, 0.07),
            transparent 35%
        ),
        #080808;
}

.city-content-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
    gap: 65px;

    align-items: center;
}

.city-content-main {
    max-width: 760px;
}

.city-content-main .section-label {
    display: inline-block;
    margin-bottom: 15px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.city-content-main h2 {
    margin: 0 0 23px;

    color: var(--white);

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.14;
    letter-spacing: -0.7px;
}

.city-content-main h2::after {
    content: "";

    display: block;

    width: 58px;
    height: 2px;

    margin-top: 20px;

    background: linear-gradient(
        90deg,
        var(--gold),
        transparent
    );
}

.city-content-main p {
    margin: 0 0 18px;

    color: var(--white-soft);

    font-size: 14px;
    line-height: 1.85;
}

.city-content-main strong {
    color: var(--gold-light);
    font-weight: 600;
}

.city-content-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 8px;
    padding: 13px 21px;

    border: 1px solid rgba(201,164,92,.4);
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(201,164,92,.15),
            rgba(255,255,255,.025)
        );

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: .3s ease;
}

.city-content-button:hover {
    transform: translateY(-2px);
    border-color: rgba(239,212,154,.65);
    background: rgba(201,164,92,.2);
}

.city-content-button i {
    font-size: 11px;
    transition: transform .3s ease;
}

.city-content-button:hover i {
    transform: translateX(4px);
}


/* ---------- SIDE CARD ---------- */

.city-content-side {
    width: 100%;
}

.city-content-card {
    position: relative;

    padding: 38px 32px;

    border: 1px solid var(--glass-border);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.015)
        );

    box-shadow:
        0 25px 65px rgba(0,0,0,.4),
        inset 0 1px 0 rgba(255,255,255,.05);

    overflow: hidden;
}

.city-content-card::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    top: -80px;
    right: -70px;

    border-radius: 50%;

    background: rgba(201,164,92,.07);

    filter: blur(5px);
}

.city-content-icon {
    position: relative;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    border: 1px solid rgba(201,164,92,.3);
    border-radius: 15px;

    background: rgba(201,164,92,.08);

    color: var(--gold-light);

    font-size: 18px;
}

.city-content-location {
    display: block;

    margin-bottom: 11px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.city-content-card h3 {
    position: relative;

    margin: 0 0 14px;

    color: var(--white);

    font-size: 24px;
    line-height: 1.3;
}

.city-content-card p {
    position: relative;

    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .city-content-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .city-content-main {
        max-width: 100%;
    }

    .city-content-side {
        max-width: 560px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .city-content-section {
        padding: 65px 18px;
    }

    .city-content-container {
        gap: 30px;
    }

    .city-content-main h2 {
        font-size: 29px;
    }

    .city-content-main p {
        font-size: 13.5px;
        line-height: 1.8;
    }

    .city-content-button {
        width: 100%;
        justify-content: center;
    }

    .city-content-card {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .city-content-card h3 {
        font-size: 21px;
    }

}
/* =========================================
   RANCHI LOCATIONS
========================================= */

.locations-section {
    width: 100%;
    padding: 90px 24px;

    background:
        radial-gradient(
            circle at 15% 45%,
            rgba(201, 164, 92, 0.055),
            transparent 35%
        ),
        #080808;
}

.locations-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.locations-heading {
    max-width: 720px;
    margin: 0 auto 45px;

    text-align: center;
}

.locations-heading .section-label {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.locations-heading h2 {
    margin: 0 0 16px;

    color: var(--white);

    font-size: clamp(32px, 4vw, 45px);
    line-height: 1.15;
    letter-spacing: -0.7px;
}

.locations-heading p {
    max-width: 620px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.locations-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================
   CARD
========================================= */

.location-card {
    position: relative;

    display: grid;

    grid-template-columns: 52px minmax(0, 1fr) auto;

    align-items: center;

    gap: 17px;

    min-height: 118px;

    padding: 21px 23px;

    border: 1px solid var(--glass-border);

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* Gold glow */

.location-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -90px;
    right: -70px;

    border-radius: 50%;

    background: rgba(201, 164, 92, 0.055);

    filter: blur(4px);

    pointer-events: none;
}


/* Bottom shine */

.location-card::after {
    content: "";

    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(201, 164, 92, 0.25),
            transparent
        );

    opacity: 0;

    transition: opacity 0.3s ease;
}


.location-card:hover {
    transform: translateY(-4px);

    border-color: rgba(201, 164, 92, 0.38);

    background:
        linear-gradient(
            145deg,
            rgba(201, 164, 92, 0.07),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(201, 164, 92, 0.045);
}

.location-card:hover::after {
    opacity: 1;
}


/* =========================================
   ICON
========================================= */

.location-icon {
    position: relative;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 164, 92, 0.28);

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(201, 164, 92, 0.11),
            rgba(201, 164, 92, 0.035)
        );

    color: var(--gold-light);

    font-size: 17px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.05);

    border-color: rgba(239, 212, 154, 0.48);
}


/* =========================================
   CONTENT
========================================= */

.location-content {
    position: relative;

    min-width: 0;
}

.location-content h3 {
    margin: 0 0 6px;

    color: var(--white);

    font-size: 18px;
    font-weight: 600;

    line-height: 1.25;
}

.location-content p {
    max-width: 420px;

    margin: 0;

    color: var(--muted);

    font-size: 11.5px;

    line-height: 1.6;
}


/* =========================================
   NUMBER
========================================= */

.location-number {
    align-self: flex-start;

    margin-top: 2px;

    color: rgba(239, 212, 154, 0.27);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .locations-section {
        padding: 75px 20px;
    }

    .locations-grid {
        gap: 13px;
    }

    .location-card {
        grid-template-columns: 48px minmax(0, 1fr) auto;

        gap: 14px;

        padding: 19px;

        min-height: 110px;
    }

    .location-icon {
        width: 48px;
        height: 48px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 620px) {

    .locations-section {
        padding: 65px 18px;
    }

    .locations-heading {
        margin-bottom: 30px;
    }

    .locations-heading h2 {
        font-size: 29px;
    }

    .locations-heading p {
        font-size: 13px;
        line-height: 1.7;
    }

    .locations-grid {
        grid-template-columns: 1fr;

        gap: 11px;
    }

    .location-card {
        grid-template-columns: 44px minmax(0, 1fr) auto;

        gap: 13px;

        min-height: 96px;

        padding: 16px;

        border-radius: 15px;
    }

    .location-icon {
        width: 44px;
        height: 44px;

        border-radius: 12px;

        font-size: 15px;
    }

    .location-content h3 {
        margin-bottom: 5px;

        font-size: 16px;
    }

    .location-content p {
        font-size: 10.5px;

        line-height: 1.55;
    }

    .location-number {
        font-size: 9px;
    }

}
/* =========================================
   OTHER CITIES
========================================= */

.cities-section {
    width: 100%;
    padding: 85px 24px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(201, 164, 92, 0.055),
            transparent 40%
        ),
        #080808;
}

.cities-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.cities-heading {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
}

.cities-heading .section-label {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.cities-heading h2 {
    margin: 0 0 14px;

    color: var(--white);

    font-size: clamp(31px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.cities-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================
   FIVE CITY ROW
========================================= */

.cities-grid {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================
   CITY CARD
========================================= */

.city-card {
    position: relative;

    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 25px 21px;

    border: 1px solid var(--glass-border);
    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 18px 45px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.035);

    overflow: hidden;

    text-decoration: none;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.city-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -80px;
    right: -70px;

    border-radius: 50%;

    background: rgba(201,164,92,.07);

    filter: blur(5px);

    transition: .4s ease;
}

.city-card:hover {
    transform: translateY(-6px);

    border-color: rgba(201,164,92,.4);

    background:
        linear-gradient(
            145deg,
            rgba(201,164,92,.08),
            rgba(255,255,255,.018)
        );

    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 0 30px rgba(201,164,92,.045);
}

.city-card:hover::before {
    transform: scale(1.25);
}


/* =========================================
   ICON
========================================= */

.city-card-icon {
    position: relative;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border: 1px solid rgba(201,164,92,.28);
    border-radius: 14px;

    background: rgba(201,164,92,.07);

    color: var(--gold-light);

    font-size: 16px;

    transition: .3s ease;
}

.city-card:hover .city-card-icon {
    transform: scale(1.06);

    border-color: rgba(239,212,154,.5);
}


/* =========================================
   CITY CONTENT
========================================= */

.city-card-label {
    position: relative;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.7px;
}

.city-card h3 {
    position: relative;

    margin: 0;

    color: var(--white);

    font-size: 21px;
    line-height: 1.25;
}

.city-card-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: auto;

    color: var(--white-soft);

    font-size: 10px;
    font-weight: 600;

    transition: .3s ease;
}

.city-card-link i {
    color: var(--gold);

    font-size: 9px;

    transition: .3s ease;
}

.city-card:hover .city-card-link {
    color: var(--gold-light);
}

.city-card:hover .city-card-link i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .cities-section {
        padding: 65px 18px;
    }

    .cities-heading {
        margin-bottom: 28px;
    }

    .cities-heading h2 {
        font-size: 29px;
    }

    .cities-heading p {
        font-size: 13px;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .city-card {
        min-height: 180px;
        padding: 19px 16px;
        border-radius: 15px;
    }

    .city-card-icon {
        width: 42px;
        height: 42px;

        margin-bottom: 19px;

        border-radius: 12px;

        font-size: 14px;
    }

    .city-card-label {
        font-size: 7px;
        letter-spacing: 1.3px;
    }

    .city-card h3 {
        font-size: 16px;
    }

    .city-card-link {
        font-size: 9px;
    }

}

@media (max-width: 380px) {

    .cities-grid {
        grid-template-columns: 1fr;
    }

}

 /* =========================================
    FAQ SECTION
 ========================================= */

.faq-section {
    width: 100%;
    padding: 90px 24px;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(201, 164, 92, 0.055),
            transparent 38%
        ),
        #080808;
}

.faq-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.faq-heading {
    max-width: 700px;
    margin: 0 auto 42px;

    text-align: center;
}

.faq-heading .section-label {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.faq-heading h2 {
    margin: 0 0 14px;

    color: var(--white);

    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.faq-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================
   2 x 3 GRID
========================================= */

.faq-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================
   FAQ CARD
========================================= */

.faq-card {
    position: relative;

    border: 1px solid var(--glass-border);
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 15px 40px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.035);

    overflow: hidden;

    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.faq-card:hover {
    border-color: rgba(201,164,92,.28);
}


/* =========================================
   QUESTION
========================================= */

.faq-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    min-height: 78px;

    padding: 20px 22px;

    cursor: pointer;

    list-style: none;

    color: var(--white);

    font-size: 14px;
    font-weight: 600;

    user-select: none;
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

.faq-card summary::marker {
    display: none;
}


/* ---------- PLUS ICON ---------- */

.faq-card summary i {
    flex: 0 0 auto;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201,164,92,.25);
    border-radius: 50%;

    color: var(--gold-light);

    background: rgba(201,164,92,.055);

    font-size: 10px;

    transition:
        transform .3s ease,
        background .3s ease;
}


/* =========================================
   OPEN STATE
========================================= */

.faq-card[open] {
    border-color: rgba(201,164,92,.35);

    background:
        linear-gradient(
            145deg,
            rgba(201,164,92,.065),
            rgba(255,255,255,.015)
        );
}

.faq-card[open] summary {
    color: var(--gold-light);
}

.faq-card[open] summary i {
    transform: rotate(45deg);

    background: rgba(201,164,92,.11);
}


/* =========================================
   ANSWER
========================================= */

.faq-answer {
    padding: 0 22px 21px;

    border-top: 1px solid rgba(255,255,255,.055);
}

.faq-answer p {
    margin: 16px 0 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .faq-section {
        padding: 65px 18px;
    }

    .faq-heading {
        margin-bottom: 30px;
    }

    .faq-heading h2 {
        font-size: 29px;
    }

    .faq-heading p {
        font-size: 13px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .faq-card {
        border-radius: 14px;
    }

    .faq-card summary {
        min-height: 68px;

        padding: 17px;

        font-size: 13px;
    }

    .faq-card summary i {
        width: 28px;
        height: 28px;

        font-size: 9px;
    }

    .faq-answer {
        padding: 0 17px 17px;
    }

    .faq-answer p {
        margin-top: 13px;

        font-size: 11.5px;
        line-height: 1.7;
    }

}

/* =========================================
   FINAL CTA
========================================= */

.final-cta-section {
    width: 100%;
    padding: 90px 24px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(201, 164, 92, 0.12),
            transparent 42%
        ),
        #080808;
}

.final-cta-container {
    position: relative;

    width: 100%;
    max-width: 1050px;
    margin: 0 auto;

    padding: 65px 55px;

    border: 1px solid rgba(201, 164, 92, 0.22);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.055);

    overflow: hidden;

    text-align: center;
}

.final-cta-container::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -150px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(201,164,92,.07);

    filter: blur(8px);

    pointer-events: none;
}

.final-cta-container::after {
    content: "";

    position: absolute;

    left: 15%;
    right: 15%;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(201,164,92,.45),
            transparent
        );
}


/* =========================================
   CONTENT
========================================= */

.final-cta-content {
    position: relative;
    z-index: 1;

    max-width: 760px;
    margin: 0 auto;
}

.final-cta-content .section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.6px;
}

.final-cta-content h2 {
    margin: 0 0 20px;

    color: var(--white);

    font-size: clamp(32px, 4.5vw, 50px);
    line-height: 1.12;

    letter-spacing: -0.8px;
}

.final-cta-content p {
    max-width: 690px;

    margin: 0 auto 13px;

    color: var(--white-soft);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   BUTTONS
========================================= */

.final-cta-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 28px;
}

.final-cta-primary,
.final-cta-whatsapp {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 46px;

    padding: 0 21px;

    border-radius: 12px;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


/* Primary */

.final-cta-primary {
    border: 1px solid rgba(201,164,92,.48);

    background:
        linear-gradient(
            135deg,
            rgba(201,164,92,.2),
            rgba(201,164,92,.07)
        );

    color: var(--gold-light);
}

.final-cta-primary i {
    font-size: 10px;

    transition: transform .3s ease;
}

.final-cta-primary:hover {
    transform: translateY(-2px);

    border-color: rgba(239,212,154,.7);

    box-shadow:
        0 10px 30px rgba(201,164,92,.08);
}

.final-cta-primary:hover i {
    transform: translateX(4px);
}


/* WhatsApp */

.final-cta-whatsapp {
    border: 1px solid var(--glass-border);

    background: rgba(255,255,255,.025);

    color: var(--white-soft);
}

.final-cta-whatsapp i {
    color: var(--gold-light);

    font-size: 15px;
}

.final-cta-whatsapp:hover {
    transform: translateY(-2px);

    border-color: rgba(201,164,92,.35);

    background: rgba(201,164,92,.07);

    color: var(--white);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .final-cta-section {
        padding: 65px 18px;
    }

    .final-cta-container {
        padding: 48px 22px;

        border-radius: 21px;
    }

    .final-cta-content h2 {
        font-size: 29px;
        line-height: 1.18;
    }

    .final-cta-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .final-cta-actions {
        flex-direction: column;

        gap: 10px;

        margin-top: 24px;
    }

    .final-cta-primary,
    .final-cta-whatsapp {
        width: 100%;
    }

}
/* =========================================
   SITE FOOTER
========================================= */

.site-footer {
    width: 100%;
    margin: 0;
    padding: 0;

    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(201, 164, 92, 0.055),
            transparent 30%
        ),
        #050505;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;
    padding: 70px 24px 55px;

    display: grid;
    grid-template-columns:
        1.7fr
        0.8fr
        0.9fr
        1fr;

    gap: 55px;
}


/* =========================================
   BRAND COLUMN
========================================= */

.footer-brand {
    width: 100%;
    max-width: 390px;
}


/* ---------- LOGO ---------- */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 20px;

    color: var(--white);
    text-decoration: none;
}

.footer-logo-mark {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 164, 92, 0.48);
    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            rgba(201, 164, 92, 0.16),
            rgba(201, 164, 92, 0.035)
        );

    color: var(--gold-light);

    font-size: 18px;
    font-weight: 700;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.footer-logo-text strong {
    color: var(--white);

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 2px;
}

.footer-logo-text small {
    margin-top: 5px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2.5px;
}


/* ---------- BRAND TEXT ---------- */

.footer-brand > p {
    max-width: 410px;

    margin: 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 23px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.025);

    color: var(--white-soft);

    font-size: 13px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);

    border-color: rgba(201, 164, 92, 0.42);

    background: rgba(201, 164, 92, 0.08);

    color: var(--gold-light);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    position: relative;

    margin: 3px 0 22px;

    color: var(--white);

    font-size: 18px;
    font-weight: 600;

    line-height: 1.3;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 28px;
    height: 1px;

    margin-top: 10px;

    background: var(--gold);
}


/* =========================================
   FOOTER LIST
========================================= */

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin: 0 0 12px;
}

.footer-column li:last-child {
    margin-bottom: 0;
}

.footer-column a {
    display: inline-flex;
    align-items: center;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}


/* =========================================
   CONTACT COLUMN
========================================= */

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-contact li {
    margin: 0;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 11px;

    width: 100%;

    color: var(--muted);

    font-size: 15px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-contact a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer-contact a i {
    width: 17px;

    flex: 0 0 17px;

    color: var(--gold);

    font-size: 13px;

    text-align: center;
}

.footer-contact a span {
    min-width: 0;

    overflow-wrap: anywhere;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    width: 100%;

    border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.footer-bottom-container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;
    padding: 19px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #77736c;

    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 20px;
}

.footer-bottom-links a {
    color: #77736c;

    font-size: 13px;

    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold-light);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .footer-container {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 42px;
    }

    .footer-brand {
        grid-column: span 3;

        max-width: 650px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .footer-container {
        padding: 55px 18px 40px;

        grid-template-columns: 1fr 1fr;

        gap: 38px 25px;
    }

    .footer-brand {
        grid-column: span 2;

        max-width: 100%;
    }

    .footer-brand > p {
        max-width: 100%;

        font-size: 11.5px;
        line-height: 1.8;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

    .footer-column h3 {
        margin-bottom: 18px;

        font-size: 13px;
    }

    .footer-column li {
        margin-bottom: 10px;
    }

    .footer-column a {
        font-size: 11px;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-contact ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px 18px;
    }

    .footer-contact li {
        margin: 0;
    }

    .footer-contact a {
        font-size: 11px;
    }

    .footer-bottom-container {
        padding: 18px;

        flex-direction: column;
        align-items: flex-start;

        gap: 13px;
    }

    .footer-bottom-links {
        gap: 9px 17px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .footer-container {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-contact {
        grid-column: span 1;
    }

    .footer-contact ul {
        grid-template-columns: 1fr;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;

        gap: 8px;
    }

}

/* =========================================
   FLOATING CONTACT
========================================= */

.floating-contact {
    position: fixed;

    right: 22px;
    bottom: 58px;

    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 9px;
}


/* =========================================
   DESKTOP BUTTON
========================================= */

.floating-contact-btn {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0;

    border: 1px solid rgba(201, 164, 92, 0.32);
    border-radius: 50%;

    background:
        rgba(12, 12, 12, 0.92);

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        width 0.35s ease,
        border-radius 0.35s ease,
        background 0.35s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.floating-contact-btn i {
    flex: 0 0 auto;

    font-size: 17px;

    transition: transform 0.3s ease;
}

.floating-contact-btn span {
    max-width: 0;

    opacity: 0;

    white-space: nowrap;

    overflow: hidden;

    transition:
        max-width 0.35s ease,
        opacity 0.2s ease;
}


/* =========================================
   HOVER EXPAND
========================================= */

.floating-contact-btn:hover {
    width: 115px;

    border-radius: 14px;

    transform: translateX(-2px);
}

.floating-contact-btn:hover span {
    max-width: 60px;

    opacity: 1;
}

.floating-contact-btn:hover i {
    transform: scale(1.05);
}


/* =========================================
   CALL
========================================= */

.floating-call {
    background:
        rgba(12, 12, 12, 0.94);

    color: var(--white-soft);
}

.floating-call i {
    color: var(--gold-light);
}

.floating-call:hover {
    border-color: rgba(201, 164, 92, 0.48);

    background:
        rgba(201, 164, 92, 0.09);

    color: var(--gold-light);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.45);
}


/* =========================================
   WHATSAPP
========================================= */

.floating-whatsapp {
    border-color: rgba(201, 164, 92, 0.42);

    background:
        rgba(201, 164, 92, 0.09);

    color: var(--gold-light);
}

.floating-whatsapp i {
    color: var(--gold-light);
}

.floating-whatsapp:hover {
    border-color: rgba(239, 212, 154, 0.65);

    background:
        rgba(201, 164, 92, 0.17);

    color: var(--gold-light);

    box-shadow:
        0 12px 32px rgba(201, 164, 92, 0.10);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .floating-contact {
        left: 14px;
        right: 14px;
        bottom: 12px;

        display: flex;
        flex-direction: row;

        align-items: center;

        gap: 6px;

        padding: 5px;

        border: 1px solid rgba(201, 164, 92, 0.22);
        border-radius: 18px;

        background:
            rgba(8, 8, 8, 0.94);

        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.5);

        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }


    .floating-contact-btn {
        width: auto;
        height: 44px;

        flex: 1;

        padding: 0 14px;

        border-radius: 13px;

        gap: 8px;

        overflow: visible;
    }


    .floating-contact-btn span {
        max-width: 80px;
        opacity: 1;
    }


    .floating-contact-btn:hover {
        width: auto;

        border-radius: 13px;

        transform: none;
    }


    .floating-contact-btn i {
        font-size: 14px;
    }

}