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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

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

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    text-decoration: none !important;
    color: inherit;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a:visited {
    text-decoration: none !important;
    color: inherit;
}

.logo a:hover {
    text-decoration: none !important;
    opacity: 0.8;
}

.logo span {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #000;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.book-btn {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background: #333;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #000;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 100vh;
    position: relative;
}

.hero-half {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 60px 40px 120px 40px;
    transition: background 0.3s ease;
}

.hero-half:hover .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

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

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 400px;
    z-index: 3;
}

.hero-content .service-label,
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-pricing {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content .cta-button {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.events-title {
    color: #ffd700;
}

.studio-title {
    color: #87ceeb;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.hero-pricing .price {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
}

.hero-pricing .price-unit {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.cta-button:hover {
    background: transparent;
    color: #fff;
}

/* Hero Divider */
.hero-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.logo-badge {
    background: #fff;
    color: #000;
    padding: 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(0, 0, 0, 0.4);
    position: relative;
}

.logo-badge::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
}

/* Events Side Specific Styling */
.events-side {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
}

.events-side .service-label {
    color: #ffd700;
}

/* Studio Side Specific Styling */
.studio-side {
    background: linear-gradient(135deg, rgba(47, 79, 79, 0.1), rgba(70, 130, 180, 0.1));
}

.studio-side .service-label {
    color: #87ceeb;
}

/* Studio & Events Carousel */
.studio-carousel,
.events-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1), transform 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-image.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-image.dissolve-out {
    opacity: 0;
    transform: scale(0.99);
    transition: opacity 2.2s cubic-bezier(0.23, 1, 0.32, 1), transform 2.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Value Proposition */
.value-prop {
    padding: 60px 0 40px 0;
    background: #f9f9f9;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 40px 0 20px 0;
    background: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.feature-tile {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #000;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    min-height: 200px;
}

.feature-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
}

.feature-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #000, #333);
    border-radius: 0 2px 2px 0;
}

.feature-number {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.feature-tile h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.3;
}

.feature-tile p {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Gallery Section */
.gallery {
    padding: 40px 0 80px 0;
    background: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

/* Video Gallery Styles */
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 8px;
}

.gallery-item:hover video {
    transform: scale(1.08);
}

/* Media Type Indicators */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:has(video)::before {
    background: #ff4444;
    opacity: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Space Carousel Styles */
.space-carousel-container {
    position: relative;
    background: #2a2a2a;
    padding: 0;
}

.space-carousel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.space-carousel-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.space-carousel-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.space-carousel-controls {
    display: flex;
    gap: 8px;
}

.space-nav-btn {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.space-nav-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.space-carousel-images {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.space-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.space-image.active {
    opacity: 1;
}

.space-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
}

.space-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.space-dot.active {
    background: #000;
    transform: scale(1.2);
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Large Desktop Screens */
@media (min-width: 1400px) {
    .container-wide {
        max-width: 1800px;
        padding: 0 60px;
    }
    
    .features-grid {
        gap: 60px;
    }
    
    .feature-tile {
        padding: 80px 50px;
        min-height: 240px;
    }
    
    .gallery-grid {
        gap: 30px;
    }
}

/* Mobile Lightbox Adjustments */
@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 24px;
        width: 36px;
        height: 36px;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    .lightbox-counter {
        bottom: 20px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: #000;
    color: #fff;
}

.pricing-section .section-title {
    color: #fff;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.pricing-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.pricing-text p {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 8px 0;
    color: #ccc;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 600;
}

.pricing-card {
    background: #111;
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
}

.price-display {
    margin-bottom: 40px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 400;
    vertical-align: top;
    margin-right: 4px;
}

.amount {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.period {
    font-size: 1.125rem;
    color: #ccc;
    margin-left: 8px;
}

.cta-button-alt {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.cta-button-alt:hover {
    background: transparent;
    color: #fff;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: #f9f9f9;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.contact-item:hover {
    border-color: #000;
    background: rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-instagram {
    color: #666;
}

.contact-instagram:hover {
    color: #000;
    border-color: #000;
}

/* Mobile responsive for contact */
@media (max-width: 600px) {
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
    }
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 40px;
}

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

.footer-section h3 {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section ul li:not(:has(a)) {
    color: #ccc;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    display: none;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: opacity 0.3s ease;
}

.mobile-menu .nav-link:hover {
    opacity: 0.7;
}

.mobile-menu .book-btn {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease;
    text-align: center;
    margin-top: 10px;
}

.mobile-menu .book-btn:hover {
    background: #333;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .logo a {
        gap: 8px;
    }
    
    .hero-split {
        flex-direction: column;
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-half {
        min-height: calc(50vh - 35px);
    }
    
    .hero-half:first-child {
        padding-top: 20px;
    }
    
    .hero-divider {
        top: calc(50% + 35px);
        left: 0;
        width: 100%;
        height: 2px;
        transform: translateY(-50%);
    }
    
    .logo-badge {
        width: 60px;
        height: 60px;
        font-size: 8px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-pricing {
        margin-bottom: 20px;
    }
    
    .hero-overlay {
        padding: 40px 20px 80px 20px;
    }
    
    .studio-side .hero-overlay {
        padding: 80px 20px 40px 20px;
    }
    
    .hero-pricing .price {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-tile {
        padding: 20px 15px;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .feature-tile h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .feature-tile p {
        font-size: 13px;
        line-height: 1.4;
        margin: 0;
    }
    
    .features {
        padding: 25px 0 15px 0;
    }
    
    .gallery {
        padding: 25px 0 40px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .pricing-text {
        order: 1;
    }
    
    .pricing-card {
        padding: 40px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-text h2 {
        font-size: 2rem;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-pricing .price {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .container-wide {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

/* Enhanced Mobile Touch Interactions for Booking UX */
@media (max-width: 768px) {
    /* Time block touch optimizations */
    .time-block-item, .time-slot {
        min-height: 60px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.15s ease;
    }
    
    .time-block-item:hover, .time-slot:hover {
        transform: none; /* Disable hover effects on mobile */
    }
    
    .time-block-item:active, .time-slot:active {
        transform: scale(0.98);
    }
    
    /* Calendar touch optimizations */
    .calendar-day {
        min-height: 44px; /* Ensure touch targets are at least 44px */
        min-width: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.1s ease;
    }
    
    .calendar-day:active {
        transform: scale(0.95);
    }
    
    /* Reduce animation timing for mobile performance */
    .booking-section, .payment-section, .contact-form {
        transition-duration: 0.3s !important;
    }
    
    /* Optimize scroll offset for mobile navigation bars */
    .booking-section, .payment-section, .contact-form {
        scroll-margin-top: 80px; /* Account for mobile nav bars */
    }
    
    /* Improve touch feedback for buttons */
    .submit-booking, .btn-primary, .btn-secondary {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .submit-booking:active, .btn-primary:active, .btn-secondary:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.cookie-modal-overlay.blocking {
    pointer-events: all !important;
}

.cookie-modal {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    position: relative;
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: bounce 0.5s ease-out;
}

.cookie-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.cookie-text {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    flex: 1;
}

.cookie-btn.accept {
    background: #000;
    color: white;
}

.cookie-btn.accept:hover {
    background: #333;
    transform: translateY(-2px);
}

.cookie-btn.necessary {
    background: #f7fafc;
    color: #2d3748;
    border: 2px solid #e2e8f0;
}

.cookie-btn.necessary:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

/* Disable page interaction when modal is shown */
body.cookie-modal-active {
    overflow: hidden;
}

body.cookie-modal-active > *:not(#cookieConsent) {
    pointer-events: none;
    user-select: none;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
    }
    to { 
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 768px) {
    .cookie-modal {
        padding: 30px 20px;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
