/* ===========================================
   VACATION VILLAGE - UNIFIED DESIGN SYSTEM
   Luxury Boutique Website
   =========================================== */

/* CSS Variables - Brand Colors & Typography */
:root {
    /* Brand Colors - Premium Blue & White Palette */
    --vv-primary: #074C61;
    --vv-primary-dark: #053a4a;
    --vv-primary-light: #0a6a87;
    --vv-accent: #1a73a8;
    --vv-accent-light: #4d9fd4;
    
    /* Premium Blue Palette */
    --vv-blue-deep: #074C61;
    --vv-blue-royal: #0d5c75;
    --vv-blue-accent: #1a73a8;
    --vv-blue-light: #4d9fd4;
    --vv-blue-sky: #e8f4f8;
    
    /* Legacy naming - Updated to Blue Theme */
    --vv-lush-grass: #1a73a8;
    --vv-tree-shade: #074C61;
    --vv-peace: #f7fafc;
    --vv-sunlight: #0d5c75;
    --vv-granite: #4a5568;
    
    /* Neutral Colors */
    --vv-white: #ffffff;
    --vv-off-white: #f7fafc;
    --vv-black: #1a1a1a;
    --vv-gray-dark: #2d3748;
    --vv-gray: #4a5568;
    --vv-gray-light: #718096;
    --vv-gray-lighter: #e2e8f0;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing System */
    --space-xs: 10px;
    --space-sm: 20px;
    --space-md: 40px;
    --space-lg: 80px;
    --space-xl: 120px;
    --space-2xl: 160px;
    
    /* Section Padding */
    --section-padding-desktop: 100px 80px;
    --section-padding-tablet: 100px 40px;
    --section-padding-mobile: 70px 50px;
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-normal: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-slow: 1s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-image: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    
    /* Premium Shadows */
    --shadow-subtle: 0 4px 30px rgba(7, 76, 97, 0.08);
    --shadow-medium: 0 15px 50px rgba(7, 76, 97, 0.12);
    --shadow-strong: 0 30px 80px rgba(7, 76, 97, 0.18);
    --shadow-accent: 0 10px 40px rgba(26, 115, 168, 0.25);
}

/* ===========================================
   BASE STYLES
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--vv-black);
    background: var(--vv-white);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.loaded {
    opacity: 1;
}

/* ===========================================
   HEADER - FIXED MINIMAL STYLE
   =========================================== */
.minimal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

/* Transparent header for hero pages */
.minimal-header.transparent {
    background: transparent;
}

.minimal-header.transparent .logo-minimal img {
    filter: brightness(0) invert(1);
}

.minimal-header.transparent .menu-toggle {
    color: #fff;
}

