/* ═══════════════════════════════════════════════════════════
   BRILLIANCE GROUP — LUXURY REAL ESTATE
   Premium CSS · Production-Ready
   ═══════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
    --gold: #c8a96e;
    --gold-light: #d4bc8a;
    --gold-dark: #a8884e;
    --gold-glow: rgba(200, 169, 110, 0.15);
    --black: #0a0a0a;
    --black-soft: #111111;
    --black-card: #151515;
    --black-elevated: #1a1a1a;
    --white: #ffffff;
    --white-soft: #f5f0eb;
    --gray-100: #e8e4df;
    --gray-200: #c4bfb8;
    --gray-300: #9a9590;
    --gray-400: #6b6660;
    --gray-500: #4a4540;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-gold: 0 4px 30px rgba(200, 169, 110, 0.08);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.3);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.4);
    --container-max: 1280px;
    --container-padding: clamp(1.25rem, 4vw, 3rem);
    --section-spacing: clamp(5rem, 10vw, 9rem);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--transition-smooth);
}

ul { list-style: none; }

::selection {
    background: var(--gold);
    color: var(--black);
}

/* ─── UTILITY ─── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-left { text-align: left; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ─── SECTION COMMON ─── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-tag::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.section-desc {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--gray-300);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 169, 110, 0.3);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary span,
.btn-primary svg { position: relative; z-index: 1; }

.btn-primary svg {
    transition: transform 0.3s var(--transition-smooth);
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 0.9rem;
}

/* ═══════════════════ NAVIGATION ═══════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 1001;
}

.logo-icon {
    color: var(--gold);
    display: flex;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
}

.logo-accent {
    color: var(--gold);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-300);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--transition-smooth);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-link-cta {
    color: var(--gold);
    border: 1px solid rgba(200, 169, 110, 0.3);
    padding: 0.5rem 1.25rem;
    letter-spacing: 0.12em;
}

.nav-link-cta::after { display: none; }

.nav-link-cta:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    left: 0;
    transition: all 0.3s;
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { bottom: 0; transform: rotate(-45deg); }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.65) 0%,
        rgba(10, 10, 10, 0.45) 40%,
        rgba(10, 10, 10, 0.7) 70%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--black), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    padding: 0 var(--container-padding);
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge span {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.badge-line {
    width: 30px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.75rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--gray-200);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.75rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--white);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--gold);
    font-weight: 500;
}

.stat-dollar {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--gold);
    font-weight: 500;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(200, 169, 110, 0.2);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════ FEATURE STRIP ═══════════════════ */
.feature-strip {
    padding: var(--section-spacing) 0;
    background: var(--black);
    position: relative;
}

.strip-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.strip-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.strip-text {
    font-family: var(--font-accent);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    color: var(--gray-200);
    text-align: center;
    line-height: 1.9;
    font-weight: 400;
}

.strip-accent {
    color: var(--gold);
    font-style: italic;
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services {
    padding: var(--section-spacing) 0;
    background: var(--black-soft);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.15), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 110, 0.15);
    box-shadow: var(--shadow-elevated);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    color: var(--gold);
    margin-bottom: 2rem;
    transition: transform 0.5s var(--transition-smooth);
}

.service-card:hover .service-icon { transform: scale(1.1); }

.service-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.75;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--transition-smooth);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link svg {
    transition: transform 0.3s var(--transition-smooth);
}

.service-link:hover svg { transform: translateX(4px); }

/* ═══════════════════ WHY CHOOSE US ═══════════════════ */
.why-us {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-us-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.why-us-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.88) 50%,
        rgba(10, 10, 10, 0.75) 100%
    );
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-desc {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.85;
    margin-top: 1.5rem;
}

.why-us-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--transition-smooth);
}

.why-card:hover {
    background: rgba(200, 169, 110, 0.05);
    border-color: rgba(200, 169, 110, 0.15);
    transform: translateX(8px);
}

.why-card-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
    flex-shrink: 0;
}

.why-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.why-card-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ═══════════════════ PROPERTIES / GALLERY ═══════════════════ */
.properties {
    padding: var(--section-spacing) 0;
    background: var(--black);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.property-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 169, 110, 0.12);
    box-shadow: var(--shadow-elevated);
}

