/* ==========================================================================
   UTPALAA - LUXURY RESIDENCES STYLESHEET
   ========================================================================== */


/* 1. RESET & BASE STYLES */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #1b1b1b;
    --bg-navbar: #212121;
    --bg-overlay: #151515;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --accent-gold: #dfb288;
    --accent-gold-dark: #d89e66;
    --accent-gold-hover: #cb9d73;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --header-height: 80px;
    --header-height-mobile: 72px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}


/* 2. SITE HEADER & NAVBAR */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-navbar);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, height 0.3s ease;
}

.nav-container {
    max-width: 1320px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* BRAND & LOGOS */

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.partner-brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-decoration: none;
}

.logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.utpalaa-logo {
    height: 46px;
}

.brick-logo {
    height: 38px;
}

.partner-text {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    margin-top: 1px;
    line-height: 1;
    white-space: nowrap;
}

.brand-link:hover .logo {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo-divider {
    display: inline-block;
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 0 2px;
}


/* DESKTOP NAVIGATION */

.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 38px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 8px 0;
    position: relative;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* ENQUIRE BUTTON (CTA) */

.btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-gold);
    color: #121212;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 11px 26px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--accent-gold);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(223, 178, 136, 0.2);
    cursor: pointer;
}

.btn-enquire:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(223, 178, 136, 0.35);
}


/* MOBILE TOGGLE (HAMBURGER) */

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.mobile-toggle:focus {
    outline: 2px solid var(--accent-gold);
}

.mobile-toggle .icon-close {
    display: none;
}


/* 3. MOBILE MENU OVERLAY */

.mobile-menu-overlay {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    width: 100vw;
    height: auto;
    max-height: calc(100vh - var(--header-height-mobile));
    background-color: var(--bg-overlay);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
}

.site-header.menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-inner {
    padding: 12px 24px 28px 24px;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link {
    display: block;
    padding: 18px 0;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent-gold);
    padding-left: 6px;
}

.mobile-cta-wrapper {
    margin-top: 20px;
    padding-top: 0;
}

.btn-enquire-mobile {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    border-radius: 10px;
}


/* STATE: MENU OPEN BUTTON TRANSFORM */

.site-header.menu-open .mobile-toggle .icon-bars {
    display: none;
}

.site-header.menu-open .mobile-toggle .icon-close {
    display: block;
    color: var(--text-light);
    font-size: 24px;
}


/* 4. RESPONSIVE MEDIA QUERIES NAVBAR */

@media (max-width: 991px) {
    .site-header {
        height: var(--header-height-mobile);
    }
    .nav-container {
        padding: 0 18px;
    }
    .desktop-nav,
    .nav-cta {
        display: none;
    }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .logo {
        height: 36px;
    }
    .utpalaa-logo {
        height: 38px;
    }
    .brick-logo {
        height: 30px;
    }
    .partner-text {
        font-size: 7px;
    }
    .logo-divider {
        height: 24px;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        gap: 8px;
    }
    .logo {
        height: 32px;
    }
    .utpalaa-logo {
        height: 34px;
    }
    .brick-logo {
        height: 26px;
    }
    .partner-text {
        font-size: 6.5px;
        letter-spacing: 0.3px;
    }
    .logo-divider {
        height: 20px;
    }
}


/* 5. HERO & GENERAL SECTIONS */

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #060b13;
}


/* DESKTOP HERO VIEW (1st Uploaded Image Layout with downtownbg2.jpeg) */

.hero-desktop-view {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 82vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/downtownbg2.jpeg') center/cover no-repeat;
    padding: 70px 0;
}

.hero-container-desktop {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content-left {
    max-width: 680px;
    text-align: left;
}

.hero-location-pin {
    color: var(--accent-gold-dark);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-project-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85);
}

.hero-price-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 38px;
    color: var(--accent-gold-dark);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 20px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85);
}

.hero-desc-text {
    color: #f1f5f9;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 34px;
    max-width: 560px;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.btn-hero-brochure {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-gold-dark);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(216, 158, 102, 0.35);
}

.btn-hero-brochure:hover {
    background-color: #c58b54;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(216, 158, 102, 0.5);
}


