/* ============================================
   SUNTROPEZ — Luxury Property Platform CSS
   Booking.com Pro + Airbnb Appeal
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --gold: #C69B4E;
    --gold-light: #E8C97A;
    --dark: #0D0D0D;
    --dark-2: #1A1A1A;
    --dark-3: #2A2A2A;
    --white: #FFFFFF;
    --off-white: #F9F8F5;
    --gray-1: #F2F2F2;
    --gray-2: #E0E0E0;
    --gray-3: #717171;
    --text: #222222;
    --text-muted: #555555;
    --border: rgba(255,255,255,0.15);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar { 
    background: var(--gold); 
    color: white; 
    padding: 0.7rem; 
    text-align: center; 
    font-size: 0.85rem; 
    font-weight: 700; 
    position: relative; 
    z-index: 1001; 
    letter-spacing: 0.5px; 
}
.promo-bar a { text-decoration: underline; margin-left: 0.5rem; color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.site-header.transparent {
    background: transparent;
}

.site-header.solid {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--gray-2);
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
    transition: var(--transition);
}

.site-header.solid .header-logo { color: var(--dark); }

.header-logo .logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Search Bar in Header */
.header-search {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    overflow: hidden;
    height: 50px;
}

.header-search .search-segment {
    padding: 0 1.2rem;
    font-size: 0.85rem;
    cursor: pointer;
    border-right: 1px solid var(--gray-2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.header-search .search-segment:last-child {
    border-right: none;
    padding-right: 0.5rem;
}

.header-search .search-segment:hover { background: var(--gray-1); }

.search-segment strong {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
}

.search-segment span {
    font-size: 0.8rem;
    color: var(--gray-3);
}

.search-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    margin: 0 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-btn:hover { transform: scale(1.1); }

/* Nav Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-link {
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.site-header.solid .header-link { color: var(--text); }

.header-link:hover { background: rgba(255,255,255,0.15); }

.site-header.solid .header-link:hover { background: var(--gray-1); }

.header-user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem 0.4rem 1rem;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.site-header.solid .header-user-btn { border-color: var(--gray-2); box-shadow: var(--shadow-sm); }

.header-user-btn:hover { box-shadow: var(--shadow-md); }

.user-avatar {
    width: 30px;
    height: 30px;
    background: var(--dark-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--white);
}

/* ============================================================
   HERO — CINEMATIC SLIDER
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenburns 12s linear infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.1) 40%, 
        rgba(0,0,0,0.7) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    display: inline-block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.2rem);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
    animation: fadeInUp 1.4s ease-out 0.4s both;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 5%;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    z-index: 20;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.stat-pill {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-pill:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
}

.stat-pill i {
    color: var(--gold);
    width: 20px;
    height: 20px;
}

.scroll-hint {
    position: absolute;
    bottom: 9.5rem; /* Space for the wave */
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
}

.scroll-arrow {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: bounceSlow 2.5s infinite;
}

/* WAVY HERO DIVIDER */
.hero-divider {
    position: absolute;
    bottom: -0.1rem;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 22;
}

.hero-divider svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 100px;
    transform: translateX(-15%);
}

.hero-divider .shape-fill {
    fill: var(--white);
}

@keyframes bounceSlow {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-12px);}
    60% {transform: translateY(-6px);}
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST BAR (below hero)
   ============================================================ */
.trust-bar {
    background: var(--dark);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.trust-icon {
    font-size: 1.2rem;
    color: var(--gold-light);
}

.trust-item strong { color: var(--white); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
    padding: 6rem 5%;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    display: block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.section-subtitle {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
}

/* ============================================================
   PROPERTY CARDS — Airbnb Style
   ============================================================ */
.properties-section { background: var(--white); }

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 2rem;
}

.prop-card {
    cursor: pointer;
    transition: var(--transition);
}

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

.prop-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--gray-1);
}

.prop-img-wrap img {
    height: 100%;
    transition: transform 0.6s ease;
}

.prop-card:hover .prop-img-wrap img { transform: scale(1.07); }

.prop-badge-wrap {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.4rem;
}

.prop-badge {
    background: var(--white);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}

.prop-badge.gold {
    background: var(--gold);
    color: var(--white);
}

.fav-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.fav-btn i {
    width: 18px;
    height: 18px;
}

.fav-btn:hover {
    background: var(--white);
    color: #ff385c; /* Airbnb heart color */
    transform: scale(1.1);
}

.prop-info h3 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.prop-info .prop-location {
    color: var(--gray-3);
    font-size: 0.88rem;
}

.prop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.6rem;
}

.prop-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.prop-rating i {
    color: var(--gold);
}

.prop-price {
    font-size: 0.95rem;
    font-weight: 700;
}

.prop-price span { font-weight: 400; color: var(--gray-3); }

/* See All */
.see-all-wrap { text-align: center; margin-top: 3rem; }

