/* ============================================
   Saya Rajnagar Extension — Premium Real Estate
   ============================================ */

:root {
    /* Primary – warm amber/gold (luxury, trust) */
    --primary: #b8860b;
    --primary-light: #d4a84b;
    --primary-dark: #8b6914;
    --primary-soft: rgba(184, 134, 11, 0.1);
    --primary-border: rgba(184, 134, 11, 0.3);
    --gold: #b8860b;
    --gold-light: #d4a84b;
    --gold-dark: #8b6914;
    /* Dark – deep navy/slate */
    --navy: #0d1117;
    --navy-soft: #161b22;
    --charcoal: #21262d;
    /* Neutrals */
    --cream: #f8f7f5;
    --cream-dark: #ebe9e6;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f5f4f2;
    --line: #e8e6e3;
    /* Shadows */
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-mid: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 6px 20px rgba(184, 134, 11, 0.2);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

/* ========== Keyframe Animations ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.35); }
    50% { box-shadow: 0 0 0 12px rgba(184, 134, 11, 0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    50% { transform: translate(10px, -10px) rotate(5deg); opacity: 0.9; }
}

/* ========== Scroll-triggered animations ========== */
@keyframes scrollFadeInUp {
    from { opacity: 0; transform: translateY(36px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollFadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scrollFadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scrollZoomIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate--left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate--left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate--right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate--right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate--zoom {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate--zoom.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for grid items */
.row.g-4 > *:nth-child(1) .scroll-animate { transition-delay: 0s; }
.row.g-4 > *:nth-child(2) .scroll-animate { transition-delay: 0.08s; }
.row.g-4 > *:nth-child(3) .scroll-animate { transition-delay: 0.16s; }
.row.g-4 > *:nth-child(4) .scroll-animate { transition-delay: 0.24s; }
.row.g-4 > *:nth-child(5) .scroll-animate { transition-delay: 0.32s; }
.row.g-4 > *:nth-child(6) .scroll-animate { transition-delay: 0.4s; }

.row.g-3 > *:nth-child(1) .scroll-animate { transition-delay: 0s; }
.row.g-3 > *:nth-child(2) .scroll-animate { transition-delay: 0.1s; }
.row.g-3 > *:nth-child(3) .scroll-animate { transition-delay: 0.2s; }
.row.g-3 > *:nth-child(4) .scroll-animate { transition-delay: 0.3s; }
.row.g-3 > *:nth-child(5) .scroll-animate { transition-delay: 0.4s; }
.row.g-3 > *:nth-child(6) .scroll-animate { transition-delay: 0.5s; }

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    font-size: 1rem;
    line-height: 1.6;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

body.lead-gate-active {
    overflow: hidden;
}

body.lead-gate-active > *:not(.lead-gate) {
    pointer-events: none;
    user-select: none;
}

body.lead-gate-active .lead-gate,
body.lead-gate-active .lead-gate * {
    pointer-events: auto;
}

.container {
    max-width: 1120px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* ---- Navbar ---- */
.navbar {
    background: rgba(13, 17, 23, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar .container {
    max-width: 1140px;
}

.navbar.scrolled {
    background: rgba(13, 17, 23, 0.94) !important;
    backdrop-filter: blur(12px);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    border-bottom-color: rgba(184, 134, 11, 0.16);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: var(--white) !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--gold-light) !important;
}

.navbar.scrolled .brand-accent {
    color: var(--gold-light) !important;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white) !important;
}

.brand-accent {
    color: var(--gold);
    font-weight: 800;
}

.nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--gold-light) !important;
}

.btn-cta {
    background: var(--primary);
    color: var(--navy) !important;
    border: none;
    font-weight: 600;
    border-radius: var(--radius);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
    background: var(--gold-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../image/gold-avenue-banner.webp');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(13, 17, 23, 0.88) 0%, rgba(13, 17, 23, 0.75) 45%, rgba(13, 17, 23, 0.55) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding-top: 5.5rem;
    padding-bottom: 4rem;
}

.hero-content {
    color: #fff;
}

.hero-kicker {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-heading {
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 0.9rem 0;
    color: #fff;
}

.hero-heading-accent {
    color: var(--gold-light);
    display: block;
    margin-top: 0.15em;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 0 1.75rem 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy) !important;
    background: var(--gold);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-cta:hover {
    background: var(--gold-light);
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff !important;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-trust-item strong {
    color: #fff;
    font-weight: 700;
    margin-right: 0.25rem;
}

/* Hero form card */
.hero-form-card {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.25);
    padding: 2rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-form-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0 0 0.5rem 0;
}

.hero-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.hero-form-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 1.35rem 0;
    line-height: 1.45;
}

.hero-input {
    border-radius: 8px;
    padding: 0.8rem 1rem;
    border: 1px solid var(--line);
    background: #f8f7f5;
    font-size: 0.95rem;
}

.hero-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--primary-soft);
    outline: none;
}

.hero-submit {
    border-radius: 8px;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    background: var(--primary);
    color: var(--navy) !important;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35);
}

/* Hero success popup */
.hero-modal-content {
    border-radius: 14px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 20px 60px rgba(13, 17, 23, 0.2);
}
.hero-modal-icon {
    font-size: 3.5rem;
    color: var(--primary);
}
.hero-modal-title {
    color: var(--navy);
    font-weight: 700;
}
.hero-modal-message {
    color: var(--body);
    font-size: 1.05rem;
}
.hero-modal-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.6rem 2rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hero-modal-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
}

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
    z-index: 2;
}