/* MOBILE HERO VIEW (3rd Uploaded Image Interface with downmobile.png) */

.hero-mobile-view {
    display: none;
    width: 100%;
    background-color: #0b1422;
}

.mobile-hero-img-wrap {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.mobile-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-hero-card {
    padding: 10px 24px 10px 24px;
    text-align: center;
    background-color: #0b1422;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-hero-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.mobile-hero-price {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 24px;
    color: var(--accent-gold-dark);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}

.mobile-hero-sub {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    max-width: 330px;
    margin: 0 auto 28px auto;
    font-weight: 400;
}

.btn-mobile-outline-gold {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    border: 1px solid var(--accent-gold-dark);
    color: #ffffff;
    background: rgba(11, 20, 34, 0.8);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-mobile-outline-gold:hover {
    background-color: var(--accent-gold-dark);
    color: #ffffff;
}

@media (max-width: 991px) {
    .hero-desktop-view {
        display: none;
    }
    .hero-mobile-view {
        display: block;
    }
}

.page-section {
    padding: 90px 24px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-subtle);
}

.section-title {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
}


/* 6. ARCHITECTURAL EXCELLENCE SECTION */

.architectural-section {
    background-color: #070d17;
    padding: 10px 24px;
    position: relative;
    overflow: hidden;
}

.arch-container {
    max-width: 1320px;
    margin: 0 auto;
}

.arch-header {
    text-align: center;
    margin-bottom: 20px;
}

.arch-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.arch-title span {
    font-style: italic;
    color: var(--accent-gold-dark);
    font-weight: 400;
}

.arch-line-divider {
    width: 90px;
    height: 2px;
    background-color: var(--accent-gold-dark);
    margin: 0 auto;
}


/* DESKTOP GRID */

.arch-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.arch-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.arch-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    background-color: #0d1624;
}

.arch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.card-featured {
    height: 440px;
}

.card-secondary {
    height: 208px;
}

.card-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.arch-card:hover .card-img {
    transform: scale(1.04);
}

.card-top-content {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
    color: #ffffff;
    pointer-events: none;
}

.top-tag-left {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.top-tag-left strong {
    color: var(--accent-gold-dark);
}

.top-tag-right {
    font-size: 22px;
    font-family: var(--font-serif);
    color: var(--accent-gold-dark);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.card-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 28px 26px 28px;
    background: linear-gradient(to top, rgba(5, 10, 18, 0.95) 0%, rgba(5, 10, 18, 0.75) 60%, transparent 100%);
    z-index: 2;
}

.card-category {
    display: inline-block;
    color: var(--accent-gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-heading {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.25;
}

.card-description {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 92%;
}

.mobile-carousel-indicators {
    display: none;
}


/* 7. THE CRAFTSMANSHIP SECTION */

.craftsmanship-section {
    background-color: #050a12;
    padding: 10px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.crafts-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.crafts-image-col {
    width: 100%;
}

.crafts-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
    display: block;
    transition: transform 0.4s ease;
}

.crafts-img:hover {
    transform: scale(1.015);
}

.crafts-content-col {
    text-align: left;
}

.crafts-category {
    display: block;
    color: var(--accent-gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.crafts-title {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 22px;
    line-height: 1.18;
}

.gold-italic {
    font-style: italic;
    color: var(--accent-gold-dark);
    font-family: var(--font-serif);
}

.crafts-description {
    color: #cbd5e1;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 530px;
    font-weight: 400;
}

.crafts-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.crafts-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #f1f5f9;
    font-size: 14.5px;
    margin-bottom: 16px;
    font-weight: 500;
}

.crafts-list i {
    color: var(--accent-gold-dark);
    font-size: 18px;
    flex-shrink: 0;
}

.btn-read-narrative {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-gold-dark);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-read-narrative:hover {
    color: #ffffff;
    transform: translateX(6px);
}


/* 8. DTC EMBASSY: THE GLOBAL STANDARD SECTION */

.global-standard-section {
    position: relative;
    padding: 95px 24px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)), url('../images/downtownback.png') center/cover no-repeat;
    overflow: hidden;
}

.global-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
}

.global-header {
    max-width: 860px;
    margin: 0 auto 52px auto;
}

.global-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.85);
}