.property-card-large {
    grid-column: span 2;
}

.property-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.property-card-large .property-img-wrap {
    aspect-ratio: 21 / 10;
}

.property-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition-smooth);
}

.property-card:hover .property-img-wrap img {
    transform: scale(1.06);
}

.property-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, transparent 50%);
    transition: opacity 0.4s;
}

.property-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    z-index: 1;
}

.property-info {
    padding: 1.75rem 1.75rem 2rem;
}

.property-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.35rem;
    transition: color 0.3s;
}

.property-card:hover .property-name { color: var(--gold); }

.property-location {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.property-details {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--gray-300);
    margin-bottom: 1.25rem;
}

.detail-dot {
    width: 3px;
    height: 3px;
    background: var(--gray-400);
    border-radius: 50%;
    display: inline-block;
}

.property-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: -0.01em;
}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials {
    padding: var(--section-spacing) 0;
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

.testimonials-bg-accent {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2.5rem 2rem;
    transition: all 0.5s var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: rgba(200, 169, 110, 0.12);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.75rem;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--gray-200);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    top: -1.25rem;
    left: -0.25rem;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.15;
    font-family: var(--font-display);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(200, 169, 110, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.1rem;
}

/* ═══════════════════ TRUST BADGES ═══════════════════ */
.trust {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--black);
    position: relative;
}

.trust::before,
.trust::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.1), transparent);
}

.trust::before { top: 0; }
.trust::after { bottom: 0; }

.trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gray-200);
}

.trust-title em {
    font-style: italic;
    color: var(--gold);
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    transition: transform 0.3s var(--transition-smooth);
}

.trust-badge:hover { transform: translateY(-4px); }

.trust-badge-icon {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(200, 169, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s;
}

.trust-badge:hover .trust-badge-icon {
    background: rgba(200, 169, 110, 0.08);
    border-color: rgba(200, 169, 110, 0.3);
}

.trust-badge-text {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-300);
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.94) 0%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2.5rem;
    background: rgba(200, 169, 110, 0.06);
    border: 1px solid rgba(200, 169, 110, 0.2);
    transition: all 0.4s var(--transition-smooth);
    margin-bottom: 2.5rem;
}

.contact-phone:hover {
    background: rgba(200, 169, 110, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.phone-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.phone-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.phone-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.phone-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.contact-phone:hover .phone-number { color: var(--gold); }

.phone-arrow {
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s var(--transition-smooth);
}

.contact-phone:hover .phone-arrow {
    opacity: 1;
    transform: translateX(0);
}

.contact-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.address-icon {
    color: var(--gold);
    flex-shrink: 0;
    opacity: 0.6;
}

/* ═══════════════════ FINAL CTA ═══════════════════ */
.final-cta {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-decoration {
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--gray-300);
    max-width: 550px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
    padding: 5rem 0 0;
    background: var(--black);
    border-top: 1px solid rgba(200, 169, 110, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-about {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.75;
    margin-top: 1.25rem;
    max-width: 300px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1.5rem;
}

.footer-rating span {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-left: 0.5rem;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--gray-400);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-info li {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-contact-info a {
    color: var(--gold);
}

.footer-contact-info a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us-left { text-align: center; }
    .section-title.text-left { text-align: center; }
    .why-us-desc { max-width: 600px; margin-left: auto; margin-right: auto; }
    .why-us-left .btn { margin-left: auto; margin-right: auto; display: inline-flex; }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-card-large {
        grid-column: span 2;
    }

    .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        justify-self: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s var(--transition-smooth);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .property-card-large {
        grid-column: span 1;
    }

    .testimonials-track {
        grid-template-columns: 1fr;
    }

    .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn { width: 100%; justify-content: center; max-width: 320px; }
    .contact-phone { flex-direction: column; text-align: center; }
    .phone-info { text-align: center; }
    .phone-arrow { display: none; }

    .trust-badges {
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-scroll-indicator { display: none; }

    .why-card { flex-direction: column; gap: 0.75rem; }
    .why-card-number { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .property-info {
        padding: 1.25rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .cta-content .btn {
        width: 100%;
    }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    html { scroll-behavior: auto; }
}