.hero-scroll:hover {
    color: var(--gold-light);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(-50%) translateY(3px);
}

/* ---- Sections ---- */
section {
    scroll-margin-top: 88px;
}

.section {
    padding: 4.5rem 0;
    background: var(--white);
    position: relative;
}

.section .container {
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--cream);
    position: relative;
}

/* Section header block */
.section > .container > .text-center.mb-5,
.section-alt > .container > .text-center.mb-5 {
 
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.75rem !important;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.section-label-light {
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    font-size: clamp(1.6rem, 3.2vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.28;
}

.section-title.has-underline {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title.has-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 3px;
    border-radius: 2px;
    background: var(--primary);
}

.text-center .section-title.has-underline::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title-light.has-underline-light {
    color: var(--white);
}

.section-title-light.has-underline-light::after {
    background: var(--gold-light);
}

.section-accent {
    display: none;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.6;
}

.section .text-center .section-desc.mx-auto {
    max-width: 560px;
    margin-top: 0.25rem;
}

.section .lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.65;
}

.section p {
    color: var(--text);
    margin-bottom: 0.85em;
    line-height: 1.6;
    font-size: 0.9875rem;
}

/* ---- About Developer section ---- */
#developer .section-desc {
    max-width: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow);
}

#developer .section-desc p {
    margin-bottom: 0.9rem;
}

#developer .section-desc p:last-child {
    margin-bottom: 0;
}

#developer .section-label {
    text-align: center;
}

#developer .section-title.has-underline::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ---- Download Brochure strip ---- */
.section-alt.py-4 .container {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-top: 1px solid var(--line);
}

.section-alt.py-4 .btn-cta {
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius);
}

/* ---- About ---- */
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-mid);
    border: 1px solid var(--line);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* ---- About / Overview ---- */
#about {
    background: linear-gradient(180deg, #f8f7f4 0%, #f4f2ed 100%);
}

.overview-panel {
    padding: 2rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(13, 17, 23, 0.08);
    box-shadow: 0 18px 42px rgba(13, 17, 23, 0.06);
}

#about .overview-panel .section-label {
    color: var(--gold-dark);
    letter-spacing: 0.12em;
}

#about .overview-panel .section-title {
    max-width: 100%;
    color: var(--navy);
}

#about .overview-panel .overview-headline {
    margin-bottom: 1rem;
    font-size: clamp(1.85rem, 4.2vw, 2.65rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 800;
}

#about .overview-panel .lead {
    color: #2f3a49 !important;
    font-size: 1.06rem;
    font-weight: 500;
    line-height: 1.75;
}

#about .overview-panel p {
    color: #5b6470;
}

.overview-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.2rem;
    margin-bottom: 0.2rem;
}

.overview-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.85rem;
    border-radius: 999px;
    background: #f3efe7;
    border: 1px solid rgba(184, 134, 11, 0.12);
    color: #6d5830;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.overview-stat-grid {
    margin-top: 1.35rem !important;
}

#about .overview-stat-grid .feature-box {
    height: 100%;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: #fbfaf7;
    border: 1px solid rgba(13, 17, 23, 0.07);
    box-shadow: none;
}

