/* CSS Reset & Variables - 2026 Modernization */
:root {
    /* Brand Colors */
    --brand-green: #2A6929;
    --text-black: #000000;
    --text-gray: #444444;
    --light-gray: #F8F8F8;
    --white: #FFFFFF;

    /* Fonts */
    /* Prioritize premium system fonts (Avenir/Helvetica) requested by user, fall back to Manrope/Barlow */
    --font-heading: 'Helvetica Neue', 'Helvetica', 'Barlow', sans-serif;
    --font-body: 'Avenir Next', 'Avenir', 'Manrope', sans-serif;

    /* Fluid Typography - Scales smoothly from mobile to desktop */
    --h1-size: clamp(32px, 5vw, 48px);
    --h2-size: clamp(28px, 4vw, 40px);
    --h3-size: clamp(20px, 3vw, 24px);
    --body-size: clamp(16px, 1.5vw, 18px);
    --nav-size: clamp(12px, 1vw, 14px);

    /* Spacing System */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(1rem, 2vw, 1.5rem);
    --space-md: clamp(2rem, 4vw, 3rem);
    --space-lg: clamp(4rem, 6vw, 6rem);
    --container-padding: clamp(1.25rem, 4vw, 2.5rem);

    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-blur: blur(12px);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.0);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--body-size);
    color: var(--text-black);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--space-lg) 0;
}

.section-title {
    font-size: var(--h2-size);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-black);
    text-align: center;
}

.section-description {
    font-size: var(--body-size);
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-md);
}

/* Header with Glassmorphism */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition-smooth);
}

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

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 25px);
    font-weight: 600;
    color: var(--brand-green);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-family: var(--font-heading);
    font-size: clamp(10px, 1.2vw, 12px);
    font-weight: 500;
    color: var(--brand-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.main-nav {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: var(--nav-size);
    color: var(--brand-green);
    /* Updated per brand */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 2px;
}

/* Modern Nav Underline Animation */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-green);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    opacity: 1;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    background: transparent;
    border: none;
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(42, 105, 41, 0.1);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 60vh;
    /* Modern viewport-based height */
    min-height: 400px;
    max-height: 800px;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 1.5s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-text-section {
    background-color: var(--light-gray);
    padding: var(--space-lg) 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: var(--h1-size);
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: var(--body-size);
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: var(--space-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-black);
    padding: 16px 40px;
    border: 1px solid var(--text-black);
    border-radius: 100px;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: transparent;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--text-black);
    transition: var(--transition-smooth);
    z-index: -1;
}

.cta-button:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:active {
    transform: translateY(0);
}

/* Rooms Gallery - Horizontal Scroll with Snap */
.rooms-section {
    background-color: var(--white);
}

/* Modern Map Styling (CSS Filter for premium grayscale look) */
.map-container iframe {
    filter: grayscale(100%) contrast(92%) brightness(105%);
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
    /* Color on hover */
}

.map-link {
    display: block;
    position: relative;
    cursor: pointer;
}

/* Gallery Scrollbar - Visible on Desktop, Hidden on Mobile */
.gallery-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    cursor: grab;

    /* Show scrollbar on desktop */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;

    /* Scroll Snap Logic */
    scroll-snap-type: x mandatory;
    padding-bottom: var(--space-sm);
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.amenities-section {
    background-color: var(--light-gray);
}

.gallery-track {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--container-padding);
}

.gallery-item {
    flex: 0 0 auto;
    width: clamp(280px, 30vw, 400px);
    aspect-ratio: 4/3;
    height: auto;
    scroll-snap-align: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Amenities - Two Column Layout */
.amenities-section {
    background-color: var(--light-gray);
}

.amenities-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.amenities-image {
    width: 100%;
    height: clamp(400px, 60vh, 700px);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.amenities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Subtle parallax-like effect on hover */
.amenities-container:hover .amenities-image img {
    transform: scale(1.05);
}

.amenities-content {
    padding: var(--space-sm) 0;
}

.amenities-content .section-title {
    text-align: left;
}

.amenities-content .section-description {
    text-align: left;
    margin-left: 0;
    max-width: 100%;
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--h3-size);
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-black);
    padding: var(--space-xs);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.amenity-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(10px);
}

