/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ACTUAL Mixo.io Color Palette - Light Theme with Pink Accent */

    /* PRIMARY ACCENT - NAVY BLUE (Main brand color) */
    --pink-primary: #1e3a8a;            /* Main navy blue for buttons/CTAs */
    --pink-hover: #1e3a8a;              /* Navy blue for hover state */
    --pink-light: #FF7782;              /* Blush pink variant */
    --pink-dark: #172554;               /* Darkest navy for active states */

    /* BASE BACKGROUNDS - LIGHT THEME (80% of site) */
    --off-white: #fafafa;               /* Main content background */
    --pure-white: #ffffff;              /* Cards, components */
    --light-gray: #f3f4f6;              /* Alternative light background */

    /* DARK GRADIENT (Hero + Footer ONLY - 20% of site) */
    --slate-900: #0f172a;               /* Gradient start */
    --indigo-950: #1e1b4b;              /* Gradient middle */
    --black: #000000;                   /* Gradient end */
    --gradient-hero: linear-gradient(to bottom right, #0f172a, #1e1b4b, #000000);
    --gradient-footer: linear-gradient(to bottom right, #0f172a, #1e1b4b, #000000);

    /* TEXT COLORS - LIGHT THEME */
    --text-primary: #111827;            /* Main headings on light (dark gray) */
    --text-secondary: #6b7280;          /* Secondary text (medium gray) */
    --text-tertiary: #9ca3af;           /* Subtle text (light gray) */
    --text-on-dark: #ffffff;            /* Text on hero/footer (white) */
    --text-accent: #1e3a8a;             /* Navy blue for links/highlights */

    /* CARD & COMPONENT STYLES */
    --card-bg: #ffffff;                 /* White card backgrounds */
    --card-border: #e5e7eb;             /* Light gray borders */
    --card-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    /* GLASSMORPHISM for Light Theme */
    --glass-bg-light: rgba(255, 255, 255, 0.7);
    --glass-border-light: rgba(0, 0, 0, 0.1);

    /* Deep Dark Background Colors (for hero/footer) */
    --dark-900: #0f172a;
    --dark-800: #1e1b4b;
    --dark-700: #1e293b;
    --dark-600: #334155;

    /* Neutral Palette (Updated for dark theme) */
    --white: #FFFFFF;
    --neutral-50: #F8F9FA;
    --neutral-100: #F1F3F5;
    --neutral-200: #E9ECEF;
    --neutral-300: #DEE2E6;
    --neutral-700: #6B7280;
    --neutral-800: #374151;
    --neutral-900: #1F2937;

    /* Accent Colors */
    --accent-success: #10B981;
    --accent-warning: #F59E0B;
    --accent-error: #EF4444;

    /* Legacy compatibility (updated for NAVY BLUE accent) */
    --primary-color: #1e3a8a;           /* Navy blue instead of old colors */
    --primary-hover: #1e3a8a;           /* Navy blue */
    --primary-dark: #172554;            /* Darkest navy */
    --primary-light: rgba(30, 58, 138, 0.1);  /* Light navy tint */

    /* Convenience aliases */
    --text-color: var(--neutral-900);
    --text-secondary: var(--neutral-700);
    --bg-primary: var(--white);
    --bg-secondary: var(--neutral-50);
    --border-color: var(--neutral-200);

    /* Typography Sizes (Mobile-first) */
    --text-xs: 0.75rem;                 /* 12px */
    --text-sm: 0.875rem;                /* 14px */
    --text-base: 1rem;                  /* 16px */
    --text-lg: 1.125rem;                /* 18px */
    --text-xl: 1.25rem;                 /* 20px */
    --text-2xl: 1.5rem;                 /* 24px */
    --text-3xl: 1.875rem;               /* 30px */
    --text-4xl: 2.25rem;                /* 36px */
    --text-5xl: 3rem;                   /* 48px */

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    /* Spacing (8px base unit system) */
    --space-1: 0.25rem;                 /* 4px */
    --space-2: 0.5rem;                  /* 8px */
    --space-3: 0.75rem;                 /* 12px */
    --space-4: 1rem;                    /* 16px */
    --space-6: 1.5rem;                  /* 24px */
    --space-8: 2rem;                    /* 32px */
    --space-12: 3rem;                   /* 48px */
    --space-16: 4rem;                   /* 64px */
    --space-24: 6rem;                   /* 96px */

    /* Visual Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-none: none;

    /* Border Radius */
    --radius-sm: 0.375rem;              /* 6px */
    --radius-md: 0.5rem;                /* 8px */
    --radius-lg: 0.75rem;               /* 12px */
    --radius-xl: 1rem;                  /* 16px */
    --radius-full: 9999px;              /* Pills, circles */

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;

    /* Legacy compatibility (will be removed) */
    --border-radius: var(--radius-md);
    --box-shadow: var(--shadow-md);
    --box-shadow-hover: var(--shadow-lg);
    --transition: var(--transition-base);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-normal);
    color: var(--text-primary);          /* Dark gray text on light background */
    background: var(--off-white);         /* Off-white background (Mixo.io style) */
    overflow-x: hidden;
}

/* Clean typography - Inter for everything */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--neutral-900);
    letter-spacing: -0.03em;
}

h1 {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
}

h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
}

h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
}

h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
}

p {
    line-height: var(--leading-relaxed);
    color: var(--neutral-700);
}

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

/* Navigation - Light Glassmorphic (Mixo.io Light Theme) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    text-decoration: none;
}

.logo i {
    font-size: 1.5rem;
    color: var(--pink-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--pink-primary);
}

/* Remove underline animation for clean look */
.nav-menu a::after {
    display: none;
}

.admin-link {
    background: var(--pink-primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: var(--font-semibold);
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.2);
    transition: all var(--transition-base);
}

.admin-link:hover {
    background: var(--pink-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(30, 58, 138, 0.3);
}

.admin-link::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    transition: var(--transition-base);
    border-radius: 2px;
}

/* Hero Section - Mixo.io Full-Screen Gradient Style */
.hero {
    min-height: 100vh;
    height: 100vh;
    background: var(--gradient-hero-light);
    padding: 120px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Modern Mixo.io Style Animated gradient blob background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(168, 85, 247, 0.08) 30%, transparent 60%);
    animation: floatBackground 20s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(217, 70, 239, 0.08) 30%, transparent 60%);
    animation: floatBackground 25s ease-in-out infinite reverse;
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: var(--neutral-900);
    max-width: 900px;
    padding: 2rem;
    z-index: 1;
    position: relative;
}

/* Modern Glassmorphic Badge */
.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.625rem 1.5rem;
    border-radius: 30px;
    color: var(--color-indigo);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    letter-spacing: 0.3px;
    margin-bottom: 2rem;
    box-shadow: var(--glass-shadow);
}

.hero-content h1 {
    font-size: 3.5rem;  /* 56px - Much larger */
    font-weight: var(--font-extrabold);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;  /* Tighter */
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientText 8s ease infinite;
}

.hero-content p {
    font-size: var(--text-lg);
    color: var(--neutral-700);
    margin-bottom: 2rem;
    font-weight: var(--font-normal);
    line-height: var(--leading-relaxed);
}

/* Simplified Features List */
.hero-features {
    display: flex;
    gap: var(--space-8);
    justify-content: center;
    margin: var(--space-8) 0;
    flex-wrap: wrap;
}