#about .overview-stat-grid .feature-box::before {
    display: none;
}

#about .overview-stat-grid .feature-box:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 134, 11, 0.16);
    box-shadow: 0 10px 24px rgba(13, 17, 23, 0.05);
}

#about .overview-stat-grid .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(184, 134, 11, 0.1);
    color: var(--gold-dark);
}

#about .overview-stat-grid strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

#about .overview-stat-grid .text-muted {
    color: #6d7480 !important;
}

.overview-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overview-visual .about-image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(13, 17, 23, 0.08);
    box-shadow: 0 18px 40px rgba(13, 17, 23, 0.07);
    background: #ffffff;
    aspect-ratio: 4 / 3;
}

.overview-visual .about-image::after {
    display: none;
}

.overview-visual .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-floating-card {
    position: static;
    padding: 1.15rem 1.2rem;
    border-radius: 20px;
    background: #ffffff;
    color: var(--text);
    border: 1px solid rgba(13, 17, 23, 0.08);
    box-shadow: 0 12px 28px rgba(13, 17, 23, 0.05);
}

.overview-floating-label {
    margin-bottom: 0.45rem;
    color: var(--gold-dark);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.overview-floating-card .compact-list {
    padding-left: 1rem;
    color: #5b6470;
}

.overview-floating-card .compact-list li {
    margin-bottom: 0.35rem;
}

.overview-floating-card .compact-list li:last-child {
    margin-bottom: 0;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-box:hover {
    box-shadow: var(--shadow-mid);
    border-color: rgba(184, 134, 11, 0.2);
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    color: var(--gold-dark);
    font-size: 1.2rem;
    border-radius: var(--radius);
}

/* ---- Amenities ---- */
.amenity-stat {
    padding: 1.75rem 1rem;
    border-radius: var(--radius);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-mid);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amenity-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.amenity-stat-1 { background: var(--navy); }
.amenity-stat-2 { background: #0d6b3a; }
.amenity-stat-3 { background: var(--charcoal); }
.amenity-stat-4 { background: var(--gold-dark); }

.amenity-number {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.amenity-stat p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ---- Cards (unified) ---- */
.card-feature {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: var(--radius) 0 0 var(--radius);
}

.card-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-mid);
    border-color: rgba(184, 134, 11, 0.2);
}

.card-feature:hover .card-icon {
    color: var(--gold);
}

.card-feature .card-icon {
    transition: color 0.2s ease;
}

.card-icon {
    font-size: 1.6rem;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.75rem;
}

.card-feature .card-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.card-feature .card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.card-feature .card-body {
    padding: 1.35rem 1.35rem 1.35rem 1.5rem;
}

.card-feature .project-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    background: var(--primary-soft);
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-feature .compact-list {
    margin-top: 0.65rem;
    margin-bottom: 0;
    padding-left: 1.1rem;
}

.card-feature .compact-list li {
    margin-bottom: 0.35rem;
    line-height: 1.5;
    font-size: 0.875rem;
}

/* ---- Gallery ---- */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.82) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--gold-light);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ---- Location / Specs / Interior cards ---- */
.card-location {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-location::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: var(--radius) 0 0 var(--radius);
}

.card-location:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-mid);
    border-color: rgba(184, 134, 11, 0.2);
}

.card-location .card-body {
    padding: 1.35rem 1.35rem 1.35rem 1.5rem;
}

.card-location .compact-list {
    margin-bottom: 0;
}

.card-location .compact-list li {
    margin-bottom: 0.4rem;
    line-height: 1.5;
    font-size: 0.875rem;
}

.location-num {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold-dark);
    background: var(--primary-soft);
    padding: 0.35rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.card-location .card-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-location .card-text,
.card-location .text-muted {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ---- Pricing ---- */
.section-pricing {
    background: var(--navy);
    color: var(--white);
}

.section-pricing .pricing-subtitle {
    color: rgba(255, 255, 255, 0.8) ;
    font-size: 1rem;
    
    margin: 0 auto;
    line-height: 1.55;
}
.section-pricing .section-label-light{
    color: #b8860b;
}

.pricing-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: background 0.2s ease;
}

.pricing-stat:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-value {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.35rem;
}

.pricing-stat p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

.card-pricing {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-mid);
}

.card-pricing .card-icon {
    color: var(--gold-dark);
}