.amenity-icon {
    width: clamp(28px, 3vw, 36px);
    height: clamp(28px, 3vw, 36px);
    stroke: var(--text-black);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.amenity-item:hover .amenity-icon {
    stroke: var(--brand-green);
    transform: scale(1.1) rotate(5deg);
}

/* Contact */
.contact-section {
    background-color: var(--white);
}

/* Contact Details Enhanced */
.contact-details {
    max-width: 600px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    font-size: 16px;
    background: #fdfdfd;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.contact-item:hover {
    background: rgba(42, 105, 41, 0.05);
}

.contact-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    /* Force minimum size */
    max-width: 24px;
    /* Prevent expansion */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    flex-shrink: 0;
    overflow: hidden;
    /* Safety clip */
}

.contact-icon svg {
    width: 18px !important;
    height: 18px !important;
    stroke-width: 1.5px;
    display: block;
}

.contact-item p {
    margin: 0;
    color: var(--text-black);
}

.contact-link {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.5px solid transparent;
    transition: all 0.2s ease;
}

.contact-link:hover {
    border-bottom-color: var(--brand-green);
    opacity: 0.8;
}

.map-container {
    max-width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-link {
    display: block;
    position: relative;
    cursor: pointer;
}

.map-link::after {
    content: "📍 Click for directions";
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(42, 105, 41, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.map-container:hover .map-link::after {
    opacity: 1;
}



/* Footer */
.site-footer {
    background: var(--white);
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    color: var(--text-gray);
    border-top: 1px solid #E5E5E5;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

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

/* Mobile Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        /* Add safe area insets for iPhone 17 Pro / S25 Ultra */
        padding-left: max(var(--space-sm), env(safe-area-inset-left));
        padding-right: max(var(--space-sm), env(safe-area-inset-right));
    }

    /* Header Adjustments */
    .header-container {
        height: 70px;
        /* Slightly taller for modern touch targets */
    }

    .brand-name {
        font-size: clamp(20px, 5vw, 24px);
        /* Slightly larger for high-res screens */
    }

    .brand-tagline {
        font-size: 11px;
    }

    /* Mobile Menu Toggle - Visible on Mobile */
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
        /* Above drawer */
        padding: 12px;
        /* Generous touch target */
        margin-right: -12px;
        /* Align visual edge while keeping hit area */
    }

    /* Mobile Navigation Drawer */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        /* Position completely outside viewport */
        height: 100vh;
        /* Fallback */
        height: 100dvh;
        /* Dynamic viewport height for resize resilience */
        width: 300px;
        /* Drawer width */
        max-width: 85%;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        /* Start from top */
        align-items: flex-start;
        padding: calc(80px + env(safe-area-inset-top)) 40px 40px;
        /* Space for header + notch */
        gap: 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        visibility: hidden;
        /* Hide from layout calculation */
    }

    .main-nav.active {
        display: flex !important;
        /* Override potential display:none */
        right: 0;
        /* Slide in */
        visibility: visible;
        /* Make visible when active */
    }

    .main-nav a {
        font-size: 20px;
        /* Larger text for flagship screens */
        font-weight: 500;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 15px;
    }

    .main-nav a:hover {
        padding-left: 10px;
        /* Slide effect on hover */
    }

    /* Section Adjustments */
    .hero-image {
        height: 60vh;
        /* Immersive height on tall screens */
        min-height: 450px;
    }

    .hero-text-section {
        padding: var(--space-md) 0;
    }

    .hero-content h1 {
        font-size: clamp(32px, 8vw, 42px);
        /* Scale confidently on larger phones */
    }

    .amenities-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .amenities-image {
        height: 350px;
        /* Taller image */
        order: -1;
        /* Image first on mobile */
    }

    .amenities-content .section-title,
    .amenities-content .section-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-item {
        width: clamp(280px, 80vw, 380px);
        /* Wider cards on wider phones */
        aspect-ratio: 4/3;
        height: auto;
    }

    /* Hide scrollbar on mobile for cleaner touch experience */
    .gallery-scroll::-webkit-scrollbar {
        display: none;
    }

    .gallery-scroll {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery-item {
        width: 240px;
    }
}

/* Specific Tweak for Smaller Devices if needed, but Fluid Type handles most */
@media (max-width: 390px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .brand-name {
        font-size: 18px;
    }
}

/* --- Phase 3: World-Class Upgrades --- */

/* Floating Action Button (Mobile) */
.mobile-fab {
    position: fixed;
    bottom: max(30px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
    background: var(--brand-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(42, 105, 41, 0.4);
    z-index: 999;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    animation: fabPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fabPop {
    from {
        transform: scale(0) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.mobile-fab svg {
    width: 20px;
    height: 20px;
}

.mobile-fab:active {
    transform: scale(0.95);
}

/* Skeleton Loading Effect */
.skeleton-container {
    background: #f0f0f0;
    position: relative;
}

.skeleton-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .mobile-fab {
        display: flex;
    }
}

/* --- Phase 3.1: World-Class Micro-Interactions --- */

/* Amenity Icon Pop */
.amenity-item:hover .amenity-icon {
    stroke: var(--brand-green);
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 4px 6px rgba(42, 105, 41, 0.2));
}

.amenity-item {
    cursor: default;
    transition: var(--transition-smooth);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Opposite of FAB for balance */
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--brand-green);
    color: var(--white);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Refined Typography */
.brand-name {
    letter-spacing: 1px;
}

.brand-tagline {
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .back-to-top {
        display: none;
        /* Keep mobile clean */
    }
}

/* --- Phase 3.2: Content Depth & Social Proof --- */

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonial-card {
    background: var(--light-gray);
    padding: var(--space-md);
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

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

.testimonial-card .stars {
    color: #FFB800;
    /* Richer Gold */
    margin-bottom: var(--space-xs);
    display: flex;
    gap: 4px;
}

.testimonial-card .stars svg {
    width: 14px;
    height: 14px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.testimonial-card cite {
    display: block;
    font-weight: 600;
    color: var(--text-black);
    font-size: 14px;
    font-family: var(--font-heading);
}

/* Landmarks Section - Compact */
.landmarks-section {
    background-color: var(--light-gray);
    padding: var(--space-md) 0;
}

.landmarks-section .section-title {
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.landmarks-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: var(--space-sm);
}

@media (max-width: 768px) {
    .landmarks-grid {
        flex-wrap: wrap;
    }
}

.landmark-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.landmark-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.landmark-name {
    font-weight: 500;
    color: var(--text-black);
}

.landmark-dist {
    color: var(--brand-green);
    font-weight: 600;
    font-size: 14px;
    background: rgba(42, 105, 41, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Animation Utilities for New Sections */
.testimonials-grid>*,
.landmarks-grid>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.testimonials-grid.visible>*,
.landmarks-grid.visible>* {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-grid.visible>*:nth-child(2) {
    transition-delay: 0.1s;
}

.testimonials-grid.visible>*:nth-child(3) {
    transition-delay: 0.2s;
}

/* --- Phase 3.3: Trust Badges Bar --- */

.trust-badges-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: var(--space-sm) 0;
    border-bottom: 3px solid var(--brand-green);
}

.trust-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white);
}

.trust-badge .badge-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.12);
    border-radius: 50%;
    color: #FFB800;
}

.trust-badge .badge-icon svg {
    width: 20px;
    height: 20px;
}

.trust-badge.highlight .badge-icon {
    color: var(--brand-green);
    background: rgba(42, 105, 41, 0.2);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
}

.badge-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(42, 105, 41, 0.4);
}

.trust-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 105, 41, 0.5);
    background: #236b22;
}

.trust-cta svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .trust-badges-container {
        gap: var(--space-sm);
        justify-content: space-around;
    }

    .trust-badge {
        flex: 1 1 45%;
        justify-content: center;
    }

    .trust-cta {
        flex: 1 1 100%;
        justify-content: center;
        margin-top: var(--space-xs);
    }

    .badge-value {
        font-size: 14px;
    }

    .badge-label {
        font-size: 10px;
    }
}