.global-subtitle {
    color: #f1f5f9;
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 400;
    max-width: 780px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.global-carousel-wrapper {
    position: relative;
    width: 100%;
}

.global-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    text-align: left;
}

.global-card {
    background: rgba(5, 10, 18, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 28px 24px 24px 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
    min-height: 195px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.global-card:hover {
    transform: translateY(-4px);
    background: rgba(5, 10, 18, 0.55);
    border-color: var(--accent-gold-dark);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.card-icon {
    color: var(--accent-gold-dark);
    font-size: 26px;
    margin-bottom: 22px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.card-item-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.card-item-sub {
    color: #e2e8f0;
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.global-mobile-indicators {
    display: none;
}


/* 9. WELLNESS REDEFINED SECTION */

.wellness-section {
    background-color: #060b13;
    padding: 10px 24px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wellness-container {
    max-width: 1320px;
    margin: 0 auto;
}

.wellness-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 24px;
}

.wellness-title-box {
    text-align: left;
}

.wellness-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
}

.wellness-stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 330px;
    text-align: left;
}

.stat-divider {
    width: 2px;
    height: 48px;
    background-color: var(--accent-gold-dark);
    opacity: 0.85;
    flex-shrink: 0;
}

.stat-text {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-gold-dark);
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.95;
}

.wellness-carousel-wrapper {
    position: relative;
    width: 100%;
}

.wellness-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
}

.wellness-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.wellness-card-img-wrap {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.wellness-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.wellness-card:hover .wellness-img {
    transform: scale(1.04);
}

.wellness-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.wellness-card-desc {
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 96%;
}

.wellness-mobile-indicators {
    display: none;
}


/* 10. THE RESIDENCES SECTION */

.residences-section {
    background-color: #070d17;
    padding: 10px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.residences-container {
    max-width: 1280px;
    margin: 0 auto;
}

.residences-main-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.residences-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 54px;
    padding-bottom: 4px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-family: var(--font-primary);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 6px;
    position: relative;
    cursor: pointer;
    transition: color 0.25s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold-dark);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: #ffffff;
}

.tab-btn.active {
    color: var(--accent-gold-dark);
}

.tab-btn.active::after {
    width: 100%;
}

.residences-content-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
    text-align: left;
}

.residences-img-col {
    width: 100%;
}

.blurred-floorplan-card {
    background: #0b1320;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55);
    width: 100%;
}

.blurred-floorplan-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    filter: blur(9px);
    -webkit-filter: blur(9px);
    transform: scale(1.03);
    transition: filter 0.3s ease;
}