/* Solid header for non-hero pages */
.minimal-header.solid {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.minimal-header.solid .logo-minimal img {
    filter: none;
}

.minimal-header.solid .menu-toggle {
    color: var(--vv-tree-shade);
}

/* Scrolled state - applies to all headers */
.minimal-header.scrolled {
       padding: 15px 10px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.minimal-header.scrolled .logo-minimal img {
    filter: none;
    height: 35px;
}

.minimal-header.scrolled .menu-toggle {
    color: var(--vv-tree-shade);
}

/* Legacy classes for backward compatibility */
.minimal-header.blend-mode {
    background: transparent;
}

.minimal-header.blend-mode .logo-minimal img {
    filter: brightness(0) invert(1);
}

.minimal-header.blend-mode .menu-toggle {
    color: #fff;
}

.minimal-header.blend-mode.scrolled .logo-minimal img {
    filter: none;
}

.minimal-header.blend-mode.scrolled .menu-toggle {
    color: var(--vv-tree-shade);
}

.minimal-header.solid-bg {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.minimal-header.solid-bg .logo-minimal img {
    filter: none;
}

.minimal-header.solid-bg .menu-toggle {
    color: var(--vv-tree-shade);
}

.logo-minimal {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-minimal img {
    height: 55px;
    display: block;
}

.minimal-header.scrolled .logo-minimal img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(50%) saturate(800%) hue-rotate(160deg);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 13px;
    letter-spacing: 3px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 300;
    transition: var(--transition-fast);
}

.minimal-header.blend-mode .menu-toggle {
    color: #fff;
}

.minimal-header.solid-bg .menu-toggle {
    color: var(--vv-tree-shade);
}

.menu-toggle:hover {
    letter-spacing: 5px;
}

/* ===========================================
   MENU OVERLAY
   =========================================== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--vv-tree-shade);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.menu-close {
    position: absolute;
    top: 40px;
    right: 60px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.menu-close:hover {
    transform: rotate(90deg);
}

.menu-content nav a {
    display: block;
    font-family: var(--font-display);
    font-size: 3.4rem;
    color: #fff;
    text-decoration: none;
    margin: 20px 0;
    font-weight: 300;
    transition: var(--transition-fast);
    opacity: 0.6;
    text-align: center;
}

.menu-content nav a:hover {
    opacity: 1;
    letter-spacing: 8px;
}

/* ===========================================
   ANIMATION CLASSES
   =========================================== */
/* Fade Up Animation */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* Fade In Animation */
.animate-fade-in {
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.animate-fade-in.visible {
    opacity: 1;
}

/* Scale Animation */
.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide Left Animation */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide Right Animation */
.animate-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Children Animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.55s; }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.65s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   TYPOGRAPHY SYSTEM
   =========================================== */
.section-label {
    font-size: 10px;
    letter-spacing: 5px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    display: inline-block;
}

.section-label--primary {
    color: var(--vv-lush-grass);
}

.section-label--gold {
    color: var(--vv-sunlight);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--vv-tree-shade);
}

.section-title--xl {
    font-size: clamp(56px, 8vw, 100px);
}

.section-title--lg {
    font-size: clamp(48px, 6vw, 72px);
}

.section-title--md {
    font-size: clamp(36px, 4vw, 56px);
}

.section-title--sm {
    font-size: clamp(28px, 3vw, 42px);
}

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

.body-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--vv-gray);
    font-weight: 300;
}

.body-text--lg {
    font-size: 18px;
}

.body-text--white {
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================================
   IMAGE TREATMENTS
   =========================================== */
.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-image);
}

.image-container:hover img {
    transform: scale(1.08);
}

.image-container--grayscale img {
    filter: grayscale(0.2);
    transition: transform var(--transition-image), filter var(--transition-normal);
}

.image-container--grayscale:hover img {
    filter: grayscale(0);
}

/* Gradient Overlays */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.image-overlay--dark {
    background: linear-gradient(135deg, rgba(7, 76, 97, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.image-overlay--bottom {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
}

/* ===========================================
   CARD STYLES
   =========================================== */
.card {
    background: var(--vv-white);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.card--bordered {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.card--accent-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--vv-blue-accent), var(--vv-blue-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.card--accent-line:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-strong);
    border-color: transparent;
}

/* ===========================================
   BUTTON STYLES
   =========================================== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    padding: 20px 50px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--vv-tree-shade);
    color: var(--vv-white);
}

.btn--primary:hover {
    background: var(--vv-blue-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn--secondary {
    background: transparent;
    color: var(--vv-tree-shade);
    border: 2px solid var(--vv-tree-shade);
}

.btn--secondary:hover {
    background: var(--vv-tree-shade);
    color: var(--vv-white);
    transform: translateY(-3px);
}

.btn--link {
    background: none;
    padding: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--vv-tree-shade);
    color: var(--vv-tree-shade);
}

.btn--link:hover {
    letter-spacing: 5px;
    border-color: var(--vv-blue-accent);
    color: var(--vv-blue-accent);
}

/* ===========================================
   SECTION BACKGROUNDS
   =========================================== */
.bg-white {
    background: var(--vv-white);
}

.bg-peace {
    background: var(--vv-peace);
}

.bg-tree-shade {
    background: var(--vv-tree-shade);
    color: var(--vv-white);
}

/* ===========================================
   DECORATIVE ELEMENTS
   =========================================== */
.decorative-line {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--vv-blue-accent), transparent);
    opacity: 0.3;
    margin: 0 auto;
}

.decorative-line--horizontal {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(26, 115, 168, 0.3), transparent);
}