.hero-features span {
    color: var(--neutral-700);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.hero-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Subtext - subtle, not animated */
.hero-subtext {
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    color: var(--primary-color);
    font-weight: var(--font-semibold);
}

/* Trust Indicators - moved to center */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    margin-top: var(--space-12);
    flex-wrap: wrap;
    position: relative;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    color: var(--neutral-900);
    margin-bottom: var(--space-1);
}

.stat-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--neutral-700);
    font-weight: var(--font-medium);
}

/* Remove scroll indicator */
.hero-scroll {
    display: none;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

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

/* Mixo.io Style Keyframe Animations */
@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--glow-primary);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
    }
}

/* Modern Mixo.io Style Animations */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3),
                    0 0 40px rgba(168, 85, 247, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.6),
                    0 0 60px rgba(168, 85, 247, 0.4);
    }
}

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

@keyframes rotateGradient {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* Button System - Mixo.io Gradient Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: var(--font-semibold);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: var(--text-base);
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--pink-primary);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(30, 58, 138, 0.2);
    border: none;
}

.btn-primary:hover {
    background: var(--pink-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-outline {
    background: transparent;
    color: var(--pink-primary);
    border: 2px solid var(--pink-primary);
    position: relative;
}

.btn-outline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-button);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
    z-index: -1;
}

.btn-outline:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.btn-outline:hover::after {
    opacity: 1;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-secondary {
    background: var(--neutral-50);
    color: var(--neutral-700);
    border-color: var(--neutral-200);
}

.btn-secondary:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-300);
    transform: translateY(-2px);
}

/* Sections - Mixo.io Style with More Spacing */
section {
    padding: 120px 0;  /* Increased from 80px */
    position: relative;
    background: var(--off-white);  /* Light background for all sections */
}

section:nth-child(even) {
    background: var(--pure-white);  /* Alternate white for visual variety */
}

/* Section Headers - Solid Dark Text (Mixo.io Light Theme) */
.section-header {
    text-align: center;
    margin-bottom: 4rem;  /* Increased from 3rem */
}

.section-header h2 {
    font-size: 2.5rem;  /* Larger - 40px */
    font-weight: var(--font-extrabold);
    color: var(--text-primary);  /* Solid dark gray text */
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    /* Removed gradient text for light theme */
}

.section-header p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
}

/* Portfolio Carousel Section - Clean Style */
.portfolio-section {
    padding: 80px 0;
    background: var(--pure-white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: var(--text-4xl);
    color: var(--text-primary);
    font-weight: var(--font-bold);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

/* Swiper Carousel Styling */
.portfolioSwiper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 60px;
}

.portfolio-card {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
}

.portfolio-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.portfolio-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--neutral-200);
    display: flex;
    justify-content: center;
    align-items: center;
}

.backdrop-label {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    border-radius: var(--radius-md);
}

/* Swiper Navigation Arrows - Clean Style */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Swiper Pagination Dots */
.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.4;
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 30px 0 50px 0; /* Reduced top padding to move closer to testimonials */
    }

    .section-title {
        font-size: 2rem;
    }

    .portfolioSwiper {
        padding: 20px 40px;
    }

    .portfolio-card {
        height: auto;
    }

    .backdrop-label {
        font-size: 1.1rem;
        padding: 8px 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .portfolioSwiper {
        padding: 20px 30px;
    }

    .portfolio-card {
        height: auto;
    }
}

/* About Section */
/* About Section - Clean Style */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image .image-placeholder {
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    font-size: 5rem;
}

.about-text h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    color: var(--neutral-900);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
    line-height: var(--leading-relaxed);
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neutral-700);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Service Cards - Light Theme with Pink Accent (Mixo.io Style) */
.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--card-shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--pink-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--pink-primary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    background: var(--card-bg);
    border: 2px solid var(--pink-primary);
    position: relative;
}

.service-card.featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(37, 99, 235, 0.15));
    z-index: -1;
}

.service-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(30, 58, 138, 0.2);
}

.service-card.featured .service-icon {
    background: var(--pink-primary);
    color: var(--white);
}

.badge {
    position: absolute;
    top: 10px;  /* REDUCED from 15px */
    right: 10px;  /* REDUCED from 15px */
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 12px;  /* REDUCED from 5px 15px */
    border-radius: 20px;
    font-size: 0.75rem;  /* REDUCED from 0.8rem */
    font-weight: bold;
}

.service-icon {
    width: 48px;  /* REDUCED from 64px */
    height: 48px;  /* REDUCED from 64px */
    margin: 0 auto 1rem;  /* REDUCED from 1.5rem */
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;  /* REDUCED from 1.75rem */
}

.service-card h3 {
    margin-bottom: 0.75rem;  /* REDUCED from 1rem */
    font-size: 1.25rem;  /* REDUCED from 1.5rem */
}

.service-card p {
    margin-bottom: 1rem;  /* REDUCED from 1.5rem */
    font-size: 0.9rem;  /* NEW - smaller text */
    line-height: 1.5;
    opacity: 0.9;
}

.price {
    font-size: 1.5rem;  /* REDUCED from 1.8rem */
    font-weight: bold;
    margin-bottom: 1rem;  /* REDUCED from 1.5rem */
    color: var(--pink-primary);
}

.service-card.featured .price {
    color: var(--primary-color);  /* CHANGED from white for better visibility */
}

.price span {
    font-size: 0.9rem;  /* REDUCED from 1rem */
    font-weight: normal;
}

/* Backdrop Info */
.backdrop-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.backdrop-slot {
    text-align: center;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
}

.backdrop-slot h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.backdrop-slot h4 i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Trust Indicators Section */
.trust-indicators {
    background: var(--neutral-50);
    padding: 3rem 0;
}

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

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.trust-item h4 {
    color: var(--neutral-900);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--neutral-600);
    font-size: var(--text-sm);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--neutral-900);
    margin-bottom: 0.75rem;
}

.section-header-center p {
    font-size: var(--text-lg);
    color: var(--neutral-600);
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--neutral-700);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-100);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
}

.author-info h5 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: var(--text-sm);
    color: var(--neutral-500);
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.backdrop-slot p {
    color: #666;
    font-size: 1.1rem;
}

/* 5 Column Services Grid */
.services-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Package Details List */
.package-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
    text-align: left;
}

.package-details li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.package-details li i {
    margin-right: 8px;
    width: 20px;
}

.service-card.featured .package-details li {
    color: white;
}

/* Package Info in Booking Form */
.package-info {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.package-info p {
    margin: 0;
    color: #1565c0;
    font-weight: 500;
}

.package-info i {
    margin-right: 8px;
}

/* Slot Availability Indicator */
.slot-availability {
    margin-bottom: 1.5rem;
}

.slot-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.slot-badge {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.slot-badge i:first-child {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.slot-badge span:first-of-type {
    flex: 1;
    font-weight: 600;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.status-indicator.available {
    background: #d4edda;
    color: #155724;
}

.status-indicator.full {
    background: #f8d7da;
    color: #721c24;
}

.status-indicator.limited {
    background: #fff3cd;
    color: #856404;
}

.slot-badge.selected {
    border-color: var(--primary-color);
    background: #dbeafe;
}

/* Time dropdown helper text */
.time-helper {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

/* Booking Section */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.booking-info {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: fit-content;
}

.booking-info h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

/* Booking Info Boxes - Clean Style */
.info-box {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
}

.info-box h4 {
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
    font-weight: var(--font-semibold);
}

.info-box p {
    margin: 0.3rem 0;
    color: var(--neutral-600);
    font-size: var(--text-sm);
}

.info-box i {
    margin-right: 8px;
    color: var(--primary-color);
}

.booking-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Booking Progress Indicator */
.booking-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--neutral-200);
    position: relative;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--neutral-200);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--neutral-100);
    border: 2px solid var(--neutral-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--text-sm);
    color: var(--neutral-500);
    transition: all var(--transition-base);
}

.step-label {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    font-weight: var(--font-medium);
    transition: color var(--transition-base);
}

.progress-step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    animation: pulseGlow 1.5s infinite;
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: var(--font-semibold);
}