.residences-details-col {
    width: 100%;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.residence-type-heading {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 400;
    color: var(--accent-gold-dark);
    margin-bottom: 12px;
}

.residence-type-sub {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 34px;
}

.residence-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    margin-bottom: 40px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.spec-value {
    display: block;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.btn-download-specs {
    display: inline-block;
    border: 1px solid var(--accent-gold-dark);
    color: var(--accent-gold-dark);
    background: transparent;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-download-specs:hover {
    background-color: var(--accent-gold-dark);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(216, 158, 102, 0.35);
}


/* 11. THE LOCATION MATRIX SECTION */

.location-matrix-section {
    background-color: #050a12;
    padding: 10px 24px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.location-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.location-left-col {
    text-align: left;
}

.location-category {
    display: block;
    color: var(--accent-gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.location-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 34px;
    line-height: 1.2;
}

.location-timeline {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(216, 158, 102, 0.4);
    max-height: 480px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold-dark) transparent;
}

.location-timeline::-webkit-scrollbar {
    width: 4px;
}

.location-timeline::-webkit-scrollbar-thumb {
    background-color: var(--accent-gold-dark);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    margin-bottom: 22px;
    text-align: left;
}

.timeline-node {
    position: absolute;
    left: -27px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #050a12;
    border: 2px solid var(--accent-gold-dark);
    box-shadow: 0 0 0 3px rgba(216, 158, 102, 0.15);
}

.time-tag {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
}

.destination-name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.location-right-col {
    width: 100%;
}

.location-map-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 480px;
}

.location-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.location-map-card:hover .location-map-img {
    transform: scale(1.02);
}


/* 12. SECURE YOUR SKY HORIZON (INLINE CONTACT FORM SECTION) */

.sky-horizon-section {
    background-color: #060b13;
    padding: 95px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sky-horizon-container {
    max-width: 860px;
    margin: 0 auto;
}

.sky-badge-wrapper {
    margin-bottom: 22px;
}

.sky-horizon-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    display: block;
    white-space: nowrap;
}

.sky-horizon-subtitle {
    color: #cbd5e1;
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 42px auto;
    font-weight: 400;
}

.sky-horizon-card {
    background: rgba(10, 18, 28, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 38px 32px 34px 32px;
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
}

.sky-horizon-form {
    text-align: left;
}

.sky-form-group {
    margin-bottom: 22px;
}

.sky-consent-wrapper {
    margin: 22px 0 28px 0;
}

.dark-input {
    background-color: rgba(6, 12, 21, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    height: 48px !important;
}

.dark-input::placeholder {
    color: #64748b !important;
}

.dark-input:focus {
    border-color: var(--accent-gold-dark) !important;
    box-shadow: 0 0 0 3px rgba(216, 158, 102, 0.15) !important;
}


/* REDUCED BRIGHTNESS FOR PHONE DIVIDER BORDER LINE */

.phone-group-wrapper .iti__selected-flag {
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.dark-checkbox {
    color: #94a3b8 !important;
    font-size: 12px !important;
}

.dark-checkbox a {
    color: var(--accent-gold-dark) !important;
}

.btn-sky-submit {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #d89e66 0%, #c58b54 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(216, 158, 102, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-sky-submit:hover {
    background: linear-gradient(135deg, #e3a971 0%, #d3975e 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(216, 158, 102, 0.4);
}

.btn-sky-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* SUCCESS MODAL POPUP STYLING */

.success-popup-card {
    padding: 44px 36px 36px 36px !important;
}

.success-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #f0fdf4;
    color: #16a34a;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 22px rgba(22, 163, 74, 0.25);
}

@media (max-width: 991px) {
    .architectural-section {
        padding: 10px 16px;
    }
    .arch-title {
        font-size: 32px;
    }
    .arch-carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    .arch-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        padding: 10px 4px 20px 4px;
        -webkit-overflow-scrolling: touch;
    }
    .arch-grid::-webkit-scrollbar {
        display: none;
    }
    .arch-right-col {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }
    .arch-card {
        flex: 0 0 88vw;
        max-width: 380px;
        height: 360px;
        scroll-snap-align: center;
        border-radius: 18px;
    }
    .card-featured,
    .card-secondary {
        height: 360px;
    }
    .card-heading {
        font-size: 24px;
    }
    .card-description {
        font-size: 13px;
        max-width: 100%;
    }
    .mobile-carousel-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
    }
    .indicator-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.25);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .indicator-dot.active {
        width: 24px;
        border-radius: 10px;
        background-color: var(--accent-gold-dark);
    }
    .craftsmanship-section {
        padding: 10px 20px;
    }
    .crafts-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .crafts-img {
        height: 360px;
        border-radius: 18px;
    }
    .crafts-title {
        white-space: nowrap;
        font-size: 25px;
    }
    .crafts-description {
        font-size: 13.5px;
    }
    .global-standard-section {
        padding: 60px 16px;
    }
    .global-title {
        font-size: 30px;
    }
    .global-subtitle {
        font-size: 13.5px;
    }
    .global-cards-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        padding: 10px 4px 16px 4px;
        -webkit-overflow-scrolling: touch;
    }
    .global-cards-grid::-webkit-scrollbar {
        display: none;
    }
    .global-card {
        flex: 0 0 84vw;
        max-width: 320px;
        min-height: 185px;
        scroll-snap-align: center;
        border-radius: 16px;
    }
    .global-mobile-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 18px;
    }
    .wellness-section {
        padding: 10px 16px;
    }
    .wellness-title {
        font-size: 30px;
    }
    .wellness-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }
    .wellness-cards-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        padding: 10px 4px 16px 4px;
        -webkit-overflow-scrolling: touch;
    }
    .wellness-cards-grid::-webkit-scrollbar {
        display: none;
    }
    .wellness-card {
        flex: 0 0 84vw;
        max-width: 330px;
        scroll-snap-align: center;
    }
    .wellness-card-img-wrap {
        height: 220px;
        border-radius: 14px;
    }
    .wellness-card-title {
        font-size: 20px;
    }
    .wellness-card-desc {
        font-size: 13px;
    }
    .wellness-mobile-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 18px;
    }
    .residences-section {
        padding: 10px 16px;
    }
    .residences-main-title {
        font-size: 30px;
    }
    .residences-tabs {
        gap: 16px;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        padding-bottom: 8px;
        margin-bottom: 10px;
    }
    .residences-tabs::-webkit-scrollbar {
        display: none;
    }
    .tab-btn {
        font-size: 12px;
        white-space: nowrap;
    }
    .residences-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .blurred-floorplan-card {
        padding: 14px;
        border-radius: 16px;
    }
    .residence-type-heading {
        font-size: 30px;
    }
    .location-matrix-section {
        padding: 10px 16px;
    }
    .location-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .location-title {
        white-space: nowrap;
        font-size: 27px;
    }
    .location-map-card {
        height: 320px;
        border-radius: 16px;
    }
    .destination-name {
        font-size: 16px;
    }
    .sky-horizon-section {
        padding: 10px 16px;
    }
    .sky-horizon-title {
        font-size: 28px;
        white-space: normal;
    }
    .sky-horizon-subtitle {
        font-size: 13.5px;
    }
    .sky-horizon-card {
        padding: 24px 18px 22px 18px;
        border-radius: 16px;
    }
}