/* Badge */
.badge {
    display: inline-block;
    background: var(--vv-blue-accent);
    color: var(--vv-white);
    padding: 12px 30px;
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 600;
}

/* ===========================================
   FOOTER STYLES - MODERN LUXURY DESIGN
   =========================================== */
.luxury-footer {
    background: var(--vv-tree-shade);
    color: var(--vv-white);
    padding: 80px 80px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 60px;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 5px;
}

.footer-logo img {
    height: 50px;
    margin-left: -20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--vv-white);
}

/* Footer Navigation Columns */
.footer-nav {
    padding-top: 10px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 18px;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--vv-white);
}

/* Stay Connected Section */
.footer-social {
    padding-top: 10px;
}

.footer-social-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--vv-white);
    color: var(--vv-white);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer Bottom Bar */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    font-family: var(--font-display);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-end;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-legal-links a:hover {
    color: var(--vv-white);
}

/* Legacy Footer Support */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto 80px;
}

.footer-about h4 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-col h5 {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    opacity: 0.6;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 30px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--vv-white);
}

/* ===========================================
   RESPONSIVE BREAKPOINTS
   =========================================== */
@media (max-width: 1200px) {
    .footer-main {
        gap: 0px;
    }
    
    .footer-grid {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .minimal-header {
        padding: 30px 40px;
    }
    
    .menu-close {
        right: 40px;
    }
    
    .luxury-footer {
        padding: 60px 40px 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .minimal-header {
        padding: 20px 20px;
    }
    
    .menu-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
    
    .luxury-footer {
        padding: 50px 25px 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-nav {
        text-align: center;
    }
    
    .footer-social {
        text-align: left;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 25px 0;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }
    
    .footer-copyright {
        white-space: nowrap;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===========================================
   SCROLL PROGRESS INDICATOR
   =========================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vv-blue-accent), var(--vv-blue-deep));
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.text-center {
    text-align: center;
}

.max-w-900 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-1200 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-1600 {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

/* ===========================================
   ENHANCED SCROLL ANIMATIONS
   Inspired by luxury hospitality websites
   =========================================== */

/* Base animation states - elements start visible, then animate */
.animate-fade-up,
.animate-fade-in,
.animate-scale,
.animate-slide-left,
.animate-slide-right,
.reveal-text,
.reveal-image,
.stagger-children,
.editorial-text,
.section-header-center,
.feature-item,
.pillar-card,
.ecosystem-card,
.project-content,
.stat-item,
.story-text,
.story-image-wrap,
.philosophy-content,
.leader-creative,
.stat-creative,
.partner-creative,
.feature-box,
.amenity-item,
.plot-card,
.form-header,
.info-item,
.office-card,
.amenity-card,
.infra-card,
.location-card,
.gallery-image,
.intro-content,
.manor-feature,
.arch-feature,
.plots-interactive-container,
.plots-header,
.infrastructure-header,
.amenities-header,
.location-header,
.gallery-header,
.stagger-item,
.essential-card,
.mission-card,
.vision-card,
.team-member,
.legacy-stat-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Fallback: Show content after 2 seconds if JS fails */
@keyframes showContent {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up,
.animate-fade-in,
.stagger-item,
.feature-item,
.pillar-card,
.ecosystem-card,
.stat-item,
.amenity-card,
.infra-card,
.location-card,
.essential-card,
.mission-card,
.vision-card,
.team-member,
.legacy-stat-card,
.office-card,
.info-item {
    animation: showContent 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.3s;
}

/* Visible state */
.animate-fade-up.visible,
.animate-fade-in.visible,
.animate-scale.visible,
.animate-slide-left.visible,
.animate-slide-right.visible,
.reveal-text.visible,
.reveal-image.visible,
.stagger-children.visible,
.editorial-text.visible,
.section-header-center.visible,
.feature-item.visible,
.pillar-card.visible,
.ecosystem-card.visible,
.project-content.visible,
.stat-item.visible,
.story-text.visible,
.story-image-wrap.visible,
.philosophy-content.visible,
.leader-creative.visible,
.stat-creative.visible,
.partner-creative.visible,
.feature-box.visible,
.amenity-item.visible,
.plot-card.visible,
.form-header.visible,
.info-item.visible,
.office-card.visible,
.amenity-card.visible,
.infra-card.visible,
.location-card.visible,
.gallery-image.visible,
.intro-content.visible,
.manor-feature.visible,
.arch-feature.visible,
.plots-interactive-container.visible,
.plots-header.visible,
.infrastructure-header.visible,
.amenities-header.visible,
.location-header.visible,
.gallery-header.visible,
.stagger-item.visible,
.essential-card.visible,
.mission-card.visible,
.vision-card.visible,
.team-member.visible,
.legacy-stat-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

/* Stagger delays for children */
.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }
.stagger-item:nth-child(7) { animation-delay: 0.7s; }
.stagger-item:nth-child(8) { animation-delay: 0.8s; }
.stagger-item:nth-child(9) { animation-delay: 0.9s; }
.stagger-item:nth-child(10) { animation-delay: 1.0s; }
.stagger-item:nth-child(11) { animation-delay: 1.1s; }
.stagger-item:nth-child(12) { animation-delay: 1.2s; }

/* Specific animation variations */
.animate-fade-in {
    transform: translateY(0);
}

.animate-scale {
    transform: scale(0.95);
}

.animate-scale.visible {
    transform: scale(1);
}

.animate-slide-left {
    transform: translateX(-40px);
}

.animate-slide-left.visible {
    transform: translateX(0);
}

.animate-slide-right {
    transform: translateX(40px);
}

.animate-slide-right.visible {
    transform: translateX(0);
}

/* Staggered children animations */
.stagger-children .stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.stagger-children .stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image reveal animation */
.reveal-image {
    overflow: hidden;
}

.reveal-image img {
    transform: scale(1.1);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-image.visible img {
    transform: scale(1);
}

/* ===========================================
   IMAGE HOVER EFFECTS
   =========================================== */

/* Subtle zoom on hover */
.image-zoom-hover {
    overflow: hidden;
}

.image-zoom-hover img {
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.image-zoom-hover:hover img {
    transform: scale(1.05);
}

/* Gallery image hover */
.gallery-image {
    overflow: hidden;
    position: relative;
}

.gallery-image img {
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-image:hover img {
    transform: scale(1.08);
}

/* Card hover lift effect */
.card-hover-lift {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

/* ===========================================
   BUTTON HOVER ANIMATIONS
   =========================================== */

/* Primary button hover */
.btn-primary,
.cta-btn,
.submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-primary::before,
.cta-btn::before,
.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before,
.cta-btn:hover::before,
.submit-btn:hover::before {
    left: 100%;
}

/* Underline link animation */
.link-underline {
    position: relative;
    display: inline-block;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.link-underline:hover::after {
    width: 100%;
}

/* ===========================================
   TEXT ANIMATIONS
   =========================================== */

/* Word reveal animation */
.text-reveal .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.6s forwards;
}

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

/* Character reveal animation */
.char-reveal .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: charReveal 0.4s forwards;
}

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

/* ===========================================
   SECTION TRANSITIONS
   =========================================== */

/* Smooth section background transitions */
section {
    transition: background-color 0.6s ease;
}

/* Hero section text fade */
.hero-content {
    animation: heroFadeIn 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

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

/* Section header animation */
.section-label {
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(1);
    width: 40px;
    height: 1px;
    background: currentColor;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.visible .section-label::after,
.section-label:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ===========================================
   LOADING ANIMATION
   =========================================== */

/* Page loader fade out */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vv-white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* ===========================================
   REDUCED MOTION
   =========================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ===========================================
   SCROLL PROGRESS BAR
   =========================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--vv-blue-accent), var(--vv-blue-deep));
    z-index: 99999;
    transition: width 0.1s ease;
}

/* Body loaded state */
body.loaded .animate-fade-up,
body.loaded .animate-fade-in,
body.loaded .animate-scale {
    /* Elements only animate when body is loaded */
}
@media (max-width: 768px) {
    .logo-minimal img {
        height: 30px;
        display: block;
    }
}