/* CSS Variables for Theme Support */
:root {
    /* Light Mode Colors - White and Black */
    --primary-bg: #ffffff;
    --secondary-bg: #f8f9fa;
    --text-primary: #000000;
    --text-secondary: #333333;
    --accent-color: #000000;
    --accent-gradient: linear-gradient(135deg, #000000 0%, #333333 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
    --card-bg: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.1);
    --overlay-bg: rgba(0, 0, 0, 0.2);
}

/* Dark Mode Colors - Black and White */
.dark-mode {
    --primary-bg: #000000;
    --secondary-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-color: #ffffff;
    --accent-gradient: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-light: rgba(255, 255, 255, 0.1);
    --shadow-medium: rgba(255, 255, 255, 0.15);
    --shadow-heavy: rgba(255, 255, 255, 0.25);
    --card-bg: rgba(255, 255, 255, 0.03);
    --nav-bg: rgba(0, 0, 0, 0.1);
    --overlay-bg: rgba(0, 0, 0, 0.4);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    transition: all 0.3s ease;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Card Styles - Enhanced Liquid Glass with Maximum Reflection & Dispersion */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 95% 5%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    border-radius: 10px;
    pointer-events: none;
    filter: contrast(1.3) saturate(1.2);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    border-radius: 10px;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 1px 3px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Navigation Bar - Centered Floating Rounded */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: auto;
    min-width: 800px;
    max-width: 95vw;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 40px;
    width: 100%;
    position: relative;
}

.nav-logo {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-dark {
    display: block;
}

.logo-white {
    display: none;
    top: 0;
    left: 0;
}

/* Dark mode logo switching */
.dark-mode .logo-dark {
    display: none;
}

.dark-mode .logo-white {
    display: block;
}

.logo-white {
    opacity: 1;
    top: 0;
    left: 0;
}

.logo-black {
    display: block;
    top: 0;
    left: 0;
}

/* Dark mode logo switching */
.dark-mode .logo-white {
    opacity: 0;
}

.dark-mode .logo-black {
    opacity: 1;
}

/* Enhanced Navigation Menu with Reflection Style */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    white-space: nowrap;
    background: transparent;
    border: none;
}

.nav-menu a:hover {
    color: var(--accent-color);
    background: transparent;
    transform: translateY(-2px);
}

/* Enhanced Theme Toggle with Reflection Style */
.theme-toggle {
    position: relative;
    margin-left: 2rem;
    flex-shrink: 0;
}

/* Theme Button - Enhanced Liquid Glass */
.theme-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    border-radius: 50px;
}

.theme-btn:hover::before {
    left: 100%;
}