.progress-step.completed .step-number {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    animation: checkmarkPop 0.6s ease-out;
}

.progress-step.completed .step-number::after {
    content: '✓';
    font-size: 1rem;
}

.progress-step.completed .step-label {
    color: var(--neutral-700);
}

/* Progress Step Animations */
@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1.1);
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 10px rgba(78, 205, 196, 0);
    }
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .step-label {
        font-size: 0.65rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Inline Validation States */
.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
    border-color: #10b981;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
}

.form-group .error-message {
    display: none;
    color: #ef4444;
    font-size: var(--text-sm);
    margin-top: 0.25rem;
}

.form-group.error .error-message {
    display: block;
}

.form-group label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Booking Preview Summary */
.booking-preview {
    background: var(--primary-light);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0 1.5rem;
}

.booking-preview h4 {
    color: var(--primary-color);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.preview-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preview-label {
    font-size: var(--text-xs);
    color: var(--neutral-600);
    font-weight: var(--font-medium);
}

.preview-value {
    font-size: var(--text-base);
    color: var(--neutral-900);
    font-weight: var(--font-semibold);
}

@media (max-width: 480px) {
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.booking-summary {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.summary-row:last-child {
    margin-bottom: 0;
    padding-top: 0.5rem;
    border-top: 2px solid #ddd;
    font-weight: bold;
}

.total-price,
.deposit-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Modal */
/* Modal - Mixo.io Glassmorphic Style */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 550px;
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glow-lg);
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    z-index: -1;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.modal-content h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-details {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    text-align: left;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.modal-details p {
    margin: 0.5rem 0;
    color: var(--neutral-700);
}

/* Modal Actions */
.modal-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ============================================
   RECEIPT MODAL STYLING - INVOICE/RECEIPT STYLE
   ============================================ */

.receipt-modal {
    max-width: 600px !important;
    background: #ffffff !important;
    padding: 2.5rem !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: none !important;
}

.receipt-modal::before {
    display: none !important;
}

/* Success Checkmark Animation Container */
.success-icon-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.success-checkmark-circle {
    stroke: #4CAF50;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: checkmark-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
    stroke: #4CAF50;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkmark-check 0.3s 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@keyframes checkmark-circle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark-check {
    to {
        stroke-dashoffset: 0;
    }
}

/* Receipt Title & Subtitle */
.receipt-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.receipt-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 1.5rem 0;
    text-align: center;
    line-height: 1.5;
}

/* Receipt Container */
.receipt-container {
    background: #fafafa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Receipt Container - Bookshelf (Purple/Violet Theme) */
.receipt-container.bookshelf {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff) !important;
    border: 2px solid #9333ea !important;
}

/* Receipt Header */
.receipt-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed #d0d0d0;
}

.receipt-logo {
    font-size: 2.5rem;
    color: #f43f87;
    margin-bottom: 0.5rem;
}

.receipt-container.bookshelf .receipt-logo {
    color: #7e22ce !important;
}

.receipt-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0.5rem 0;
    letter-spacing: 1px;
}

.receipt-container.bookshelf .receipt-header h3 {
    color: #581c87 !important;
}

.receipt-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.75rem;
}

/* Receipt Sections */
.receipt-section {
    margin: 1.25rem 0;
}

.receipt-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.receipt-container.bookshelf .receipt-section-title {
    color: #581c87 !important;
    border-bottom-color: #9333ea !important;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.receipt-label {
    font-weight: 500;
    color: #555;
    flex: 0 0 40%;
}

.receipt-value {
    font-weight: 400;
    color: #333;
    text-align: right;
    flex: 1;
    word-break: break-word;
}

/* Sub-items (payment breakdown) */
.receipt-breakdown {
    margin-left: 1rem;
    border-left: 2px solid #e0e0e0;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.receipt-label-sub {
    font-weight: 400;
    color: #666;
    font-size: 0.85rem;
    flex: 0 0 40%;
}

.receipt-value-sub {
    font-weight: 400;
    color: #555;
    font-size: 0.85rem;
    text-align: right;
    flex: 1;
}

/* Receipt Dividers */
.receipt-divider {
    border-top: 2px dashed #d0d0d0;
    margin: 1rem 0;
}

.receipt-total-divider {
    border-top: 2px solid #333;
    margin: 0.75rem 0 0.5rem 0;
}

/* Grand Total Row */
.receipt-grand-total {
    padding: 0.75rem 0 0.5rem 0;
}

.receipt-label-total {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.receipt-value-total {
    font-weight: 700;
    color: #f43f87;
    font-size: 1.1rem;
}

.receipt-container.bookshelf .receipt-value-total {
    color: #581c87 !important;
}

/* Receipt Action (WhatsApp Button) */
.receipt-action {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed #d0d0d0;
}

.btn-whatsapp-receipt {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-receipt i {
    font-size: 1.5rem;
}

.btn-whatsapp-receipt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-receipt:active {
    transform: translateY(0);
}

.receipt-action-hint {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Animation Containers */
.animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2001;
    overflow: hidden;
}

/* Footer - Clean Light Theme */
.footer {
    background: var(--gradient-footer);
    color: var(--text-on-dark);
    padding: 3rem 0 1rem;
    border-top: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-on-dark);
    font-weight: var(--font-semibold);
}

.footer-section p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
}

.footer-section i {
    margin-right: 8px;
    color: var(--pink-primary);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-dark);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--pink-primary);
    border-color: var(--pink-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: var(--text-3xl);
    }

    .hero-content p {
        font-size: var(--text-base);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: var(--text-3xl);
    }

    .backdrop-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid-5 {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: scale(1);
    }
}

/* Prevent horizontal scroll on mobile */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Prevent content from hiding behind fixed navbar */
}

/* Mobile device specific styles */
body.mobile-device {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.mobile-device * {
    /* Improve tap responsiveness */
    -webkit-tap-highlight-color: transparent;
}

body.mobile-device button,
body.mobile-device .btn,
body.mobile-device .backdrop-card,
body.mobile-device .time-btn {
    /* Re-enable tap highlight for interactive elements */
    -webkit-tap-highlight-color: rgba(78, 205, 196, 0.2);
}

/* ============================================
   NEW BOOKING FLOW - BACKDROP CARDS & TIME
   ============================================ */

/* Backdrop Visual Cards */
.backdrop-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

/* Backdrop Cards - Compact 33% Reduction */
/* Backdrop Cards - Enhanced for Bottom Sheet */
.backdrop-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
    animation: fadeInUp 0.4s ease-out;
}

.backdrop-card {
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.backdrop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ecdc4, #44a097);
    opacity: 0;
    border-radius: 16px 16px 0 0;
    transition: opacity 0.3s ease;
}

.backdrop-card:hover {
    border-color: #4ecdc4;
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.2),
                0 4px 12px rgba(78, 205, 196, 0.15),
                0 2px 6px rgba(78, 205, 196, 0.1);
    transform: translateY(-3px);
}

