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

:root {
    /* Premium Dark Mode Palette (Default) */
    --bg-color: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #141414;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --accent-color: #ff3366;
    --accent-secondary: #d946ef;
    --accent-gold: #fbbf24;
    --accent-glow: rgba(255, 51, 102, 0.4);
    --accent-glow-strong: rgba(255, 51, 102, 0.6);

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #ff3366 0%, #d946ef 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-mesh: radial-gradient(at 27% 37%, hsla(315, 100%, 60%, 0.15) 0px, transparent 50%),
        radial-gradient(at 97% 21%, hsla(125, 98%, 72%, 0.1) 0px, transparent 50%),
        radial-gradient(at 52% 99%, hsla(354, 100%, 61%, 0.1) 0px, transparent 50%),
        radial-gradient(at 10% 29%, hsla(256, 96%, 67%, 0.15) 0px, transparent 50%);
    --hero-gradient-color: rgba(255, 255, 255, 0.08);

    /* Glassmorphism */
    --glass-bg: rgba(18, 18, 18, 0.65);
    --glass-bg-strong: rgba(18, 18, 18, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --card-bg: #0f0f0f;
    --border-color: #222222;

    /* Premium Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 40px var(--accent-glow);
    --shadow-glow-strong: 0 0 60px var(--accent-glow-strong);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --max-width: 1400px;
    --header-height: 80px;
    --border-radius: 16px;
    --border-radius-lg: 24px;

    /* Transitions */
    --transition-speed: 0.3s;
    --transition-slow: 0.6s;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Light Mode Variables --- */
body.light-mode {
    --bg-color: #fafafa;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #efefef;
    --text-primary: #0a0a0a;
    --text-secondary: #555555;
    --text-muted: #888888;
    --accent-glow: rgba(255, 51, 102, 0.25);
    --accent-glow-strong: rgba(255, 51, 102, 0.4);
    --hero-gradient-color: rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-bg-strong: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-highlight: rgba(0, 0, 0, 0.05);
    --card-bg: #ffffff;
    --border-color: #e0e0e0;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.18);
}

/* ... (rest of file) ... */

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

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.7;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Premium background mesh gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) var(--ease-out-expo);
}

ul {
    list-style: none;
}

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

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

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



.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    /* Reduced size */
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    padding-left: 2.5rem;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
    /* Reduced gap */
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) var(--ease-out-expo);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
    flex-shrink: 0;
    /* Prevent toggles from being squished */
}

.lang-toggle,
.dark-mode-toggle {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.lang-toggle:hover,
.dark-mode-toggle:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.lang-toggle svg,
.dark-mode-toggle svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    /* Allow nav to take available space */
    justify-content: flex-end;
    /* Keep aligned to right */
    min-width: 0;
    /* Allow flex item to shrink below content size */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;

    /* Scrollable behavior for overflow */
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
    /* Space for scrollbar if visible */
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    max-width: 100%;
    /* Ensure it doesn't overflow parent */
}

/* Hide scrollbar for Chrome/Safari/Opera */
.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-links li {
    flex-shrink: 0;
    /* Prevent items from shrinking */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--text-primary);
    transition: all 0.3s ease-in-out;
}

/* --- Hero Section --- */
.hero {
    background: radial-gradient(ellipse 60% 35% at center, var(--hero-gradient-color) 0%, transparent 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Premium particle background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(2px 2px at 10% 90%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: sparkle 20s ease-in-out infinite;
    opacity: 0.15;
    z-index: -1;
}

@keyframes sparkle {

    0%,
    100% {
        background-position: 0% 0%;
        opacity: 0.1;
    }

    50% {
        background-position: 100% 100%;
        opacity: 0.2;
    }
}

.hero-content {
    max-width: 950px;
    z-index: 1;
    animation: fadeInUp 1s var(--ease-out-expo);
}

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

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

.hero h1 {
    font-size: 6rem;
    margin-bottom: 3rem;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.1));
    letter-spacing: -0.04em;
    animation: fadeInUp 1s var(--ease-out-expo) 0.2s backwards;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s var(--ease-out-expo) 0.4s backwards;
}

/* Premium CTA Button with Shimmer Effect */
.cta-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-speed) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s var(--ease-out-expo) 0.6s backwards;
}

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

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

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow-strong);
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
    /* Removed per user request */
}

/* --- Sections Global --- */
section {
    padding: 6rem 2rem;
    /* Reduced from 12rem 4rem */
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    /* Slightly smaller */
    text-align: center;
    margin-bottom: 3rem;
    /* Reduced from 6rem */
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 1.5rem auto 0;
}

/* --- About Section --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    /* Reduced from 8rem */
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    filter: grayscale(20%);
    transition: filter var(--transition-speed) ease;
}

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

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    perspective: 1000px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow) var(--ease-out-expo);
    cursor: pointer;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
}