/* 13. FIXED FLOATING CONTACT BUTTONS (BOTTOM RIGHT) */

.floating-contact-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn-whatsapp-float {
    background-color: #25D366;
}

.btn-call-float {
    background-color: var(--accent-gold-dark);
}

.float-btn:hover {
    transform: scale(1.12);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

@media (max-width: 480px) {
    .floating-contact-bar {
        bottom: 18px;
        right: 18px;
        gap: 12px;
    }
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }
}


/* 14. POPUP FORM MODAL STYLES */

.enquire-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 20, 28, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    padding: 20px;
}

.enquire-modal.active {
    opacity: 1;
    visibility: visible;
}

.luxury-popup-card {
    background-color: #ffffff;
    color: #111111;
    border-radius: 28px;
    width: 100%;
    max-width: 490px;
    padding: 42px 36px 36px 36px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.enquire-modal.active .luxury-popup-card {
    transform: scale(1);
}

.modal-close-round {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f3f6;
    border: none;
    color: #334155;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-round:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

.popup-badge-wrapper {
    margin-bottom: 18px;
}

.badge-pill-outline {
    display: inline-block;
    border: 1px solid var(--accent-gold-dark);
    color: var(--accent-gold-dark);
    border-radius: 50px;
    padding: 5px 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.popup-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 14px;
}

.gold-serif {
    font-family: var(--font-serif);
    color: var(--accent-gold-dark);
    font-weight: 400;
}

.popup-subtitle {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.55;
    max-width: 390px;
    margin: 0 auto 26px auto;
}

.popup-form {
    text-align: left;
}

.form-response-msg {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
    text-align: center;
}

.form-response-msg.error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-response-msg.success {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.form-group-custom {
    margin-bottom: 16px;
}

.custom-input {
    width: 100%;
    height: 52px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 18px;
    font-size: 15px;
    color: #1e293b;
    font-family: var(--font-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-input::placeholder {
    color: #94a3b8;
}

.custom-input:focus {
    outline: none;
    border-color: var(--accent-gold-dark);
    box-shadow: 0 0 0 3px rgba(216, 158, 102, 0.15);
}


/* INTL-TEL-INPUT CUSTOM STYLING */

.phone-group-wrapper {
    width: 100%;
    margin-bottom: 16px;
}

.phone-group-wrapper .iti {
    width: 100%;
    display: block;
}

.phone-group-wrapper .iti__selected-flag {
    background-color: transparent;
    padding: 0 12px 0 16px;
    border-right: 1px solid #e2e8f0;
    border-radius: 12px 0 0 12px;
    transition: background-color 0.2s ease;
}

.phone-group-wrapper .iti__selected-flag:hover {
    background-color: #f8fafc;
}

.phone-group-wrapper .iti__selected-dial-code {
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
    margin-left: 6px;
}

.phone-group-wrapper .iti__country-list {
    z-index: 2500;
    color: #0f172a;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid #e2e8f0;
    margin-top: 6px;
    max-height: 200px;
    font-size: 13px;
    overflow-y: auto;
}

.phone-group-wrapper .iti__country {
    padding: 8px 12px;
}

.phone-group-wrapper input.phone-input {
    width: 100% !important;
    height: 52px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    padding-left: 95px !important;
    font-size: 15px;
    color: #1e293b;
    font-family: var(--font-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-group-wrapper input.phone-input:focus {
    outline: none;
    border-color: var(--accent-gold-dark);
    box-shadow: 0 0 0 3px rgba(216, 158, 102, 0.15);
}

.form-group-consent {
    margin: 18px 0 24px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    accent-color: var(--accent-gold-dark);
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.consent-text a {
    color: var(--accent-gold-dark);
    text-decoration: none;
    font-weight: 600;
}

.consent-text a:hover {
    text-decoration: underline;
}

.btn-popup-submit {
    width: 100%;
    height: 52px;
    background-color: var(--accent-gold-dark);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(216, 158, 102, 0.25);
}

.btn-popup-submit:hover {
    background-color: #c58b54;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(216, 158, 102, 0.4);
}

.btn-popup-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 576px) {
    .luxury-popup-card {
        padding: 34px 22px 28px 22px;
        border-radius: 22px;
    }
    .popup-title {
        font-size: 30px;
    }
    .popup-subtitle {
        font-size: 12.5px;
    }
}


/* 15. THANK YOU PAGE STYLES */

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thank-you-card {
    background-color: var(--bg-navbar);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 560px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.thank-you-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: #121212;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: 0 10px 25px rgba(223, 178, 136, 0.3);
}

.thank-you-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--text-light);
    margin: 16px 0;
}

.thank-you-title span {
    color: var(--accent-gold);
}

.thank-you-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-thank-you {
    padding: 14px 36px;
    font-size: 15px;
}


/* 16. FOOTER STYLES */

.site-footer {
    background-color: #121212;
    padding: 10px 24px 30px 24px;
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-brand-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand-wrap .partner-text {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    margin-top: 4px;
    line-height: 1.2;
    white-space: nowrap;
}

.footer-brand-logo {
    max-height: 48px;
    margin-bottom: 4px;
}

.footer-bullets {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.footer-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-bullets i {
    color: var(--accent-gold);
}

.footer-mobile-brand {
    display: none;
    text-align: center;
    margin-bottom: 30px;
}

.footer-mobile-logo {
    max-height: 45px;
}

.footer-mobile-brand h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.footer-mobile-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-divider {
    border: 0;
    border-top: 1px solid var(--border-subtle);
    margin: 30px 0;
}

.footer-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.footer-contact-item h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-contact-item a,
.footer-contact-item p {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-contact-item a:hover {
    color: var(--text-light);
}

.footer-rera,
.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 20px;
    text-align: center !important;
}

.footer-rera p,
.footer-disclaimer p {
    text-align: center !important;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: nowrap !important;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    white-space: nowrap !important;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.link-separator {
    color: var(--border-subtle);
}

.footer-copyright-bar {
    text-align: center;
    padding-top: 20px;
    color: #777;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .footer-top {
        display: none;
    }
    .footer-mobile-brand {
        display: block;
    }
    .footer-contact {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    .footer-contact-item h4 {
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
    }
    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 0.75rem !important;
        line-height: 1.35 !important;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 8px !important;
    }
    .footer-links a {
        font-size: 0.76rem !important;
    }
}