.theme-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    border-radius: 50px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-btn:hover {
    transform: scale(1.05) translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.theme-btn:hover::after {
    opacity: 1;
}

.theme-btn i {
    font-size: 1.3rem;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.theme-btn .fa-sun {
    position: absolute;
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.dark-mode .theme-btn .fa-moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.dark-mode .theme-btn .fa-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Dark mode for navbar */
.dark-mode .navbar {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dark-mode .nav-menu a:hover {
    background: transparent;
    border: none;
    color: var(--accent-color);
}

.dark-mode .theme-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Floating Navbar */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        min-width: 95vw;
        border-radius: 20px;
    }
    
    .nav-container {
        height: 50px;
        padding: 0 10px;
        justify-content: space-between;
        gap: 10px;
        display: flex;
        align-items: center;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .nav-menu {
        display: flex !important;
        gap: 0.8rem;
        flex-wrap: nowrap;
        overflow: visible;
        margin: 0;
        padding: 0;
        list-style: none;
        flex: 1;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        padding: 4px 6px;
        white-space: nowrap;
        min-width: fit-content;
        display: block;
        text-decoration: none;
        color: var(--text-primary);
    }
    
    .theme-toggle {
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .theme-btn {
        width: 50px;
        height: 50px;
    }
    
    .theme-btn i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        top: 10px;
        min-width: 95vw;
        border-radius: 20px;
    }
    
    .nav-container {
        height: 45px;
        padding: 0 8px;
        justify-content: space-between;
        gap: 8px;
        display: flex;
        align-items: center;
    }
    
    .nav-logo img {
        height: 30px;
    }
    
    .nav-menu {
        display: flex !important;
        gap: 0.5rem;
        flex-wrap: nowrap;
        overflow: visible;
        margin: 0;
        padding: 0;
        list-style: none;
        flex: 1;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 0.65rem;
        padding: 3px 5px;
        white-space: nowrap;
        min-width: fit-content;
        display: block;
        text-decoration: none;
        color: var(--text-primary);
    }
    
    .theme-toggle {
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .theme-btn {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    
    .theme-btn i {
        font-size: 0.9rem;
    }
}

/* Hamburger Menu - Smaller Size */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    z-index: 1001;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:hover {
    transform: scale(1.05) translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hamburger span {
    width: 16px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Dark mode for hamburger */
.dark-mode .hamburger {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Navigation Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: right 0.3s ease;
    display: none;
    flex-direction: column;
    padding: 2rem;
}

.mobile-nav.active {
    right: 0;
    display: flex;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.mobile-nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-menu a:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Overlay for mobile menu */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Hero Overlay with Gradient - Dark Mode Only */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

/* Light mode overlay - reversed gradient */
.hero-overlay {
    background: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0.25) 65%, rgba(0, 0, 0, 0.07) 100%);
}

/* Dark mode overlay */
.dark-mode .hero-overlay {
    background: #050505;
    background: linear-gradient(135deg, rgba(5, 5, 5, 1) 0%, rgba(255, 255, 255, 0.25) 65%, rgba(255, 255, 255, 0.07) 100%);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite;
}

.slide.active {
    opacity: 1;
}

@keyframes slowZoom {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-align: left;
}

.hero-tagline {
    text-align: left;
    font-size: 1.4rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease 0.3s both;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease 0.6s both;
}

/* CTA Buttons - Enhanced Liquid Glass - Applied to All Buttons */
.cta-button {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    letter-spacing: 0.01em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-primary);
}

.cta-button.primary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 95% 5%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    border-radius: 50px;
    pointer-events: none;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 95% 5%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    border-radius: 50px;
    pointer-events: none;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Hero Indicators - iOS 16 Style */
.hero-indicators {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active::before {
    width: 100%;
    height: 100%;
}

.indicator.active {
    transform: scale(1.2);
    border-color: white;
    background: rgba(255, 255, 255, 0.3);
}

/* Scroll Indicator - Centered with Hover */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1.2s ease 0.9s both;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-mouse {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0.5; }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
    color: rgba(255, 255, 255, 1);
}

/* Enhanced Parallax Effect */
.hero-background {
    transform: translateZ(0);
    will-change: transform;
}

/* Dark Mode Enhancements - iOS 16 Style */
.dark-mode .hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 1px 3px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dark-mode .hero-card::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.dark-mode .cta-button.secondary {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.dark-mode .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.dark-mode .navbar {
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-mode .theme-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-mode .form-group input:focus,
.dark-mode .form-group select:focus,
.dark-mode .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.06);
}

.dark-mode .social-links a {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-mode .carousel-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-mode .indicator {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-mode .indicator.active {
    background: rgba(255, 255, 255, 0.06);
}

.dark-mode .scroll-mouse {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-cta {
    margin-top: 2rem;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
   /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    */
    
}


.stat-icon .liquid-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stat-icon:hover .liquid-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Add reflection effect to icons */
.stat-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
  /*  background: rgba(255, 255, 255, 0.1); */
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(1px);
    z-index: -1;
    /* animation: liquidShimmer 3s ease-in-out infinite reverse; */
}

/* Camera icon - Photography theme (Red) */



/* Enhanced hover effects with color */


/* Liquid shimmer animation for the icons */


/* Liquid shimmer animation */
/* @keyframes liquidShimmer {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
} */

/* Add reflection effect to icons */
.stat-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
  /*  background: rgba(255, 255, 255, 0.1); */
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(1px);
    z-index: -1;
    animation: liquidShimmer 3s ease-in-out infinite reverse;
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: var(--text-secondary);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    flex: 1;
}

.image-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    height: 300px;
}

.image-card img {
    width: 100%;
    height: 160%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
    .about-split {
        gap: 3rem;
    }
    
    .about-stats {
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .image-card {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .image-card {
        height: 200px;
    }
    
    .about-card h2 {
        font-size: 2rem;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

/* Testimonials Section - Elegant Glass Design */
.testimonials-section {
    padding: 6rem 0;
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.02) 0%, 
        rgba(255, 255, 255, 0.05) 25%, 
        rgba(255, 255, 255, 0.02) 50%, 
        rgba(255, 255, 255, 0.05) 75%, 
        rgba(255, 255, 255, 0.02) 100%);
    z-index: 1;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    border-radius: 10px;
    pointer-events: none;
    filter: contrast(1.3) saturate(1.2);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.034),
        0 1px 2px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.testimonial-content {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.testimonial-author-info {
    text-align: center;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.25rem;
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Projects Section */
.projects {
    padding: 100px 0;
}

.projects-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
}

.project-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease;
}

.project-slide.active {
    opacity: 1;
}

.project-image {
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
}

.project-info h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: white;
}

.project-info p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-details {
    display: flex;
    gap: 1rem;
}

.project-details span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

/* Carousel Controls - iOS 16 Style */
.carousel-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-color);
    background: var(--primary-bg);
    padding: 0 0.5rem;
}

/* Submit Button - Enhanced Liquid Glass */
.submit-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 95% 5%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    border-radius: 50px;
    pointer-events: none;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.info-card h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.info-item h4 {
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--glass-border);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Social Links - iOS 16 Style */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: var(--text-primary);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: var(--text-secondary);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        max-width: 400px;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .project-info {
        left: 1rem;
        right: 1rem;
    }
    
    .carousel-controls {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-card {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-card h2 {
        font-size: 2rem;
    }
} 

/* Form Inputs - iOS 16 Style */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

/* Contact Form h3 */
.contact-form h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} 

/* Video Section - Gradient Background */
.video-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.video-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    position: relative;
    z-index: 1;
}

.video-item {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.video-item:hover .reel-video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(249, 249, 249, 0.71) 0%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.07) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark mode overlay */
.dark-mode .video-overlay {
    background: linear-gradient(90deg, rgba(21, 19, 19, 0.94) 0%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.07) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease 0.3s both;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease 0.6s both;
}

/* Video Grid Responsive Design */
@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
}

/* Video Loading Animation */
.video-item {
    position: relative;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    z-index: 0;
    animation: videoLoading 1.5s ease-in-out infinite;
}

.video-item.loaded::before {
    display: none;
}

@keyframes videoLoading {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

/* Video Grid Hover Effects */
.video-grid:hover .video-item:not(:hover) .reel-video {
    transform: scale(0.98);
    filter: brightness(0.7);
}

.video-item:hover .reel-video {
    transform: scale(1.05);
    filter: brightness(1.1);
} 

/* Navigation Menu - No Hover Animations */
.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Submit Button - Enhanced Liquid Glass */
.submit-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 95% 5%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    border-radius: 50px;
    pointer-events: none;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Carousel Buttons - Enhanced Liquid Glass */
.carousel-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    border-radius: 8px;
    pointer-events: none;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transform: scale(1.05);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Social Links - Enhanced Liquid Glass */
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    border-radius: 8px;
    pointer-events: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Theme Button - Enhanced Liquid Glass */
.theme-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    border-radius: 50px;
}

.theme-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    border-radius: 50px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-btn:hover {
    transform: scale(1.05) translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.2),
        0 6px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.theme-btn:hover::after {
    opacity: 1;
}

.theme-btn i {
    font-size: 1.3rem;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.theme-btn .fa-sun {
    position: absolute;
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.dark-mode .theme-btn .fa-moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.dark-mode .theme-btn .fa-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Dark Mode Enhancements for Navigation */
.dark-mode .nav-menu a {
    background: transparent;
    border: none;
    color: var(--text-primary);
}

.dark-mode .nav-menu a:hover {
    background: transparent;
    border: none;
    color: var(--accent-color);
}

.dark-mode .theme-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Enhanced Navigation */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .theme-btn {
        width: 26px;
        height: 26px;
    }
    
    .theme-btn i {
        font-size: 0.7rem;
    }
}

/* Split Hero Section */
.hero-split {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 60px;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 60px;
}

/* Portfolio Preview */
.portfolio-preview {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.portfolio-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    border-radius: 10px;
    pointer-events: none;
    filter: contrast(1.3) saturate(1.2);
}

.preview-title {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-item:hover img {
    transform: scale(1.1);
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-item:hover .preview-overlay {
    transform: translateY(0);
}

.preview-overlay h4 {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.25rem;
}

.preview-overlay p {
    font-size: 0.8rem;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

/* Preview Stats */
.preview-stats {
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design for Split Hero */
@media (max-width: 1200px) {
    .hero-split {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .hero-left {
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    .hero-right {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .portfolio-preview {
        max-width: 600px;
    }
    
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-split {
        padding: 0 15px;
    }
    
    .portfolio-preview {
        padding: 1.5rem;
    }
    
    .preview-title {
        font-size: 1.5rem;
    }
    
    .preview-grid {
        gap: 0.75rem;
    }
    
    .preview-overlay {
        padding: 0.75rem;
    }
    
    .preview-overlay h4 {
        font-size: 0.8rem;
    }
    
    .preview-overlay p {
        font-size: 0.7rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .preview-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
} 

/* Photobooth Container */
.photobooth-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 500px;
}

/* Photobooth Styles */
.photobooth {
    position: relative;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

/* Photobooth with Gradient Enhancements */
.photobooth-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.15);
     /*
      border: 5px solid white;
    border-right: 5px solid;
    border-left: 5px solid;
    border-top: 5px solid;
    border-bottom: 50px solid;
     */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.photobooth-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Photobooth Flash Effect */
.photobooth-flash {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    animation: flashEffect 4s ease-in-out infinite;
}

@keyframes flashEffect {
    0%, 90%, 100% { opacity: 0; }
    5% { opacity: 1; }
    10% { opacity: 0; }
}

/* Photobooth Animations */
.photobooth-1 {
    animation: photoboothFloat 6s ease-in-out infinite;
}

.photobooth-2 {
    animation: photoboothFloat 6s ease-in-out infinite 3s;
}

@keyframes photoboothFloat {
    0%, 100% { 
        transform: translateY(0) rotateY(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotateY(2deg); 
    }
    50% { 
        transform: translateY(-5px) rotateY(-1deg); 
    }
    75% { 
        transform: translateY(-15px) rotateY(1deg); 
    }
}

/* Hover Effects */
.photobooth:hover .photobooth-frame {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.photobooth:hover .photobooth-image img {
    transform: scale(1.1);
}

.photobooth:hover .photobooth-overlay {
    transform: translateY(0);
}

/* Photobooth Shine Effect */
.photobooth-frame::after {
    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.8s ease;
    border-radius: 8px;
    z-index: 1;
}

.photobooth:hover .photobooth-frame::after {
    left: 100%;
}

/* Responsive Design for Photobooths */
@media (max-width: 1200px) {
    .photobooth-container {
        max-width: 600px;
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .photobooth {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .photobooth-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .photobooth {
        height: 200px;
    }
    
    .photobooth-overlay {
        padding: 1rem;
    }
    
    .photobooth-text h3 {
        font-size: 1rem;
    }
    
    .photobooth-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .photobooth {
        height: 180px;
    }
    
    .photobooth-overlay {
        padding: 0.75rem;
    }
    
    .photobooth-text h3 {
        font-size: 0.9rem;
    }
    
    .photobooth-text p {
        font-size: 0.7rem;
    }
} 

/* Packs Section Styles */
.testimonial-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-card ul li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonial-card .cta-button {
    width: 100%;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.testimonial-card .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 95% 5%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    border-radius: 50px;
    pointer-events: none;
}

.testimonial-card .cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    border-radius: 50px;
    pointer-events: none;
    animation: frostShimmer 4s ease-in-out infinite;
}

.testimonial-card .cta-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Dark mode for pack buttons */
.dark-mode .testimonial-card .cta-button {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.dark-mode .testimonial-card .cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Dark mode adjustments for hero text */
.dark-mode .hero-title {
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.dark-mode .hero-tagline {
    color: var(--text-secondary);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced French Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease 0.3s both;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for French content */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .testimonial-card h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .testimonial-card h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
} 

/* Hero Section Mobile Responsive */
@media (max-width: 768px) {
    /* Hide videos on mobile */
    .video-grid {
        display: none;
    }
    
    /* Adjust hero content for mobile */
    .video-section {
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        padding-top: 6rem;
        background: #f5f5f5;
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        background: linear-gradient(90deg,rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.07) 100%);
        z-index: 1;
        padding: 2rem 1rem;
    }
    
    /* Dark mode background for mobile */
    .dark-mode .video-section {
        background: #000000;
    }
    
    .hero-split {
        flex-direction: column;
        padding: 0 20px;
        height: 100%;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-left {
        padding-right: 0;
        padding-bottom: 20px;
        text-align: center;
        width: 100%;
        max-width: 500px;
    }
    
    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-right {
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }
    
    /* Hide desktop nav on mobile */
    .nav-menu {
        display: none;
    }
    
    /* Adjust photobooth for mobile */
    .photobooth-container {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .photobooth {
        height: 180px;
        width: 100%;
    }
    
    .photobooth-overlay {
        padding: 1rem;
    }
    
    .photobooth-text h3 {
        font-size: 0.9rem;
    }
    
    .photobooth-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-split {
        padding: 0 15px;
    }
    
    .mobile-nav {
        width: 280px;
        padding: 80px 1.5rem 2rem;
    }
    
    .photobooth {
        height: 150px;
    }
    
    .photobooth-overlay {
        padding: 0.75rem;
    }
    
    .photobooth-text h3 {
        font-size: 0.8rem;
    }
    
    .photobooth-text p {
        font-size: 0.7rem;
    }
    
    .hamburger {
        width: 45px;
        height: 45px;
        padding: 10px;
    }
    
    .hamburger span {
        width: 18px;
        height: 2px;
    }
}

/* Dark mode for mobile nav */
.dark-mode .mobile-nav {
    background: rgba(0, 0, 0, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .mobile-nav-menu a {
    color: var(--text-primary);
}

.dark-mode .mobile-nav-menu a:hover {
    color: var(--accent-color);
}

/* Additional Mobile Hero Fixes */
@media (max-width: 768px) {
    /* Ensure proper viewport handling */
    .video-section {
        position: relative;
        overflow: hidden;
    }
    
    /* Force full height on mobile */
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
    }
    
    /* Ensure content is visible */
    .hero-split {
        position: relative;
        z-index: 3;
    }
    
    /* Fix any potential overflow issues */
    body {
        overflow-x: hidden;
    }
    
    /* Ensure buttons are properly sized */
    .cta-button {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Additional small screen fixes */
    .video-section {
        height: 100vh;
        min-height: 100vh;
        background: #f5f5f5;
    }
    
    /* Dark mode background for small mobile */
    .dark-mode .video-section {
        background: #000000;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-group {
        gap: 0.75rem;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

.theme-btn {
    width: 36px;
    height: 36px;
    padding: 8px;
}

.theme-btn i {
    font-size: 0.9rem;
}

/* Override conflicting logo rules */
.nav-logo .logo-white {
    opacity: 0 !important;
}

.nav-logo .logo-black {
    opacity: 1 !important;
}

/* Dark mode logo switching */
.dark-mode .nav-logo .logo-white {
    opacity: 1 !important;
}

.dark-mode .nav-logo .logo-black {
    opacity: 0 !important;
}

/* Hide mobile navigation drawer */
.mobile-nav {
    display: none !important;
}

.mobile-nav-overlay {
    display: none !important;
}

/* Hide hamburger menu */
.hamburger {
    display: none !important;
}

/* Hide certain menu items on mobile */
@media (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .mobile-hide {
        display: none !important;
    }
}

/* Services Section with Liquid Glass Effects */
.services {
    padding-top: 4rem;
    padding-bottom: 2rem;
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services .container {
    max-width: 100%;
    padding: 0;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    width: 100%;
    height: 800px;
    position: relative;
}

.service-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: rotate(45deg);
    z-index: 1;
}

@keyframes liquidShimmer {
    0% {
        transform: rotate(45deg) translateX(-100%) translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: rotate(45deg) translateX(100%) translateY(100%);
        opacity: 0;
    }
}

.service-card:hover {
    transform: scale(1.08);
    z-index: 10;
}

.service-card:hover::before {
    animation: liquidShimmer 1.5s ease-in-out infinite;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    opacity: 1 !important;
    transform: scale(1) !important;
    display: block !important;
    visibility: visible !important;
}

.service-card:hover .service-bg {
    transform: scale(1.15) !important;
}

.service-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    padding: 3px 10px;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    border-radius: 15px;
}

.service-card:hover .service-overlay {
    transform: translateY(-5px);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(0, 0, 0, 0.089);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-overlay h3 {
    display: none;
}

.service-overlay p {
    font-size: 0.85rem;
    opacity: 1;
    line-height: 1.4;
    color: white;
    transition: all 0.3s ease;
    margin: 0;
    font-weight: 300;
}

/* Remove underline animation */
/* .service-overlay h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.5), 
        rgba(255, 255, 255, 0.8));
    transition: width 0.3s ease;
}

.service-card:hover .service-overlay h3::after {
    width: 100%;
} */

.service-overlay p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Remove h3 hover animation since h3 is hidden */
/* .service-card:hover .service-overlay h3 {
    transform: translateY(-5px);
} */

.service-card:hover .service-overlay p {
    transform: translateY(-2px);
    opacity: 1;
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 600px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        height: 700px;
    }
    
    .service-overlay {
        padding: 5px 10px;
    }
    
    .service-overlay h3 {
        font-size: 1rem;
    }
    
    .service-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        height: 2500px;
    }
    
    .service-card:hover {
        transform: scale(1.02);
    }
}

/* Packs Grid Styles */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.packs-grid .testimonial-card {
    height: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.packs-grid .testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.packs-grid .testimonial-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.packs-grid .testimonial-content ul {
    flex: 1;
    margin: 1.5rem 0;
}

.packs-grid .testimonial-content .price {
    margin: 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
}

.packs-grid .cta-button {
    margin-top: auto;
    align-self: center;
}

/* Responsive Design for Packs Grid */
@media (max-width: 768px) {
    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .packs-grid .testimonial-card {
        min-height: 350px;
    }
    
    .packs-grid .testimonial-content h3 {
        font-size: 1.3rem;
    }
    
    .packs-grid .testimonial-content .price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .packs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .packs-grid .testimonial-card {
        min-height: 300px;
    }
    
    .packs-grid .testimonial-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .packs-grid .testimonial-content ul {
        margin: 1rem 0;
    }
    
    .packs-grid .testimonial-content .price {
        font-size: 1rem;
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .video-grid {
        display: none;
    }
    
    .video-section {
        background: #f5f5f5;
        padding-top: 6rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dark-mode .video-section {
        background: #000000;
    }
    
    .video-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-split {
        flex-direction: column;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-left {
        order: 1;
        flex: none;
        width: 100%;
    }
    
    .hero-content {
        padding: 0;
        max-width: 100%;
    }
    
    .hero-right {
        order: 2;
        flex: none;
        width: 100%;
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
    .photobooth-container {
        display: none;
    }
    
    .photobooth {
        display: none;
    }
    
    .photobooth-overlay {
        display: none;
    }
    
    .photobooth-text h3 {
        display: none;
    }
    
    .photobooth-text p {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Show one full-page video at a time with transitions */
    .video-grid {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        overflow: hidden;
    }
    
    .video-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    
    .video-item.active {
        opacity: 1;
    }
    
    .reel-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .video-section {
        background: #f5f5f5;
        padding-top: 6rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .dark-mode .video-section {
        background: #000000;
    }
    
    .video-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
    
    .hero-split {
        flex-direction: column;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-left {
        order: 1;
        flex: none;
        width: 100%;
    }
    
    .hero-content {
        padding: 0;
        max-width: 100%;
    }
    
    .hero-right {
        order: 2;
        flex: none;
        width: 100%;
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: var(--text-secondary);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
    .photobooth-container {
        display: none;
    }
    
    .photobooth {
        display: none;
    }
    
    .photobooth-overlay {
        display: none;
    }
    
    .photobooth-text h3 {
        display: none;
    }
    
    .photobooth-text p {
        display: none;
    }
}

/* Stats Row Section */
.stats-row-section {
    padding: 4rem 0;
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.stats-row-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stats-row .stat-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.stats-row .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.stats-row .stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.stats-row .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stats-row .stat-icon .liquid-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.stats-row .stat-card:hover .stat-icon .liquid-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.stats-row .stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-row .stat-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Responsive Design for Stats Row */
@media (max-width: 1200px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats-row-section {
        padding: 3rem 0;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stats-row .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stats-row .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stats-row .stat-icon .liquid-icon {
        width: 36px;
        height: 36px;
    }
    
    .stats-row .stat-content h3 {
        font-size: 2rem;
    }
    
    .stats-row .stat-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-row .stat-card {
        padding: 1.25rem 1rem;
    }
    
    .stats-row .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .stats-row .stat-icon .liquid-icon {
        width: 32px;
        height: 32px;
    }
    
    .stats-row .stat-content h3 {
        font-size: 1.75rem;
    }
    
    .stats-row .stat-content p {
        font-size: 0.85rem;
    }
}