.btn-outline {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 2px solid var(--dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline:hover { background: var(--dark); color: var(--white); }

/* ============================================================
   EXPERIENCE SECTION — Booking.com Style Banner
   ============================================================ */
.experience-section { background: var(--off-white); }

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.exp-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
}

.exp-card.tall { grid-row: span 2; min-height: auto; }

.exp-card img {
    position: absolute;
    inset: 0;
    height: 100%;
    transition: transform 0.6s ease;
}

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

.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 40%, transparent 100%);
}

.exp-body {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: var(--white);
    width: 100%;
}

.exp-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.exp-body p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.2rem;
}

.btn-white-sm {
    display: inline-block;
    background: var(--white);
    color: var(--dark);
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-white-sm:hover { background: var(--off-white); transform: translateX(4px); }

/* ============================================================
   AMENITIES STRIP
   ============================================================ */
.amenities-section { background: var(--dark); color: var(--white); }

.amenities-section .section-title { color: var(--white); }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.amenity-card {
    background: var(--off-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.amenity-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-2);
    transform: translateY(-5px);
}

.amenity-icon {
    display: inline-block;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.amenity-icon i {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.amenity-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

.amenity-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   TESTIMONIAL SECTION
   ============================================================ */
.testimonials-section { background: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
    opacity: 0.25;
}

.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }

.testimonial-card p { color: var(--text-muted); font-size: 0.95rem; font-style: italic; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.9rem; }
.author-from { font-size: 0.8rem; color: var(--gray-3); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('luxury_saint_tropez_villa_hero.png') center/cover no-repeat;
    filter: brightness(0.4);
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 6rem 5%;
    color: var(--white);
    max-width: 700px;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
}

.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(198, 155, 78, 0.4);
}

.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(198, 155, 78, 0.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 4rem 5% 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo-wrap .logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 250px; }

.footer-col h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul li a {
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-socials { display: flex; gap: 1rem; }

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounceSlow {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-12px);}
    60% {transform: translateY(-6px);}
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE (MOBILE FRIENDLY)
   ============================================================ */

/* 1. TABLET & SMALL LAPTOPS */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .about-section > div { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .hero-title { font-size: 3.8rem; }
    .header-search { display: none; }
}

/* 2. MOBILE (PHONES) */
@media (max-width: 768px) {
    .section { padding: 4rem 5% !important; }
    .section-title { font-size: 2rem !important; }
    
    /* Header */
    .site-header { height: 70px; padding: 0 4%; }
    .header-logo { font-size: 1.2rem; }
    .header-user-btn { padding: 0.4rem; }
    .header-user-btn span { font-size: 0.9rem; }
    .header-link { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
    
    /* Promo Bar */
    .promo-bar { font-size: 0.75rem; padding: 0.6rem; }
    
    /* Hero Section */
    .hero { min-height: 550px; height: 90vh; }
    .hero-content { padding: 0 1.5rem; margin-top: 0; }
    .hero-title { font-size: 2.6rem; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; line-height: 1.5; }
    .hero-badge { font-size: 0.75rem; padding: 0.5rem 1.2rem; margin-bottom: 1.5rem; }
    
    /* Hero Stats - Horizontal Scroll (Lifted above wave) */
    .hero-stats {
        bottom: 6rem;
        padding: 0 5%;
        gap: 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
        width: 100vw;
        left: 0;
        z-index: 30; /* Above wave */
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
    }
    .hero-stats::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome */
    
    .stat-pill {
        flex-shrink: 0;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.6rem;
    }
    
    /* UI Elements */
    .scroll-hint { bottom: 8rem; display: none; } /* Hide on mobile to save space */
    .hero-divider svg { height: 60px; width: 150%; transform: translateX(-25%); }
    
    /* Properties Grid */
    .properties-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    
    /* Amenities & Experience */
    .amenities-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .experience-grid { gap: 1.5rem; }
    
    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .footer-desc { max-width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1.5rem; }
    
    /* Utility */
    .btn-gold { width: 100%; text-align: center; }
    .trust-container { grid-template-columns: 1fr 1fr; gap: 1.5rem; text-align: center; }
    .trust-item { flex-direction: column; }
    
    /* WhatsApp */
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .whatsapp-float i { width: 28px; height: 28px; }
}

/* 3. EXTRA SMALL (SMALL & STANDARD PHONES) */
@media (max-width: 600px) {
    .hero-title { font-size: 2.22rem; }
    .hero-divider svg { height: 45px; } /* Even smaller wave on XS */
    .hero-stats { bottom: 5.5rem; }
    .properties-grid { grid-template-columns: 1fr; }
    .trust-container { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .header-right .header-link { display: none; } /* Hide contact link */
    .section-eyebrow { font-size: 0.75rem; letter-spacing: 2px; }
}