.table-shell {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-mid);
    border: 1px solid var(--line);
}

.table-shell .table {
    margin-bottom: 0;
    background: var(--white);
}

.mini-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ---- CTA ---- */
.section-cta {
    background: var(--navy);
    color: var(--white);
    padding: 4.5rem 0;
    position: relative;
}

.section-cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.btn-cta-outline {
    background: transparent;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-cta-outline:hover {
    border-color: var(--gold-light);
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-light) !important;
}

/* ---- FAQ ---- */
.accordion-faq .accordion-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.accordion-faq .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--white);
    padding: 1rem 1.25rem;
}

.accordion-faq .accordion-button:not(.collapsed) {
    background: var(--cream);
    color: var(--gold-dark);
    border-bottom: 1px solid var(--line);
}

.accordion-faq .accordion-button:focus {
    box-shadow: none;
}

.accordion-faq .accordion-button::after {
    filter: none;
}

.accordion-faq .accordion-body {
    padding: 1rem 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ---- Contact ---- */
.card-contact {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-contact::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: var(--radius) 0 0 var(--radius);
}

.card-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-mid);
}

.card-contact .card-body {
    padding: 1.35rem 1.35rem 1.35rem 1.5rem;
}

.contact-icon {
    font-size: 1.75rem;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--text-muted) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--gold-dark) !important;
}

/* ---- Design Refresh Overrides ---- */
.section-desc.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.feature-box:hover {
    box-shadow: var(--shadow-mid);
}


.section-pricing .table-shell {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.section-pricing .table-shell .table {
    background: var(--white);
}

.section-pricing .table > :not(caption) > * > * {
    padding: 0.85rem 1rem;
    border-bottom-color: var(--line);
}

.section-pricing .table thead.table-dark th {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-pricing .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(184, 134, 11, 0.03);
}

.section-pricing .table-hover > tbody > tr:hover > * {
    background-color: rgba(184, 134, 11, 0.06);
}

.section-pricing .mini-note {
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.75rem;
}

.cta-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.contact-link {
    color: var(--navy) !important;
    font-weight: 600;
}

/* Location Map */
.map-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.location-map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f0f0f0;
}

.location-map {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    transition: background 0.2s ease, color 0.2s ease;
}

.map-link-btn:hover {
    background: rgba(184, 134, 11, 0.18);
    color: var(--gold-dark);
}

/* Free Consultation block */
.consultation-block {
    background: #f5f4f1;
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.consultation-info {
    padding-right: 1rem;
}

.consultation-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--primary-soft);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.consultation-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0 0 0.75rem 0;
}

.consultation-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.consultation-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.consultation-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.consultation-list li i {
    color: var(--gold);
    font-size: 1.1rem;
}

.consultation-phone {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.consultation-phone a {
    color: var(--gold-dark);
    font-weight: 700;
    text-decoration: none;
}

.consultation-phone a:hover {
    color: var(--gold);
}

.consultation-form-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.consultation-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.consultation-input {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consultation-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--primary-soft);
    outline: none;
}

.consultation-input::placeholder {
    color: #888;
}

.consultation-textarea {
    min-height: 90px;
    resize: vertical;
}

.consultation-submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy) !important;
    background: var(--gold);
    border: none;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.consultation-submit:hover {
    background: var(--gold-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184, 134, 11, 0.3);
}

@media (max-width: 991px) {
    .consultation-info {
        padding-right: 0;
        text-align: center;
    }

    .consultation-list {
        display: inline-block;
        text-align: left;
    }
}

.form-control {
    border-radius: var(--radius-sm);
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.18);
}

/* ---- Mandatory Lead Popup ---- */
.lead-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.lead-gate--hidden {
    display: none;
}

.lead-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 17, 23, 0.78);
    backdrop-filter: blur(6px);
}

.lead-gate__dialog {
    position: relative;
    width: min(100%, 480px);
    background: #fff;
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid rgba(184, 134, 11, 0.18);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.lead-gate__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.lead-gate__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}

.lead-gate__text {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.96rem;
}

.lead-gate__field + .lead-gate__field {
    margin-top: 0.9rem;
}

.lead-gate__label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.lead-gate__input {
    min-height: 42px;
    border-radius: 12px;
    border-color: rgba(13, 17, 23, 0.1);
    background: #fbfaf7;
}

