/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://abudhabifinder.com/
Description: Premium Custom Child Theme for ABU DHABI FINDS directory platform.
Author: Antigravity AI
Author URI: https://abudhabifinder.com/
Template: twentytwentyfive
Version: 1.0.0
Text Domain: twentytwentyfive-child
*/

/* Import Premium Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Reset and Core Design Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-surface: #1a1a1a;
    --bg-surface-elevated: #242424;
    --accent-gold: #c5a880;
    --accent-gold-hover: #d4af37;
    --accent-gold-muted: rgba(197, 168, 128, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #262626;
    --border-color-hover: #3a3a3a;
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Body Styles */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Header & Navigation */
.site-header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.site-logo span {
    color: var(--accent-gold);
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--accent-gold);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL-DRIVEN VIDEO HERO SECTION
   Apple-style scroll-synced video with GSAP overlays
   ═══════════════════════════════════════════════════════════════ */

/* Scroll room container — tall to allow scroll-driven video */
.scroll-video-section {
    position: relative;
    height: 500vh;
    background: var(--bg-primary);
}

/* Sticky viewport — stays pinned while user scrolls */
.scroll-video-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ScrollyVideo container — fills the viewport */
.scroll-video-sticky #scrolly-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Ensure ScrollyVideo canvas/video covers viewport */
.scroll-video-sticky #scrolly-video canvas,
.scroll-video-sticky #scrolly-video video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Static fallback poster (shown before video loads / reduced motion) */
.scroll-video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: brightness(0.5);
    transition: opacity 1s ease;
}

.scroll-video-poster.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Dark gradient overlay on top of video */
.scroll-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center top, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.95) 100%),
        linear-gradient(to bottom, transparent 0%, transparent 60%, var(--bg-primary) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Hero content layer — centered over the video */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    will-change: transform, opacity;
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-title span {
    background: linear-gradient(135deg, #ffffff 30%, #c5a880 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll Progress Indicator — bouncing arrow at bottom */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.scroll-indicator.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator-text {
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
}

.scroll-indicator-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(-45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}

/* Floating Stats Section — appears mid-scroll */
.scroll-stats {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 24px;
    opacity: 0;
    will-change: transform, opacity;
}

.scroll-stat-card {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.scroll-stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
    line-height: 1.2;
}

.scroll-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: 4px;
    display: block;
}

/* Video load progress bar */
.scroll-video-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-hover));
    z-index: 10;
    transition: width 0.3s ease;
    border-radius: 0 3px 3px 0;
}

/* Legacy hero section fallback (kept for non-scroll pages) */
.hero-section-legacy {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: 80px;
}

/* Search Interface */
.search-container {
    background: rgba(26, 26, 26, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 50px;
    display: flex;
    max-width: 700px;
    margin: 40px auto 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.search-container:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(197, 168, 128, 0.15);
}

.search-input-wrapper {
    display: flex;
    flex-grow: 1;
    align-items: center;
    padding: 0 20px;
}

.search-icon {
    color: var(--text-secondary);
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.search-input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    width: 100%;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-select-wrapper {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.search-select {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    cursor: pointer;
    padding-right: 15px;
}

.search-select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.search-button {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #a4845a 100%);
    color: var(--bg-primary);
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-button:hover {
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.4);
    transform: translateY(-1px);
}

/* Sections Layout */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

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

.section-meta {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.view-all-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Grid & Cards (3-column layout) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.listing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.listing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.listing-card-premium {
    border: 1px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.03);
}

.listing-card-premium:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.1);
}

.listing-badge-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #a4845a 100%);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    z-index: 10;
}

.listing-card-img-wrapper {
    position: relative;
    padding-top: 60%; /* 5:3 Aspect Ratio */
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.listing-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.listing-card:hover .listing-card-img {
    transform: scale(1.05);
}

.listing-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.listing-card-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.listing-card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.listing-card-meta-item svg {
    color: var(--accent-gold);
}

.listing-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.listing-card-title a {
    color: var(--text-primary);
}

.listing-card-title a:hover {
    color: var(--accent-gold);
}

.listing-card-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.listing-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-card-actions {
    display: flex;
    gap: 10px;
}

.btn-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.btn-icon-circle:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
}