/* Gradient border effect */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 1px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

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

/* Glassmorphism highlight */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, var(--glass-highlight) 0%, transparent 100%);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    opacity: 0.5;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: transparent;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all var(--transition-speed) var(--ease-out-back);
    filter: drop-shadow(0 4px 12px rgba(255, 51, 102, 0.3));
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotateY(360deg);
    filter: drop-shadow(0 8px 24px rgba(255, 51, 102, 0.5));
}

.service-card h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Pricing Tables */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 4rem 0;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3.5rem 2.5rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow) var(--ease-out-expo);
}

/* Shine/gloss overlay effect */
.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(45deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.pricing-card:hover::before {
    left: 150%;
}

.pricing-card:hover {
    transform: translateY(-6px) translateX(3px) rotateZ(-1deg) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.08) 0%, rgba(217, 70, 239, 0.06) 100%);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 51, 102, 0.15);
}

.pricing-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.4);
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.price span {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    -webkit-text-fill-color: var(--text-secondary);
}

.pricing-features {
    margin-bottom: 2.5rem;
    display: inline-block;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

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

    section {
        padding: 4rem 1.5rem;
    }

    /* Mobile Header */
    header {
        height: auto;
        padding: 1rem 0;
    }

    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        width: 100%;
        justify-content: space-between;
    }

    .nav-links {
        flex: 1;
        min-width: 0;
        /* Allow shrinking for scroll */
        padding-right: 1rem;
        /* Space before toggles */
        padding-left: 1rem;
        /* Space from left edge */
        mask-image: linear-gradient(to right, black 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
    }


}

/* Gallery Styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    /* Reduced gap */
    margin-bottom: 3rem;
    /* Reduced margin */
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    /* Reduced padding */
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-clip: padding-box;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    position: relative;
    overflow: hidden;
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 51, 102, 0.8);
    }
}

.filter-btn.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Gallery Auto-Scrolling Carousel */
.gallery-carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 2rem 0 4rem 0;
}

.gallery-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    will-change: transform;
}

.gallery-row-right {
    animation: scrollRight 60s linear infinite;
}

.gallery-row-left {
    animation: scrollLeft 60s linear infinite;
}

/* Pause animation on hover */
.gallery-row:hover {
    animation-play-state: paused;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(calc(-50%));
    }

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

.gallery-row .gallery-item {
    flex: 0 0 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-row .gallery-item {
        flex: 0 0 120px;
        height: 120px;
    }

    .gallery-carousel-wrapper {
        padding: 1rem 0 2rem 0;
    }

    .gallery-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }
}

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

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

.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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

/* Gallery Carousel Navigation */
.gallery-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-nav-btn {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover:not(:disabled) {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.gallery-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-page-indicator {
    color: var(--text-secondary);
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
}

/* Contact Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Customize Link in Pricing */
.customize-link {
    display: block;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.customize-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    min-width: 30px;
}

.info-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-secondary);
}

.contact-form {
    background-color: var(--surface-color);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Customization Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: var(--surface-color);
    padding: 2rem;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.7;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-text {
    margin-top: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    white-space: pre-line;
    /* Preserves line breaks from translation */
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Scroll Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.95);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

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

/* Parallax effect for hero */
.hero {
    position: relative;
}

.hero-content {
    animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero h1 {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.hero p {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.hero .cta-button {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}

/* Smooth scroll animations for sections */
section {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
}

section:nth-of-type(1) {
    animation-delay: 0.2s;
}

section:nth-of-type(2) {
    animation-delay: 0.3s;
}

section:nth-of-type(3) {
    animation-delay: 0.4s;
}

section:nth-of-type(4) {
    animation-delay: 0.5s;
}

/* Section titles */
.section-title {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

/* About section animations */
.about-image {
    animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
    transition: transform 0.4s ease-out;
}

.about-text {
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}

.about-section:hover .about-image {
    transform: translateY(-15px) scale(1.02);
}

/* Service cards stagger with scale */
.service-card {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.35s;
}

.service-card:nth-child(3) {
    animation-delay: 0.5s;
}

.service-card:nth-child(4) {
    animation-delay: 0.65s;
}

/* Contact section */
.contact-info {
    animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.contact-form {
    animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* --- Scroll Progress Indicator --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10000;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-color), #ff8fab);
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--accent-color);
}

/* Add bounce to hover effects */
.cta-button {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
}

.service-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
}

/* --- Lightbox Modal --- */
.lightbox {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    /* Flexbox for perfect centering */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.lightbox-content.slide-left {
    animation: slideFromRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-content.slide-right {
    animation: slideFromLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-content.zoom-in {
    animation: zoomIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.95);
    }

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

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.95);
    }

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

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

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

.lightbox-caption {
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--text-secondary);
    padding: 20px 0;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--text-primary);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px 20px;
    margin-top: -50px;
    color: var(--text-primary);
    font-weight: bold;
    font-size: 40px;
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--accent-color);
    color: white;
}