.backdrop-card:hover::before {
    opacity: 1;
}

.backdrop-card.available {
    cursor: pointer;
}

.backdrop-card.booked {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #ddd;
    pointer-events: none;
}

.backdrop-card.booked:hover {
    transform: none;
    box-shadow: none;
    border-color: #ddd;
}

.backdrop-card.booked::before {
    display: none;
}

/* Blocked backdrop styling */
.backdrop-card.blocked-backdrop {
    opacity: 0.6;
    cursor: not-allowed;
    background: repeating-linear-gradient(
        45deg,
        #f8f8f8,
        #f8f8f8 10px,
        #efefef 10px,
        #efefef 20px
    );
    border-color: #e74c3c;
    pointer-events: auto;
}

.backdrop-card.blocked-backdrop:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
}

.backdrop-card.blocked-backdrop::before {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    opacity: 1;
}

.badge-blocked {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.block-reason-text {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Disable hover effects on mobile to prevent position shifts during scroll */
@media (hover: none) and (pointer: coarse) {
    .backdrop-card:hover {
        transform: none !important;
        border-color: #e5e7eb !important;
        box-shadow: none !important;
    }

    .backdrop-card:hover::before {
        opacity: 0 !important;
    }

    /* Add subtle active (press) state instead */
    .backdrop-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

.backdrop-card.selected {
    border-color: #4ecdc4;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.25),
                0 4px 12px rgba(78, 205, 196, 0.2),
                0 2px 6px rgba(78, 205, 196, 0.15);
}

.backdrop-card.selected::before {
    opacity: 1;
}

.backdrop-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.backdrop-card:hover .backdrop-icon {
    transform: scale(1.1);
}

.backdrop-card.booked .backdrop-icon {
    opacity: 0.5;
}

.backdrop-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0.5rem 0 0.25rem 0;
    color: #1e3a8a;
}

.backdrop-card.booked h4 {
    color: #999;
}

.badge-slot {
    display: inline-block;
    background: #e3f2fd;
    color: #1565c0;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
    letter-spacing: 0.3px;
}

.backdrop-card.booked .badge-slot {
    background: #f5f5f5;
    color: #999;
}

.badge-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
    letter-spacing: 0.3px;
}

.badge-status.available {
    background: #d4edda;
    color: #155724;
}

.badge-status.available::before {
    content: '✓ ';
}

.badge-status.booked {
    background: #f8d7da;
    color: #721c24;
}

.badge-status.booked::before {
    content: '✗ ';
}

/* Mobile responsive */
@media (max-width: 768px) {
    .backdrop-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .backdrop-card {
        min-height: 140px;
        padding: 1.25rem 0.75rem;
    }

    .backdrop-icon {
        font-size: 2.5rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .backdrop-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Alternative Times Section */
/* Alternative Times - Clean Style */
.alternative-times {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
    border: 1px solid #fde68a;
}

.alternative-times p {
    margin: 0 0 1rem 0;
    color: #92400e;
    font-weight: var(--font-medium);
}

.alternative-times h4 {
    margin: 1rem 0 1rem 0;
    color: #92400e;
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
}

.time-suggestions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.time-btn {
    padding: 0.7rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    transition: all var(--transition-base);
    box-shadow: 0 2px 4px rgba(78, 205, 196, 0.2);
    /* ✅ Mobile-friendly properties */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(78, 205, 196, 0.3);
    user-select: none;
}

.time-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 8px rgba(78, 205, 196, 0.3);
}

.time-btn:active {
    transform: translateY(-1px);
}

/* Enhanced Alternative Time Cards */
.alt-time-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* ✅ Mobile-friendly properties */
    touch-action: manipulation; /* Prevents double-tap zoom */
    -webkit-tap-highlight-color: rgba(78, 205, 196, 0.2); /* Touch feedback */
    user-select: none; /* Prevents text selection */
}

.alt-time-card:hover {
    border-color: #4ecdc4;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(78, 205, 196, 0.25);
}

.alt-time-card.closest {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fffef7, #ffffff);
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.3);
}

.alt-time-card.closest:hover {
    border-color: #ffcc00;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.closest-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffcc00);
    color: #333;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.alt-time-range {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.alt-time-range strong {
    font-size: 1.1rem;
    color: #333;
}

.duration-badge {
    background: #f5f5f5;
    color: #666;
    font-size: 0.85rem;
    padding: 0.25rem 0.65rem;
    border-radius: 15px;
    font-weight: 500;
}

.slot-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.slot-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.85rem;
    flex: 1;
    min-width: 120px;
}

.slot-badge.slot-a {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: 1px solid #90caf9;
}

.slot-badge.slot-b {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border: 1px solid #ce93d8;
}

.slot-label {
    font-weight: 700;
    color: #333;
}