/* Category Clusters Layout */
.category-clusters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-cluster-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    display: block;
}

.category-cluster-card:hover {
    background: var(--bg-surface);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.05);
}

.category-cluster-icon {
    width: 54px;
    height: 54px;
    background: var(--accent-gold-muted);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    transition: var(--transition-smooth);
}

.category-cluster-card:hover .category-cluster-icon {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.category-cluster-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.category-cluster-count {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Single Listing Split Layout */
.single-listing-layout {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 50px;
    padding-top: 140px; /* Offset fixed header */
    padding-bottom: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.single-listing-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.listing-header-area {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.listing-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.listing-meta-tag {
    background: var(--accent-gold-muted);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.05em;
}

.listing-meta-tag-location {
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.single-listing-title {
    font-size: 44px;
    font-weight: 800;
    margin: 15px 0 20px;
    line-height: 1.2;
}

.gallery-container {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
}

.gallery-main-img-wrapper {
    position: relative;
    padding-top: 55%;
}

.gallery-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-desc-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.listing-desc-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.listing-key-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-item svg {
    color: var(--success-color);
}

/* Sidebar & Sticky Widget */
.single-listing-sidebar {
    position: relative;
}

.sticky-sidebar-widget {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lead-capture-card {
    background: rgba(26, 26, 26, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.lead-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lead-card-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.lead-form-group {
    margin-bottom: 20px;
}

.lead-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.lead-form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

.lead-form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px var(--accent-gold-muted);
}

textarea.lead-form-control {
    resize: vertical;
    min-height: 100px;
}

.lead-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #a4845a 100%);
    color: var(--bg-primary);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lead-submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
}

.lead-response-msg {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.quick-actions-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.action-btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    transition: var(--transition-smooth);
}

.btn-action-phone {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-action-phone:hover {
    background: var(--border-color);
    border-color: var(--border-color-hover);
}

.btn-action-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.btn-action-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.map-embed-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 250px;
    background-color: var(--bg-surface);
}

.map-embed-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer styling */
.site-footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.footer-copy {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

/* Animations using IntersectionObserver */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-clusters {
        grid-template-columns: repeat(2, 1fr);
    }
    .single-listing-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sticky-sidebar-widget {
        position: static;
    }
    /* Scroll video: reduce scroll room on tablet */
    .scroll-video-section {
        height: 400vh;
    }
    .scroll-stats {
        gap: 16px;
    }
    .scroll-stat-card {
        padding: 18px 24px;
        min-width: 120px;
    }
    .scroll-stat-number {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    .search-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 15px;
    }
    .search-select-wrapper {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 10px 0;
    }
    .search-input-wrapper {
        padding: 10px 0;
    }
    .search-button {
        width: 100%;
        justify-content: center;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .single-listing-layout {
        padding-top: 100px;
    }
    .single-listing-title {
        font-size: 32px;
    }
    .listing-key-features {
        grid-template-columns: 1fr;
    }
    /* Scroll video: compact on mobile */
    .scroll-video-section {
        height: 300vh;
    }
    .scroll-stats {
        flex-direction: column;
        gap: 12px;
        bottom: 100px;
    }
    .scroll-stat-card {
        padding: 16px 24px;
        min-width: unset;
        width: 200px;
    }
    .scroll-stat-number {
        font-size: 24px;
    }
    .scroll-indicator {
        bottom: 20px;
    }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-video-section {
        height: 100vh;
    }
    .scroll-video-sticky #scrolly-video video {
        /* ScrollyVideo falls back to autoplay */
    }
    .scroll-indicator {
        animation: none;
    }
    .fade-in-section {
        transition: none;
        opacity: 1;
        transform: none;
    }
}