.lightbox-prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.lightbox-next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 12px 16px;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    animation: spin-slow 20s linear infinite;
}

.cookie-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: white;
    border: none;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.cookie-btn.decline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.cookie-btn.decline:hover {
    background: var(--bg-secondary);
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

/* --- Premium Scroll Animations --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

/* Page Loading Animation */
body.loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes loading {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-indicator {
        animation: none;
    }

    .hero::before {
        animation: none;
    }

    .service-icon {
        transition: none;
    }
}

/* Performance Optimizations */
.services-grid,
.pricing-grid,
.gallery-row {
    will-change: transform;
}

.cta-button,
.service-card,
.pricing-card {
    will-change: transform, box-shadow;
}

/* Additional Responsive Enhancements */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    .service-card,
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card.featured::after {
        font-size: 0.65rem;
        padding: 0.4rem 2.5rem;
    }
}

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

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
    }

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

    .price {
        font-size: 2.5rem;
    }
}

/* --- Image Protection Message --- */
.image-protection-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2.5rem;
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s var(--ease-out-expo);
}

.image-protection-message.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Gallery image protection styles */
.gallery-item img,
.gallery-row img {
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

/* --- Cookie Settings Modal --- */
.cookie-settings {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category h4 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.cookie-category p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-required {
    background: var(--accent-glow);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    transition: 0.3s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-secondary);
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked+.toggle-slider {
    background: var(--gradient-primary);
    border-color: var(--accent-color);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(24px);
    background-color: white;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Enhanced cookie banner with settings button */
.cookie-banner .cookie-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cookie-btn.settings {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
}

.cookie-btn.settings:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    background: var(--bg-secondary);
}/* ========================================
   CALENDAR PAGE STYLES
   ======================================== */

.calendar-page {
    padding-top: calc(var(--header-height) + 4rem);
    min-height: 100vh;
    padding-bottom: 4rem;
}

.calendar-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calendar-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.package-info {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--card-bg);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.package-name {
    color: var(--accent-color);
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Calendar Controls */
.calendar-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.month-nav-btn {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.month-nav-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.calendar-controls h2 {
    font-size: 1.8rem;
    margin: 0;
    min-width: 250px;
    text-align: center;
}

/* Calendar Grid */
.calendar-grid {
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.weekday-labels {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.weekday-label {
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

/* Day Cells */
.day-cell {
    aspect-ratio: 1;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem;
    min-height: 90px;
}

.day-cell.empty {
    background: transparent;
    border: none;
    cursor: default;
    pointer-events: none;
}

.day-cell.past {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.day-cell.today {
    font-weight: 700;
}

/* Available State (Green) */
.day-cell.available {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.05);
}

.day-cell.available:hover {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.day-cell.available .day-status {
    color: var(--success-color);
}

/* Limited State (Orange) */
.day-cell.limited {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.05);
}

.day-cell.limited:hover {
    border-color: var(--warning-color);
    background: rgba(245, 158, 11, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.day-cell.limited .day-status {
    color: var(--warning-color);
}

/* Reserved State (Not clickable) */
.day-cell.reserved {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.day-cell.reserved .day-number,
.day-cell.reserved .day-status {
    color: var(--warning-color);
}

/* Booked State (Not clickable) */
.day-cell.booked {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.day-cell.booked .day-number,
.day-cell.booked .day-status {
    color: var(--danger-color);
}

/* Selected State */
.day-cell.selected {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    transform: scale(1.08);
    box-shadow: 0 0 20px var(--accent-glow) !important;
    z-index: 10;
}

.day-cell.selected .day-number,
.day-cell.selected .day-status {
    color: white !important;
}

/* Day Cell Content */
.day-number {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.day-status {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

/* Booking Panel */
.booking-panel {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.booking-panel.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.booking-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.booking-message {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.booking-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* CTA Button Secondary Variant */
.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-secondary);
    box-shadow: none;
}

.cta-button.secondary::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.cta-button.secondary:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-header h1 {
        font-size: 2.5rem;
    }

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

    .calendar-controls {
        gap: 1.5rem;
    }

    .calendar-controls h2 {
        font-size: 1.3rem;
        min-width: 180px;
    }

    .calendar-grid {
        padding: 1.5rem;
    }

    .day-cell {
        min-height: 70px;
        padding: 0.25rem;
    }

    .day-number {
        font-size: 0.95rem;
    }

    .day-status {
        font-size: 0.6rem;
    }

    .booking-panel {
        padding: 2rem;
    }

    .booking-actions {
        flex-direction: column;
    }

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