.backdrop-count {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.backdrop-list {
    font-size: 0.75rem;
    color: #444;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Next Available Summary Card */
.next-available-summary {
    background: linear-gradient(135deg, #4ecdc4, #45b7aa);
    color: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.35);
    animation: slideIn 0.4s ease-out;
}

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

.next-available-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.next-available-header i {
    font-size: 1.2rem;
}

.next-available-header h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-available-time {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.75rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.next-available-duration {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 500;
}

.next-available-backdrops {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    margin: 1rem auto;
    font-weight: 600;
    font-size: 0.95rem;
    max-width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.next-available-backdrops i {
    margin-right: 0.5rem;
}

.btn-quick-select {
    background: white;
    color: #4ecdc4;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    /* ✅ Mobile-friendly properties */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(78, 205, 196, 0.2);
    user-select: none;
}

.btn-quick-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    background: #f8f8f8;
}

.btn-quick-select:active {
    transform: translateY(0);
}

.btn-quick-select i {
    margin-right: 0.5rem;
}

/* Mobile Responsive for Alternative Time Cards */
@media (max-width: 768px) {
    .alt-time-card {
        padding: 0.85rem 1rem;
    }

    .alt-time-range {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .alt-time-range strong {
        font-size: 1rem;
    }

    .duration-badge {
        font-size: 0.8rem;
    }

    .slot-badge {
        min-width: 100px;
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }

    .closest-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    /* Next Available Summary - Mobile */
    .next-available-summary {
        padding: 1.25rem 1rem;
    }

    .next-available-time {
        font-size: 1.5rem;
    }

    .next-available-header h3 {
        font-size: 0.95rem;
    }

    .btn-quick-select {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .next-available-backdrops {
        font-size: 0.85rem;
        padding: 0.65rem 1rem;
    }
}

/* ============================================
   NEXT AVAILABLE BADGE ON BOOKED CARDS
   ============================================ */

.next-available-badge {
    margin-top: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #4ecdc4, #45b7aa);
    color: white;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
    /* ✅ Mobile-friendly properties */
    touch-action: manipulation; /* Prevents double-tap zoom */
    -webkit-tap-highlight-color: rgba(78, 205, 196, 0.3); /* Touch feedback on iOS */
    user-select: none; /* Prevents text selection on touch */
    pointer-events: auto; /* Ensures it's clickable */
    position: relative; /* Ensures proper z-index stacking */
    z-index: 10; /* Above card content */
}

.next-available-badge:hover {
    background: linear-gradient(135deg, #45b7aa, #3da89e);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.4);
}

.next-available-badge:active {
    transform: translateY(0);
}

.next-available-badge i {
    font-size: 1.2rem;
}

.next-available-badge span {
    font-size: 1rem;
    letter-spacing: 0.3px;
}

/* No availability variant */
.next-available-badge.no-availability {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    cursor: default;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.2);
}

.next-available-badge.no-availability:hover {
    transform: none;
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.2);
}

/* ============================================
   EARLIER AVAILABLE BADGE (PREVIOUS SLOT)
   ============================================ */

.earlier-available-badge {
    margin-top: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #ffa726, #ff9800);
    color: white;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 167, 38, 0.3);
    /* ✅ Mobile-friendly properties */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 167, 38, 0.3);
    user-select: none;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.earlier-available-badge:hover {
    background: linear-gradient(135deg, #fb8c00, #f57c00);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 167, 38, 0.4);
}

.earlier-available-badge:active {
    transform: translateY(0);
}

.earlier-available-badge i {
    font-size: 1.2rem;
}

.earlier-available-badge span {
    font-size: 1rem;
    letter-spacing: 0.3px;
}

/* Pulse animation for check button */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(78, 205, 196, 0.5);
    }
}

/* Mobile responsive for next available badge on cards */
@media (max-width: 768px) {
    .next-available-badge {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        margin-top: 0.6rem;
    }

    .next-available-badge i {
        font-size: 0.9rem;
    }

    .next-available-badge span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .next-available-badge {
        padding: 0.6rem;
        font-size: 0.75rem;
    }
}

/* Mobile responsive for earlier available badge */
@media (max-width: 768px) {
    .earlier-available-badge {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        margin-top: 0.6rem;
    }

    .earlier-available-badge i {
        font-size: 0.9rem;
    }

    .earlier-available-badge span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .earlier-available-badge {
        padding: 0.6rem;
        font-size: 0.75rem;
    }
}

/* Check Availability Button */
.btn-secondary {
    background: linear-gradient(135deg, #4ecdc4, #45b7aa);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-secondary:hover:not(:disabled) {
    background: linear-gradient(135deg, #45b7aa, #3da89e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.btn-secondary:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

/* Disabled Input Styling */
input:disabled,
select:disabled,
textarea:disabled,
button:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Time Input Styling */
input[type="time"] {
    font-size: 1.1rem;
    padding: 12px 15px;
    font-family: inherit;
}

/* Contact Section Heading */
#contactSection h3 {
    border-top: 2px solid var(--primary-color);
    padding-top: 1.5rem;
}

/* Responsive - Mobile Backdrop Cards - Extra Compact */
@media (max-width: 768px) {
    .backdrop-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem; /* Increased from 1rem for better spacing */
        padding: 1rem 0;
    }

    .backdrop-card {
        padding: 1.5rem 1rem;  /* Increased for more touch area */
        min-height: 140px;     /* Adequate size for touch */
        margin: 0.5rem 0;      /* Vertical spacing between cards */
        touch-action: manipulation; /* Prevent accidental double-tap */
    }

    /* Add clear tap feedback */
    .backdrop-card:active {
        transform: scale(0.98);
        background: rgba(30, 58, 138, 0.15);
    }

    /* Visual indicator that it's tappable */
    .backdrop-card::after {
        content: "Tap to select";
        display: block;
        text-align: center;
        font-size: 0.75rem;
        color: var(--text-secondary);
        margin-top: 0.5rem;
        opacity: 0.7;
    }

    .backdrop-card.selected::after {
        content: "✓ Selected";
        color: var(--pink-primary);
        font-weight: 700;
        opacity: 1;
    }

    .backdrop-card.booked::after {
        content: "Not Available";
        color: #999;
        opacity: 0.6;
    }

    .backdrop-icon {
        font-size: 1.75rem;  /* REDUCED from 2.5rem (40px → 28px) */
    }

    .backdrop-card h4 {
        font-size: 0.95rem;  /* Slightly larger for readability */
    }

    /* Add visual separation between cards */
    .backdrop-card:not(:last-child) {
        margin-bottom: 1rem;
    }

    .time-suggestions {
        gap: 0.5rem;
    }

    .time-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Modal mobile optimization */
    .modal-content {
        padding: 1.5rem;
        margin: 15px;
        max-width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-icon {
        font-size: 3rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-details {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .modal-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .modal-actions .btn {
        width: 100%;
    }

    /* Button mobile optimization - ensure touch-friendly size */
    .btn {
        padding: 14px 24px;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #checkAvailabilityBtn {
        min-height: 50px;
        font-size: 1.05rem;
    }

    button[type="submit"] {
        min-height: 52px;
        font-size: 1.1rem;
    }

    /* Form improvements for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 14px 12px;
        min-height: 48px;
    }

    .form-group select {
        background-size: 20px;
    }

    /* Time input - make it more touch-friendly */
    input[type="time"] {
        font-size: 16px;
        padding: 14px 12px;
        min-height: 50px;
    }

    input[type="date"] {
        font-size: 16px;
        padding: 14px 12px;
        min-height: 50px;
    }

    /* Package info mobile */
    .package-info {
        font-size: 0.9rem;
        padding: 1rem;
    }

    /* Booking summary mobile */
    .booking-summary {
        padding: 1.2rem;
    }

    .summary-row {
        font-size: 1rem;
    }

    /* Backdrop section spacing */
    #backdropSection {
        margin-top: 1.5rem;
    }

    /* Contact section spacing */
    #contactSection h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem;
    }

    /* Alternative times mobile */
    .alternative-times {
        padding: 1.2rem;
        margin: 1.2rem 0;
    }

    .alternative-times h4 {
        font-size: 1rem;
    }

    .alternative-times p {
        font-size: 0.9rem;
    }
}

/* Extra small devices (phones in portrait, less than 480px) */
@media (max-width: 480px) {
    .backdrop-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .backdrop-card {
        padding: 1.2rem 1rem;
        min-height: 140px;
    }

    .backdrop-card h4 {
        font-size: 1.1rem;
    }

    .time-suggestions {
        flex-direction: column;
    }

    .time-btn {
        width: 100%;
        padding: 0.8rem;
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .modal-content {
        padding: 1.2rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Improve touch targets for touch devices */
    .backdrop-card {
        min-height: 150px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 107, 107, 0.2);
    }

    .btn,
    button {
        -webkit-tap-highlight-color: rgba(255, 107, 107, 0.3);
        cursor: pointer;
    }

    .time-btn {
        -webkit-tap-highlight-color: rgba(78, 205, 196, 0.3);
    }

    /* Remove hover effects on touch devices */
    .backdrop-card:hover {
        transform: none;
    }

    /* But keep selected state */
    .backdrop-card.selected {
        transform: scale(1.02);
    }

    /* Active states for better touch feedback */
    .backdrop-card.available:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .btn:active,
    button:active {
        transform: scale(0.98);
    }

    .time-btn:active {
        transform: scale(0.98);
    }
}

/* Floating Gradient Blobs - Mixo.io Style */
.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, rgba(102, 126, 234, 0) 70%);
    top: 10%;
    left: 5%;
    animation: float 20s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0) 70%);
    top: 50%;
    right: 10%;
    animation: float 25s ease-in-out infinite reverse;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.25) 0%, rgba(240, 147, 251, 0) 70%);
    bottom: 15%;
    left: 50%;
    animation: float 18s ease-in-out infinite;
    animation-delay: -5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-blob {
        filter: blur(60px);
        opacity: 0.4;
    }
    
    .blob-1 {
        width: 250px;
        height: 250px;
    }
    
    .blob-2 {
        width: 300px;
        height: 300px;
    }
    
    .blob-3 {
        width: 200px;
        height: 200px;
    }
}