.lead-gate__submit {
    margin-top: 1.25rem;
    min-height: 52px;
    border: none;
    border-radius: 12px;
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-gate__submit:hover,
.lead-gate__submit:focus {
    background: var(--gold-dark);
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(184, 134, 11, 0.3);
    transform: translateY(-1px);
}

/* ---- Footer ---- */
/* ---- Footer ---- */
.footer {
    background:
        radial-gradient(circle at top right, rgba(184, 134, 11, 0.12), transparent 24%),
        linear-gradient(180deg, #11161d 0%, #0d1117 100%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.footer-logo-accent {
    color: var(--gold-light);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0.75rem 0 0 0;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact li i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--gold-light);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-dev {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    border-top: none;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: var(--gold-light);
}

.footer-rera {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--primary-border);
    border-radius: 100px;
}

@media (max-width: 767px) {
    .footer-main {
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-links,
    .footer-contact {
        display: inline-block;
        text-align: left;
    }
}

/* ---- Floating CTA ---- */
.float-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 24px rgba(184, 134, 11, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.float-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(184, 134, 11, 0.42);
    color: var(--navy) !important;
}

.float-cta .float-cta-text {
    position: absolute;
    right: calc(100% + 12px);
    white-space: nowrap;
    background: var(--navy);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.float-cta:hover .float-cta-text {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(13, 17, 23, 0.98);
        padding: 1rem;
        border-radius: var(--radius-sm);
        margin-top: 0.5rem;
    }

    .navbar .btn-cta {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        padding-top: 5.5rem;
        padding-bottom: 3.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-btn-cta,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        gap: 1rem;
    }

    .section,
    .section-alt {
        padding: 3.5rem 0;
    }

    .section > .container > .text-center.mb-5,
    .section-alt > .container > .text-center.mb-5 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        margin-bottom: 2.25rem !important;
    }

    .card-feature .card-body,
    .card-location .card-body,
    .card-contact .card-body {
        padding: 1.35rem;
    }

    .pricing-stat {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .section-cta .container {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .overview-panel {
        padding: 1.4rem;
        border-radius: 24px;
    }

    #about .overview-panel .section-title {
        max-width: 100%;
    }

    #about .overview-panel .overview-headline {
        font-size: clamp(1.55rem, 7.5vw, 2.1rem);
        line-height: 1.12;
    }

    .overview-visual .about-image {
        border-radius: 24px;
    }

    .overview-visual .about-image img {
        min-height: 0;
    }

    .overview-floating-card {
        position: static;
        margin-top: 0;
        left: auto;
        right: auto;
    }

    .gallery-item img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .hero-bg {
        background-attachment: scroll;
    }

    .hero-overlay {
        background: rgba(13, 17, 23, 0.88);
    }

    .hero-heading {
        font-size: 1.75rem;
    }

    .hero-form-card {
        padding: 1.5rem 1.25rem;
        border-radius: 14px;
    }

    .feature-box,
    .card-feature,
    .card-location,
    .card-contact,
    .accordion-faq .accordion-item {
        border-radius: 18px;
    }

    .accordion-faq .accordion-button,
    .accordion-faq .accordion-body {
        padding-left: 1.05rem;
        padding-right: 1.05rem;
    }

    .overview-tag-row {
        gap: 0.45rem;
    }

    .overview-tag {
        font-size: 0.72rem;
        padding: 0.46rem 0.75rem;
    }

    #about .overview-stat-grid .feature-box {
        border-radius: 18px;
    }

    .overview-floating-card {
        padding: 1rem;
        border-radius: 18px;
    }

    .float-cta .float-cta-text {
        display: none;
    }

    .location-map {
        height: 280px;
    }

    .lead-gate {
        padding: 1rem;
    }

    .lead-gate__dialog {
        padding: 1.4rem 1.15rem;
        border-radius: 18px;
    }
}

/* ---- Legal Pages ---- */
.legal-page {
    min-height: 100vh;
    background: #f7f7f7;
}

.legal-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 7rem 1rem 3rem;
}

.legal-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.legal-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.legal-card h2 {
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 700;
    margin-top: 1.5rem;
}

.legal-card p,
.legal-card li {
    color: var(--text);
    line-height: 1.7;
}

.legal-card ul {
    padding-left: 1.2rem;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.5rem;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
}

.legal-back:hover {
    color: var(--gold);
}