/* ============================================
   PACKAGE TABLE CSS REMOVED
   Now using bottom sheet for package selection
   ============================================ */

/* ============================================
   COUNTER BUTTONS
   ============================================ */
.btn-counter {
    transition: all 0.3s ease;
}

.btn-counter:hover {
    background: var(--pink-hover) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

.btn-counter:active {
    transform: scale(0.95);
}

/* ============================================
   FORM NOTICE
   ============================================ */
.form-notice {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        background: rgba(30, 58, 138, 0.1);
    }
    50% {
        background: rgba(30, 58, 138, 0.15);
    }
}

/* ============================================
   TESTIMONIALS GRID
   ============================================ */
.testimonials-top {
    background: var(--pure-white);
    margin-top: 70px; /* Clear space for fixed navbar */
}

/* Swiper Carousel for Testimonials */
.testimonialsSwiper {
    padding-bottom: 50px !important; /* Space for pagination */
}

.testimonialsSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    transition: all 0.3s ease;
    width: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Swiper Navigation Buttons */
.testimonialsSwiper .swiper-button-next,
.testimonialsSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonialsSwiper .swiper-button-next:after,
.testimonialsSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.testimonialsSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--pink-primary);
    opacity: 0.3;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 768px) {
    .packages-comparison {
        padding: 40px 0;
    }

    .testimonials-top {
        padding: 40px 0 !important;
    }

    /* Mobile Carousel Adjustments */
    .testimonialsSwiper {
        padding: 0 20px 50px 20px !important;
    }

    /* Hide navigation arrows on mobile (use swipe instead) */
    .testimonialsSwiper .swiper-button-next,
    .testimonialsSwiper .swiper-button-prev {
        display: none !important;
    }

    /* Larger pagination dots on mobile for easier tapping */
    .testimonialsSwiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }

    .testimonialsSwiper .swiper-pagination-bullet-active {
        width: 28px;
    }

    .btn-counter {
        width: 52px !important;  /* Increased from 45px to meet touch target minimum */
        height: 52px !important; /* Comfortable for thumb tapping */
        font-size: 1.4rem !important;
        border-radius: 12px;
        margin: 0 0.5rem; /* Add spacing between buttons */
    }

    #extraPax {
        width: 80px !important;
        font-size: 1.2rem !important;
        padding: 0.75rem !important;
        margin: 0 0.5rem;
    }

    /* Improve booking form inputs for mobile */
    .booking-form-container {
        padding: 1.5rem 1rem;
    }

    .form-group {
        margin-bottom: 1.5rem; /* More space between fields */
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;      /* Prevent iOS zoom */
        padding: 1rem 0.75rem;
        min-height: 52px;     /* Larger touch target */
        border-radius: 12px;  /* Softer corners for mobile */
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        display: block;
    }

    /* Reduce section padding on mobile to show more content */
    section {
        padding: 60px 0 !important; /* Reduce from 120px */
    }

    .section-header {
        margin-bottom: 2rem; /* Reduce from 3rem */
    }

    .section-header h2 {
        font-size: 1.75rem; /* Reduce heading size */
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* iPhone-specific optimizations for safe areas */
    @supports (padding: max(0px)) {
        .navbar {
            padding-left: max(1rem, env(safe-area-inset-left));
            padding-right: max(1rem, env(safe-area-inset-right));
        }

        .container {
            padding-left: max(1rem, env(safe-area-inset-left));
            padding-right: max(1rem, env(safe-area-inset-right));
        }

        .booking-form-container {
            padding-left: max(1rem, env(safe-area-inset-left));
            padding-right: max(1rem, env(safe-area-inset-right));
        }
    }
}

/* iPhone 12/13/14 specific optimizations (390px width) */
@media (max-width: 768px) and (min-width: 375px) {
    /* Center package cards for standard iPhone sizes */
    .package-table tr {
        width: 100%;
        max-width: 390px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Optimize backdrop grid for iPhone screen width */
    .backdrop-cards {
        max-width: 390px;
        margin: 0 auto;
    }
}

/* ============================================
   APPLE-STYLE BOTTOM SHEET FOR PACKAGES
   ============================================ */

/* Backdrop overlay with blur effect */
.bottom-sheet-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0.0, 0.2, 1),
                visibility 0.35s cubic-bezier(0.4, 0.0, 0.2, 1),
                pointer-events 0s 0.35s;
}

.bottom-sheet-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Bottom sheet container with Apple-style rounded corners */
.bottom-sheet-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 85vh;
    background: white;
    border-radius: 28px 28px 0 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1),
                0 -4px 20px rgba(0, 0, 0, 0.08),
                0 -2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bottom-sheet-container.active {
    transform: translateY(0);
}

/* Handle bar for swipe gesture indicator */
.bottom-sheet-handle-bar {
    width: 40px;
    height: 5px;
    background: #d1d5db;
    border-radius: 10px;
    margin: 12px auto 0;
    cursor: grab;
    transition: background 0.2s ease;
}

.bottom-sheet-handle-bar:active {
    cursor: grabbing;
    background: #9ca3af;
}

/* Header with title and close button */
.bottom-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.bottom-sheet-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bottom-sheet-header h2 i {
    font-size: 1.35rem;
    color: #93c5fd;
}

.bottom-sheet-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.bottom-sheet-close-btn:hover {
    background: #e5e7eb;
    color: #374151;
    transform: scale(1.05);
}

.bottom-sheet-close-btn:active {
    transform: scale(0.95);
}

/* Content area with custom scrolling */
.bottom-sheet-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* Loading spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #1e3a8a;
}

.loading-spinner i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #93c5fd;
}

.loading-spinner p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* Package cards grid */
.package-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    animation: fadeInUp 0.4s ease-out;
}

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

/* Individual package card with Apple aesthetics */
.package-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 1.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #93c5fd);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.12),
                0 4px 12px rgba(30, 58, 138, 0.08),
                0 2px 6px rgba(30, 58, 138, 0.04);
    transform: translateY(-3px);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:active {
    transform: translateY(-1px);
}

/* Selected state with checkmark animation */
.package-card.selected {
    border-color: #1e3a8a;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15),
                0 4px 12px rgba(30, 58, 138, 0.1),
                0 2px 6px rgba(30, 58, 138, 0.06);
}

.package-card.selected::before {
    opacity: 1;
}

/* Package card header */
.package-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.package-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

/* Package card title */
.package-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.package-card-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

/* Package card details */
.package-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 14px;
}

.package-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #374151;
}

.package-detail-item i {
    width: 24px;
    color: #93c5fd;
    font-size: 1rem;
}

.package-detail-item strong {
    font-weight: 600;
    color: #1e3a8a;
}

/* Package features badges */
.package-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.package-feature-badge {
    padding: 0.4rem 0.85rem;
    background: #dbeafe;
    color: #1e3a8a;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.package-feature-badge i {
    font-size: 0.75rem;
    color: #93c5fd;
}

/* Featured package badge */
.package-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e3a8a;
    padding: 0.4rem 0.85rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* Package price display */
.package-card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #eff6ff, #f9fafb);
    border-radius: 14px;
    margin-bottom: 1rem;
}

.package-price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.package-price-note {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
}

/* Select button in card */
.package-card-select-btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
    background: #1e3a8a;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-card-select-btn:hover {
    background: #172554;
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.25);
    transform: translateY(-2px);
}

.package-card-select-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
}

.package-card.selected .package-card-select-btn {
    background: #10b981;
    pointer-events: none;
}

.package-card.selected .package-card-select-btn i {
    animation: checkmarkPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Desktop responsive adjustments */
@media (min-width: 769px) {
    .bottom-sheet-container {
        left: 50%;
        transform: translate(-50%, 100%);
        max-width: 900px;
        border-radius: 24px 24px 0 0;
    }

    .bottom-sheet-container.active {
        transform: translate(-50%, 0);
    }

    .package-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .bottom-sheet-container {
        max-height: 90vh;
    }

    .package-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .package-card-title {
        font-size: 1.15rem;
    }

    .package-price-amount {
        font-size: 1.75rem;
    }
}

/* Accessibility improvements */
.bottom-sheet-container:focus-within {
    outline: 3px solid #93c5fd;
    outline-offset: -3px;
}

@media (prefers-reduced-motion: reduce) {
    .bottom-sheet-backdrop,
    .bottom-sheet-container,
    .package-card,
    .package-card-checkmark {
        transition: none;
        animation: none;
    }
}

/* ============================================
   PHOTO TYPE SELECTION CARDS - VERTICAL SPLIT DESIGN
   ============================================ */

/* Card wrapper - simple white card with colored border */
.photo-type-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Colored borders for each type */
.photo-type-card-wrapper.selfphoto {
    border: 3px solid #667eea;
}

.photo-type-card-wrapper.bookshelf {
    border: 3px solid #f093fb;
}

/* Icon styling at top */
.photo-type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.photo-type-card-wrapper.selfphoto .photo-type-icon {
    color: #667eea;
}

.photo-type-card-wrapper.bookshelf .photo-type-icon {
    color: #f093fb;
}

.photo-type-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.photo-type-card-wrapper.selfphoto .photo-type-title {
    color: #667eea;
}

.photo-type-card-wrapper.bookshelf .photo-type-title {
    color: #f093fb;
}

.photo-type-description {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.photo-type-description strong {
    color: #1f2937;
    font-weight: 600;
}

.photo-type-card-wrapper.selfphoto .photo-type-description strong {
    color: #667eea;
}

.photo-type-card-wrapper.bookshelf .photo-type-description strong {
    color: #f093fb;
}

.photo-type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-badge {
    padding: 0.4rem 0.75rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.photo-type-card-wrapper.selfphoto .feature-badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.photo-type-card-wrapper.bookshelf .feature-badge {
    background: rgba(240, 147, 251, 0.1);
    color: #f093fb;
}

.feature-badge i {
    font-size: 0.75rem;
}

/* Hover effects */
.photo-type-card-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.photo-type-card-wrapper.selfphoto:hover {
    border-color: #5568d3;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.photo-type-card-wrapper.bookshelf:hover {
    border-color: #e071ea;
    box-shadow: 0 8px 24px rgba(240, 147, 251, 0.3);
}

.photo-type-card-wrapper:hover .photo-type-icon {
    transform: scale(1.1);
}

/* Active (click) state */
.photo-type-card-wrapper:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Responsive design - Tablet */
@media (max-width: 768px) {
    .photo-type-card-wrapper {
        padding: 1.75rem 1.25rem;
    }

    .photo-type-icon {
        font-size: 2.5rem;
    }

    .photo-type-title {
        font-size: 1.35rem;
    }

    .photo-type-description {
        font-size: 0.85rem;
    }
}

/* Responsive design - Mobile */
@media (max-width: 480px) {
    .photo-type-card-wrapper {
        padding: 1.5rem 1rem;
        padding: 1rem 0.875rem;
    }

    .photo-type-icon {
        font-size: 2.25rem;
    }

    .photo-type-title {
        font-size: 1.25rem;
    }

    .photo-type-description {
        font-size: 0.8rem;
    }

    .feature-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .photo-type-card-wrapper:active {
        transform: scale(0.98);
        opacity: 0.95;
    }
}

/* Accessibility - Focus state */
.photo-type-card-wrapper:focus {
    outline: 3px solid #93c5fd;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .photo-type-card-wrapper,
    .photo-type-overlay,
    .photo-type-overlay i {
        transition: none;
    }
}

/* Backdrop Sheet Button Styles */
.btn-open-backdrop-sheet:hover {
    background: linear-gradient(135deg, #44a097, #3a8a82);
    box-shadow: 0 6px 16px rgba(78, 205, 196, 0.4);
    transform: translateY(-2px);
}

.btn-open-backdrop-sheet:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
}

#selectedBackdropInput:hover {
    border-color: #4ecdc4;
}

/* ==================== Confetti Animation ==================== */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    z-index: 10000;
    pointer-events: none;
    animation: confetti-fall 3s ease-in-out forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes confetti-spin {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

/* ============================================
   ENHANCED CELEBRATION ANIMATIONS
   ============================================ */

/* Enhanced Confetti with Multiple Shapes */
.confetti-enhanced {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    animation: confetti-enhanced-fall 4s ease-in-out forwards;
    will-change: transform, opacity;
}

.confetti-circle {
    border-radius: 50%;
    background-color: var(--confetti-color);
}

.confetti-star {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid var(--confetti-color);
    position: relative;
}

.confetti-star::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid var(--confetti-color);
    top: 3px;
    left: -5px;
}

.confetti-ribbon {
    background-color: var(--confetti-color);
    width: 4px;
    height: 12px;
    border-radius: 2px;
}

.confetti-heart {
    position: relative;
    width: 8px;
    height: 8px;
}

.confetti-heart::before,
.confetti-heart::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 12px;
    background: var(--confetti-color);
    border-radius: 8px 8px 0 0;
}

.confetti-heart::before {
    left: 4px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.confetti-heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

@keyframes confetti-enhanced-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(var(--rotation));
        opacity: 0;
    }
}

/* Fireworks Animations */
.firework-rocket {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    box-shadow: 0 0 10px currentColor;
    animation: firework-launch 0.6s ease-out forwards;
    will-change: transform, opacity;
}

@keyframes firework-launch {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(
            calc(var(--explode-x) - 50vw),
            calc(var(--explode-y) - 50vh)
        ) scale(0.5);
        opacity: 0.5;
    }
}

.firework-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    animation: firework-explode 1.5s ease-out forwards;
    will-change: transform, opacity;
}

@keyframes firework-explode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(
            calc(var(--end-x) - var(--start-x, 0vw)),
            calc(var(--end-y) - var(--start-y, 0vh))
        ) scale(0);
        opacity: 0;
    }
}

/* Balloons Float Animation */
.balloon-container {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    animation: balloon-float 5s ease-in forwards;
    will-change: transform, opacity;
}

.balloon {
    width: 50px;
    height: 60px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: inset -8px -8px 15px rgba(0, 0, 0, 0.15);
    animation: balloon-sway var(--sway-duration, 3s) ease-in-out infinite;
    will-change: transform;
}

.balloon-highlight {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 12px;
    height: 18px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.balloon-string {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes balloon-float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) rotate(15deg);
        opacity: 0;
    }
}

@keyframes balloon-sway {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(var(--sway-amount, 30px));
    }
}

/* Enhanced Modal Entrance Animation */
@keyframes modal-bounce-in {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal.active .modal-content {
    animation: modal-bounce-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* WhatsApp Button Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(244, 63, 135, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(244, 63, 135, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(244, 63, 135, 0.3);
    }
}

@keyframes whatsapp-wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes whatsapp-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(244, 63, 135, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(244, 63, 135, 0.6), 0 0 30px rgba(244, 63, 135, 0.4);
    }
}

.whatsapp-animate {
    animation: whatsapp-pulse 2s ease-in-out infinite,
               whatsapp-glow 2s ease-in-out infinite;
}

.whatsapp-animate:hover {
    animation: whatsapp-wiggle 0.5s ease-in-out;
}

/* ============================================
   SLOT SUGGESTION MINI-MODAL
   iOS-style modal for time slot suggestions
   ============================================ */

.slot-suggestion-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.slot-suggestion-modal.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.slot-suggestion-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.slot-suggestion-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 2rem;
    max-width: 440px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100000;
}

.slot-suggestion-modal.active .slot-suggestion-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Close Button */
.slot-suggestion-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.slot-suggestion-close:hover {
    background: #f43f87;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

/* Header Section */
.slot-suggestion-header {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-top: 0.5rem;
}

.slot-suggestion-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #dc2626;
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.2);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 16px rgba(220, 38, 38, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    }
}

.slot-suggestion-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem;
}

.slot-suggestion-header p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.slot-suggestion-header strong {
    color: #dc2626;
    font-weight: 700;
}

/* Divider */
.slot-suggestion-divider {
    display: flex;
    align-items: center;
    margin: 1.75rem 0 1.5rem;
    text-align: center;
}

.slot-suggestion-divider::before,
.slot-suggestion-divider::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #e5e7eb;
}

.slot-suggestion-divider span {
    padding: 0 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Time Buttons Container */
.slot-suggestion-times {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.suggestion-time-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 72px;
    position: relative;
    overflow: hidden;
}

.suggestion-time-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4ecdc4, #44a097);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suggestion-time-btn:hover::before {
    opacity: 1;
}

.suggestion-time-btn:hover {
    border-color: #4ecdc4;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    transform: translateX(4px);
    box-shadow: 0 8px 16px rgba(78, 205, 196, 0.15);
}

.suggestion-time-btn:active {
    transform: translateX(4px) scale(0.98);
}

.suggestion-time-btn.earlier:hover {
    transform: translateX(-4px);
}

.suggestion-time-btn.earlier:active {
    transform: translateX(-4px) scale(0.98);
}

.time-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4ecdc4, #44a097);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.suggestion-time-btn:hover .time-btn-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.4);
}

.time-btn-content {
    flex: 1;
    text-align: center;
}

.time-btn-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.time-btn-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

/* Footer */
.slot-suggestion-footer {
    padding: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    border: 2px solid #fbbf24;
}

.slot-suggestion-footer p {
    margin: 0;
    color: #92400e;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.5;
}

.slot-suggestion-footer i {
    font-size: 1rem;
    color: #f59e0b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slot-suggestion-content {
        padding: 1.5rem;
        border-radius: 20px;
        max-width: 95%;
    }

    .slot-suggestion-header h3 {
        font-size: 1.25rem;
    }

    .slot-suggestion-header p {
        font-size: 0.925rem;
    }

    .slot-suggestion-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .suggestion-time-btn {
        padding: 1rem 1.25rem;
        min-height: 64px;
    }

    .time-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .time-btn-time {
        font-size: 1.3rem;
    }

    .slot-suggestion-footer {
        padding: 0.875rem;
    }

    .slot-suggestion-footer p {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .slot-suggestion-content {
        padding: 1.25rem;
        max-width: 96%;
    }

    .slot-suggestion-header h3 {
        font-size: 1.125rem;
    }

    .time-btn-time {
        font-size: 1.2rem;
    }

    /* Receipt Modal Mobile Optimizations */
    .receipt-modal {
        padding: 1.5rem !important;
        max-width: 95% !important;
        max-height: 90vh;
        overflow-y: auto;
    }

    .success-checkmark {
        width: 60px;
        height: 60px;
    }

    .receipt-title {
        font-size: 1.4rem;
    }

    .receipt-subtitle {
        font-size: 0.85rem;
    }

    .receipt-container {
        padding: 1rem;
    }

    .receipt-logo {
        font-size: 2rem;
    }

    .receipt-header h3 {
        font-size: 0.95rem;
    }

    .receipt-meta {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.75rem;
    }

    .receipt-section-title {
        font-size: 0.8rem;
    }

    .receipt-row {
        font-size: 0.85rem;
    }

    .receipt-label,
    .receipt-value {
        font-size: 0.85rem;
    }

    .receipt-label-sub,
    .receipt-value-sub {
        font-size: 0.8rem;
    }

    .receipt-label-total {
        font-size: 0.9rem;
    }

    .receipt-value-total {
        font-size: 1rem;
    }

    .btn-whatsapp-receipt {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .btn-whatsapp-receipt i {
        font-size: 1.3rem;
    }

    .receipt-action-hint {
        font-size: 0.75rem;
    }

    /* Mobile Animation Optimizations */
    .balloon {
        width: 40px;
        height: 48px;
    }

    .balloon-string {
        height: 60px;
    }

    .firework-particle {
        width: 4px;
        height: 4px;
    }

    .confetti-enhanced {
        opacity: 0.9;
    }
}

/* ==================== iOS-STYLE SOCIAL PROOF NOTIFICATION ==================== */
.social-proof-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 380px;
    max-width: calc(100% - 40px);

    /* iOS translucent blur effect */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;

    /* Softer iOS-style shadow */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
                0 1px 4px rgba(0, 0, 0, 0.04);

    padding: 12px 14px;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    gap: 12px;

    /* Slide down from top (iOS style) */
    transform: translateY(-120px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-proof-notification.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.social-proof-notification.hide {
    transform: translateY(-120px);
    opacity: 0;
    pointer-events: none;
}

/* Notification Icon */
.notification-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f43f87, #ff6b9d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(244, 63, 135, 0.25);
}

.notification-icon.trust-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.notification-icon.live-viewers {
    background: linear-gradient(135deg, #4ecdc4, #44a097);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

/* Notification Content */
.notification-content {
    flex: 1;
    padding-top: 2px;
}

.notification-title {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}

.notification-message {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 3px;
}

.notification-time {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}

/* Close Button */
.notification-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 0;
}

.notification-close:hover {
    background: #f1f5f9;
    color: #475569;
}

/* Pulse Animation for Icon - Subtle iOS style */
@keyframes notification-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.social-proof-notification.show .notification-icon {
    animation: notification-pulse 3s ease-in-out infinite;
}

/* Mobile Responsive - iOS style top-center positioning */
@media (max-width: 768px) {
    .social-proof-notification {
        top: 12px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-120px);
        width: calc(100% - 24px);
        max-width: 380px;
        padding: 10px 12px;
    }

    .social-proof-notification.show {
        transform: translateX(-50%) translateY(0);
    }

    .social-proof-notification.hide {
        transform: translateX(-50%) translateY(-120px);
    }

    .notification-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }

    .notification-content {
        padding-top: 0;
    }

    .notification-message {
        font-size: 13px;
    }
}

/* iPhone safe area support for notch/Dynamic Island */
@supports (padding: max(0px)) {
    .social-proof-notification {
        top: max(20px, env(safe-area-inset-top, 20px));
    }

    @media (max-width: 768px) {
        .social-proof-notification {
            top: max(12px, env(safe-area-inset-top, 12px));
        }
    }
}