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

        body {
            font-family: 'Arial', sans-serif;
            background: #0a0a0a;
            color: white;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 100%);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.05rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            font-size: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            position: relative;
        }

.logo-icon {
    width: 120px;
    height: auto;
    background: none;
    border-radius: 0;
    animation: none;
    box-shadow: none;
}

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-text .prime {
            background: linear-gradient(90deg, #ff006e, #fb5607, #ffbe0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.3rem;
        }

        .logo-text .gaming-truck {
            font-size: 0.7rem;
            color: #888;
            letter-spacing: 2px;
            margin-top: 2px;
        }

        /* Navigation */
        nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

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

        .nav-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: white;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff006e, #8338ec);
            transition: width 0.3s ease;
        }

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

        /* CTA Buttons */
        .header-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .phone-number {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffbe0b;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .phone-number:hover {
            transform: scale(1.05);
            color: #fff;
        }

        .phone-icon {
            width: 20px;
            height: 20px;
            animation: ring 2s infinite;
        }

        .book-now-btn {
            background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(255, 0, 110, 0.3);
        }

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

        .book-now-btn:hover::before {
            left: 100%;
        }

        .book-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 0, 110, 0.5);
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

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

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

        /* Footer Styles */
        .footer-section {
            background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 4rem 0 0;
            margin-top: 5rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Footer Top */
        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        /* Footer Logo */
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
        }

.logo-icon-footer {
    width: 120px;
    height: auto;
    background: none;
    border-radius: 0;
}

        .logo-text-footer {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-text-footer .prime {
            background: linear-gradient(90deg, #ff006e, #fb5607, #ffbe0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.2rem;
            font-weight: 900;
        }

        .logo-text-footer .gaming-truck {
            font-size: 0.6rem;
            color: #888;
            letter-spacing: 2px;
            margin-top: 2px;
        }

        .company-tagline {
            color: #b0b0b0;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border-color: #ff006e;
            transform: translateY(-3px);
        }

        /* Footer Titles */
        .footer-title {
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links li {
            color: #b0b0b0;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #ffbe0b;
            transform: translateX(5px);
        }

        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #b0b0b0;
            font-size: 0.95rem;
        }

        .contact-item a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #ffbe0b;
        }

        .contact-icon {
            font-size: 1.2rem;
        }

        /* Footer CTA Button */
        .footer-cta-btn {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .footer-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
        }

        /* Footer Bottom */
        .footer-bottom {
            padding: 2rem 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom-content p {
            color: #666;
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom-links a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #ffbe0b;
        }

        .footer-bottom-links .separator {
            color: #444;
        }

        /* Mobile Responsive Footer */
        @media (max-width: 968px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 0.5rem;
            }

            .footer-bottom-links .separator {
                display: none;
            }
        }

        /* Animations */
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes ring {
            0%, 100% {
                transform: rotate(0deg);
            }
            10%, 30% {
                transform: rotate(-10deg);
            }
            20%, 40% {
                transform: rotate(10deg);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .mobile-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 75px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 75px);
                background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(20,20,20,0.98) 100%);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                transition: left 0.3s ease;
            }

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

            .nav-links a {
                font-size: 1.2rem;
                color: white;
            }

            .phone-number {
                display: none;
            }

            .header-container {
                padding: 1rem 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .logo-text .prime {
                font-size: 1.1rem;
            }

            .book-now-btn {
                padding: 10px 20px;
                font-size: 0.85rem;
            }

            .logo-icon {
                width: 38px;
                height: 38px;
            }
        }

        /* Scroll Effect */
        header.scrolled {
            background: rgba(10,10,10,0.98);
            box-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }

        /* Hero Section Styles */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            margin-top: 75px;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/IMG_3986.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            animation: slideInFromRight 1s ease-out;
        }

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(10, 10, 10, 0) 0%, 
        rgba(10, 10, 10, 0.3) 20%, 
        rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.3);
    z-index: 1;
}
        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            animation: slideInContent 1.2s ease-out 0.3s both;
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: -2px;
        }

        .title-line-1 {
            display: block;
            animation: slideInFromLeft 0.8s ease-out 0.5s both;
            background: linear-gradient(90deg, #ff006e, #fb5607);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .title-line-2 {
            display: block;
            animation: slideInFromRight 0.8s ease-out 0.7s both;
            color: white;
            font-size: 1.2em;
        }

        .title-line-3 {
            display: block;
            animation: slideInFromLeft 0.8s ease-out 0.9s both;
            background: linear-gradient(90deg, #8338ec, #ffbe0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 0.8em;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: #b0b0b0;
            margin-top: -2rem;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 1.1s both;
            max-width: 600px;
        }

        .hero-cta-group {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 1s ease-out 1.3s both;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-cta-primary,
        .hero-cta-secondary {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .hero-cta-primary {
            background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
            color: white;
            box-shadow: 0 10px 40px rgba(255, 0, 110, 0.4);
        }

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

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

        .hero-cta-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 50px rgba(255, 0, 110, 0.6);
        }

        .hero-cta-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .hero-cta-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px) scale(1.05);
            border-color: #ffbe0b;
            color: #ffbe0b;
        }

        .cta-icon {
            font-size: 1.3rem;
            animation: bounce 2s infinite;
        }

        .cta-arrow {
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .hero-cta-primary:hover .cta-arrow,
        .hero-cta-secondary:hover .cta-arrow {
            transform: translateX(5px);
            opacity: 1;
        }

        /* Floating Icons */
        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .float-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out var(--delay);
        }

        .float-icon:nth-child(1) { top: 20%; left: 10%; }
        .float-icon:nth-child(2) { top: 70%; right: 10%; }
        .float-icon:nth-child(3) { bottom: 20%; left: 15%; }
        .float-icon:nth-child(4) { top: 40%; right: 20%; }

        /* Swipe Indicator */
        .swipe-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.5);
            animation: pulse 2s infinite;
        }

        .swipe-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ffbe0b, transparent);
            animation: swipeLine 2s infinite;
        }

        /* Animations */
        @keyframes slideInFromRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInFromLeft {
            from {
                transform: translateX(-100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInContent {
            from {
                transform: translateX(50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

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

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(100px, -100px) rotate(90deg);
            }
            50% {
                transform: translate(-50px, 50px) rotate(180deg);
            }
            75% {
                transform: translate(-100px, -50px) rotate(270deg);
            }
        }

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

        @keyframes swipeLine {
            0% {
                transform: translateX(-20px);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateX(20px);
                opacity: 0;
            }
        }

        /* Mobile Responsive Hero */
        @media (max-width: 768px) {
            .hero-section {
                margin-top: 65px;
            }

            .hero-title {
                font-size: clamp(2rem, 10vw, 3.5rem);
            }

            .hero-cta-group {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }

            .hero-cta-primary,
            .hero-cta-secondary {
                width: 100%;
                justify-content: center;
            }

            .floating-icons {
                display: none;
            }
        }

        /* About Section Styles */
        .about-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background: #0a0a0a;
            overflow: hidden;
        }

        .slide-container {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
        }

        .about-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: translateX(100%);
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .about-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .about-slide.prev {
            transform: translateX(-100%);
        }

        /* Countdown Slide Styles */
        .countdown-slide {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at center, rgba(131, 56, 236, 0.2) 0%, rgba(10, 10, 10, 1) 70%);
        }

        .countdown-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?w=1920&h=1080&fit=crop&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }

        .countdown-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .countdown-number {
            font-size: clamp(8rem, 20vw, 15rem);
            font-weight: 900;
            background: linear-gradient(135deg, #ff006e, #8338ec, #ffbe0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pulseNumber 1s ease-in-out;
            line-height: 1;
            margin-bottom: 2rem;
        }

        .countdown-text {
            font-size: clamp(1.5rem, 4vw, 3rem);
            color: white;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            animation: slideInFromBottom 0.8s ease-out;
        }

        .countdown-subtitle {
            font-size: 1.2rem;
            color: #888;
            animation: fadeIn 1s ease-out 0.3s both;
        }

        .countdown-lights {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .light {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #333;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
        }

        .light.active {
            background: #ffbe0b;
            box-shadow: 0 0 30px #ffbe0b;
            animation: lightPulse 0.5s ease;
        }

        /* Content Slides Styles */
        .slide-content-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .slide-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.4) 100%);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            padding: 3rem;
            margin-left: 5%;
        }

        .slide-number {
            font-size: 5rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.1);
            position: absolute;
            top: -3rem;
            left: 2rem;
        }

        .slide-title {
            font-size: 1rem;
            color: #ffbe0b;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .slide-heading {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, white, #ffbe0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slide-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #b0b0b0;
            margin-bottom: 2rem;
        }

        .slide-features {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-weight: 600;
        }

        .feature-icon {
            font-size: 1.5rem;
        }

        /* Progress Bar Styles */
        .section-progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 10;
            display: flex;
            align-items: center;
            padding: 0 2rem;
        }

        .progress-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff006e, #8338ec, #ffbe0b);
            width: 0%;
            transition: width 0.3s ease;
        }

        .progress-dots {
            display: flex;
            gap: 1.5rem;
            width: 100%;
            justify-content: center;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #333;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #ffbe0b;
            transform: scale(1.3);
            box-shadow: 0 0 20px #ffbe0b;
        }

        /* Gallery Section Styles */
        .gallery-section {
            position: relative;
            width: 100%;
            height: 100vh;
            background: #0a0a0a;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .gallery-container {
            flex: 1;
            width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            display: flex;
            align-items: center;
        }

        /* Hide scrollbar but keep functionality */
        .gallery-container::-webkit-scrollbar {
            display: none;
        }
        .gallery-container {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .gallery-track {
            display: flex;
            height: 450px;
            gap: 1.5rem;
            padding: 0 2rem;
            align-items: center;
        }

        /* Gallery Cards Base */
        .gallery-card {
            flex-shrink: 0;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .gallery-card:hover {
            transform: translateY(-5px) scale(1.02);
        }

        /* Title Card */
        .title-card {
            width: 600px;
            background: transparent;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2.5rem;
        }

        .title-card-content {
            width: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .gallery-title {
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
        }

        .title-gradient {
            display: block;
            background: linear-gradient(90deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .title-white {
            display: block;
            color: white;
            margin-top: 0.5rem;
        }

        .swipe-instruction-text {
            font-size: 1.2rem;
            color: #b0b0b0;
            line-height: 1.5;
        }

        .swipe-arrow {
            font-size: 3rem;
            color: #ffbe0b;
            font-weight: bold;
        }

        /* Photo Cards */
        .photo-card {
            width: 300px;
            background: #1a1a1a;
            position: relative;
            cursor: pointer;
        }

        .card-image {
            position: relative;
            width: 100%;
            height: 60%;
            overflow: hidden;
        }

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

        .photo-card:hover .card-image img {
            transform: scale(1.1);
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.8) 100%);
            pointer-events: none;
        }

        .card-content {
            padding: 1.5rem;
            position: relative;
            background: #1a1a1a;
            height: 40%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-category {
            color: #ffbe0b;
            font-size: 0.7rem;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .card-title {
            color: white;
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .card-description {
            color: #888;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* CTA Card */
        .cta-card {
            width: 400px;
            background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
        }

        .cta-card-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .cta-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: white;
        }

        .cta-description {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            line-height: 1.5;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .cta-btn-primary {
            background: white;
            color: #8338ec;
        }

        .cta-btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .cta-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.05);
        }

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

        .btn-arrow {
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .cta-btn-primary:hover .btn-arrow,
        .cta-btn-secondary:hover .btn-arrow {
            transform: translateX(5px);
            opacity: 1;
        }

        /* Gallery Progress Bar */
        .gallery-progress-bar {
            position: relative;
            width: 100%;
            height: 80px;
            background: rgba(10, 10, 10, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gallery-progress-track {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        .gallery-progress-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: linear-gradient(90deg, #ff006e, #8338ec, #ffbe0b);
            width: 0%;
            transition: width 0.2s ease;
            border-radius: 2px;
        }

        .scroll-hint {
            position: absolute;
            right: 2rem;
            color: #888;
            font-size: 0.9rem;
            animation: fadeInOut 3s infinite;
        }

        /* Reviews Section Styles */
        .reviews-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem 4rem 8rem;
        }

        /* Section Title - Rotated on Desktop */
        .section-title-wrapper {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            transform-origin: center;
            z-index: 1;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(90deg, #ff006e, #8338ec, #ffbe0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            flex-direction: column;
            text-align: center;
            line-height: 1;
            gap: 0.5rem;
        }

        .reviews-container {
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-left: auto;
            margin-right: auto;
        }

        .review-module {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Main Review Card */
        .review-card {
            width: 100%;
            min-height: 400px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            transition: all 0.3s ease-out;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 2rem;
            left: 2rem;
            font-size: 5rem;
            color: rgba(255, 0, 110, 0.2);
            font-family: serif;
            line-height: 1;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .customer-info {
            flex: 1;
        }

        .customer-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .event-details {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #888;
            font-size: 0.95rem;
        }

        .event-type {
            color: #ffbe0b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .separator {
            color: #555;
        }

        .location {
            color: #b0b0b0;
        }

        .rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.5rem;
        }

        .star {
            filter: drop-shadow(0 0 3px #ffbe0b);
        }

        .review-content {
            position: relative;
            z-index: 1;
            margin-bottom: 2rem;
        }

        .review-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            font-style: italic;
        }

        .review-footer {
            display: flex;
            justify-content: flex-end;
        }

        .review-date {
            color: #666;
            font-size: 0.9rem;
        }

        /* Button Row */
        .review-buttons-row {
            width: 100%;
            display: flex;
            gap: 1rem;
        }

        /* Next Review Button */
        .next-review-btn {
            flex: 1;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .next-review-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffbe0b;
            transform: translateX(5px);
        }

        .btn-arrow {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .next-review-btn:hover .btn-arrow {
            transform: translateX(5px);
        }

        /* Get Price Button */
        .get-price-btn {
            flex: 1;
            padding: 1.5rem;
            background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
            border-radius: 15px;
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
        }

        .get-price-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
        }

        .price-icon {
            font-size: 1.5rem;
        }

        /* Pricing Section Styles */
        .pricing-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pricing-container {
            width: 100%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Calculator Panel */
        .calculator-panel {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .calculator-header {
            margin-bottom: 2.5rem;
        }

        .calculator-title {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .calculator-subtitle {
            color: #888;
            font-size: 1rem;
        }

        /* Form Groups */
        .form-group {
            margin-bottom: 2rem;
        }

        .form-label {
            display: block;
            color: #ffbe0b;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        /* Event Dropdown */
        .event-dropdown {
            width: 100%;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .event-dropdown:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .event-dropdown:focus {
            outline: none;
            border-color: #ffbe0b;
        }

        .event-dropdown option {
            background: #1a1a1a;
            color: white;
        }

        /* Button Groups */
        .button-group {
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        }

        .button-group.two-col {
            grid-template-columns: 1fr 1fr;
        }

        .button-group.three-col {
            grid-template-columns: repeat(3, 1fr);
        }

        .option-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1rem;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .option-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .option-btn.active {
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
            border-color: #ff006e;
            box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
        }

        .option-btn.active::after {
            content: '✓';
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            color: #ffbe0b;
            font-weight: bold;
        }

        .option-icon {
            font-size: 1.5rem;
        }

        .option-text {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .option-detail {
            font-size: 0.8rem;
            color: #888;
        }

        /* Checkbox Group */
        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .checkbox-item:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .checkbox-item input[type="checkbox"] {
            display: none;
        }

        .checkbox-custom {
            width: 24px;
            height: 24px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            margin-right: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .checkbox-item input:checked ~ .checkbox-custom {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border-color: #ff006e;
        }

        .checkbox-item input:checked ~ .checkbox-custom::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
        }

        .checkbox-label {
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
        }

        .addon-price {
            color: #ffbe0b;
            font-weight: 600;
        }

        /* Price Panel */
        .price-panel {
            position: sticky;
            top: 100px;
        }

        /* Price Display */
        .price-display {
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
        }

        .price-header {
            text-align: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .price-label {
            display: block;
            color: #888;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .price-amount {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 0.5rem;
        }

        .price-currency {
            font-size: 2rem;
            color: #ffbe0b;
            margin-top: 0.5rem;
        }

        .price-value {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        /* Discount Section */
        .discount-section {
            text-align: center;
        }

        .save-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border: none;
            border-radius: 15px;
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .save-btn.pulsing {
            animation: pulseSave 2s infinite;
        }

        @keyframes pulseSave {
            0%, 100% {
                box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 8px 30px rgba(255, 0, 110, 0.6);
                transform: scale(1.02);
            }
        }

        .save-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(255, 0, 110, 0.6);
        }

        .save-icon {
            font-size: 1.3rem;
        }

        /* Inline Discount Form */
        .discount-form-inline {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
            animation: slideDown 0.3s ease-out;
        }

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

        .form-input-inline {
            width: 100%;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-input-inline::placeholder {
            color: #666;
        }

        .form-input-inline:focus {
            outline: none;
            border-color: #ffbe0b;
            background: rgba(255, 255, 255, 0.08);
        }

        .submit-btn-inline {
            padding: 0.8rem;
            background: linear-gradient(135deg, #ffbe0b, #ff006e);
            border: none;
            border-radius: 10px;
            color: white;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn-inline:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 190, 11, 0.4);
        }

        /* Success Message */
        .discount-success {
            animation: fadeIn 0.5s ease-out;
        }

        .success-message {
            text-align: center;
            padding: 1rem;
        }

        .success-message h3 {
            color: white;
            font-size: 1.5rem;
            margin: 0.5rem 0;
        }

        .discount-code {
            color: #b0b0b0;
            margin: 1rem 0;
        }

        .discount-code strong {
            color: #ffbe0b;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        .ready-to-book {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ready-to-book p {
            color: white;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .call-now-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .call-now-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4);
        }

        /* Animations */
        @keyframes pulseNumber {
            0% {
                transform: scale(0.5);
                opacity: 0;
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

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

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

        @keyframes lightPulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.3);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes fadeInOut {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .reviews-section {
                flex-direction: column;
                padding: 3rem 1.5rem;
            }

            .section-title-wrapper {
                position: relative;
                left: 0;
                top: 0;
                transform: none;
                margin-bottom: 2rem;
                text-align: center;
                height: auto;
            }

            .section-title {
                font-size: 2rem;
                flex-direction: row;
                gap: 0.5rem;
            }

            .section-title span {
                display: inline;
            }

            .reviews-container {
                margin: 0;
            }

            .review-buttons-row {
                flex-direction: column;
            }

            .pricing-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .price-panel {
                position: relative;
                top: 0;
            }

            .button-group {
                grid-template-columns: repeat(2, 1fr);
            }

            .button-group.three-col {
                grid-template-columns: 1fr;
            }

            .price-value {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .slide-content {
                padding: 2rem;
                max-width: 100%;
                margin: 0;
                background: rgba(10, 10, 10, 0.9);
            }

            .slide-number {
                font-size: 3rem;
                top: -2rem;
                left: 1rem;
            }

            .slide-heading {
                font-size: 2rem;
            }

            .slide-text {
                font-size: 1rem;
            }

            .countdown-number {
                font-size: 8rem;
            }

            .countdown-text {
                font-size: 1.5rem;
            }

            .slide-features {
                gap: 1rem;
            }

            .feature-item {
                font-size: 0.9rem;
            }

            .image-overlay {
                background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.95) 70%);
            }

            .slide-content-wrapper {
                align-items: flex-end;
            }

            .gallery-section {
                height: 100vh;
            }

            .gallery-container {
                flex: 1;
            }

            .gallery-track {
                height: 400px;
                padding: 0 1rem;
                gap: 1rem;
            }

            .title-card {
                width: 90vw;
                padding: 2rem;
            }

            .gallery-title {
                font-size: 2.5rem;
            }

            .photo-card {
                width: 250px;
            }

            .cta-card {
                width: 90vw;
                padding: 2rem;
            }

            .cta-buttons {
                gap: 0.8rem;
            }

            .scroll-hint {
                display: none;
            }

            .gallery-progress-bar {
                height: 60px;
            }

            .reviews-section {
                padding: 3rem 1.5rem;
            }

            .review-card {
                min-height: 350px;
                padding: 2rem;
            }

            .customer-name {
                font-size: 1.4rem;
            }

            .review-text {
                font-size: 1.1rem;
            }

            .rating {
                font-size: 1.2rem;
            }

            .next-review-btn {
                padding: 1.2rem;
                font-size: 1rem;
            }

            .get-price-btn {
                padding: 1.5rem;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .title-card {
                width: 85vw;
            }

            .photo-card {
                width: 200px;
            }

            .card-title {
                font-size: 1.1rem;
            }

            .card-description {
                font-size: 0.8rem;
            }

            .review-card {
                padding: 1.5rem;
            }

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

            .review-text {
                font-size: 1rem;
            }

            .review-card::before {
                font-size: 3rem;
                top: 1rem;
                left: 1rem;
            }

            .calculator-panel {
                padding: 1.5rem;
            }

            .price-display {
                padding: 1.5rem;
            }

            .discount-form {
                padding: 1.5rem;
            }
        }

        /* ── Photo Gallery Section ── */
        .photo-gallery-section {
            background: #0a0a0a;
            padding: 5rem 2rem;
        }

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

        .photo-gallery-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
            line-height: 1;
        }

        .photo-gallery-subtitle {
            color: #888;
            font-size: 1.1rem;
            margin-top: 0.75rem;
        }

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

        .pg-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            aspect-ratio: 4/3;
            cursor: pointer;
            background: #1a1a1a;
        }

        .pg-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
            display: block;
        }

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

        .pg-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.85) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 1rem;
        }

        .pg-item:hover .pg-overlay {
            opacity: 1;
        }

        .pg-overlay span {
            color: white;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Lightbox */
        .pg-lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .pg-lightbox.open {
            display: flex;
        }

        .pg-lb-img {
            max-width: 90vw;
            max-height: 88vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 0 60px rgba(0,0,0,0.8);
        }

        .pg-lb-close,
        .pg-lb-prev,
        .pg-lb-next {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }

        .pg-lb-close:hover,
        .pg-lb-prev:hover,
        .pg-lb-next:hover {
            background: rgba(255,0,110,0.6);
        }

        .pg-lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.2rem; }
        .pg-lb-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2.5rem; }
        .pg-lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2.5rem; }

        @media (max-width: 1024px) {
            .photo-gallery-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 640px) {
            .photo-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
            .pg-lb-prev { left: 0.5rem; }
            .pg-lb-next { right: 0.5rem; }
        }

        /* ── Hero Split Layout ── */
        .hero-inner {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: stretch;
        }

        .hero-left {
            flex: 0 0 55%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem 2rem 2rem 5%;
            animation: slideInContent 1.2s ease-out 0.3s both;
        }

        .hero-logo-img {
            max-width: 500px;
            width: 85%;
            height: auto;
            margin-bottom: 0.5rem;
        }

        /* Hero Countdown */
        .hero-countdown-wrap {
            margin-top: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            transition: opacity 0.4s ease;
        }

        .hero-countdown-number {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900;
            background: linear-gradient(135deg, #ff006e, #8338ec, #ffbe0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pulseNumber 1s ease-in-out;
            line-height: 1;
        }

        .hero-countdown-lights {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .hc-light {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #333;
            transition: all 0.3s ease;
            box-shadow: 0 0 8px rgba(0,0,0,0.5);
        }

        .hc-light.active {
            background: #ffbe0b;
            box-shadow: 0 0 18px #ffbe0b;
            animation: lightPulse 0.5s ease;
        }

        /* Hero Slides Panel */
        .hero-slides-panel {
            flex: 0 0 45%;
            background: rgba(10, 10, 10, 0.78);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-left: 1px solid rgba(255, 255, 255, 0.07);
            position: relative;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            padding: 3rem 2.5rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
            pointer-events: none;
        }

        .hero-slide.active {
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }

        .hero-slide.prev {
            opacity: 0;
            transform: translateX(-30px);
        }

        .hero-slide-dots {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.75rem;
            z-index: 10;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .hero-dot.active {
            background: #ffbe0b;
            transform: scale(1.3);
            box-shadow: 0 0 10px #ffbe0b;
        }

        /* Mobile: stack vertically */
        @media (max-width: 768px) {
            .hero-section {
                height: auto;
                min-height: 100vh;
            }

            .hero-inner {
                flex-direction: column;
                min-height: 100vh;
            }

            .hero-left {
                flex: 0 0 auto;
                width: 100%;
                padding: 5rem 1.5rem 1.5rem;
            }

            .hero-logo-img {
                max-width: 260px;
            }

            .hero-countdown-number {
                font-size: 2.5rem;
            }

            .hero-slides-panel {
                flex: 1;
                width: 100%;
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                min-height: 320px;
            }

            .hero-slide {
                padding: 2rem 1.5rem 3.5rem;
            }

            .hero-slide .slide-heading {
                font-size: 1.5rem;
            }

            .hero-slide .slide-text {
                font-size: 0.9rem;
            }

            .hero-slide .slide-number {
                font-size: 3rem;
                top: -1.5rem;
                left: 1rem;
            }
        }

        .pricing-note {
            color: #555;
            font-size: 0.8rem;
            margin-top: 1.5rem;
            line-height: 1.5;
        }

        /* Pricing CTA */
        .pricing-cta {
            margin-top: 1.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            align-items: center;
        }
        .pricing-cta-text {
            color: #b0b0b0;
            font-size: 0.95rem;
        }
        .pricing-fine {
            color: #555;
            font-size: 0.8rem;
            margin-top: 0.25rem;
        }
        .reserve-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
            border: none;
            border-radius: 15px;
            color: white;
            font-size: 1.1rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
        }
        .reserve-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
        }

        /* ── Calendly Inline Embed ── */
        .calendly-embed-wrap {
            max-width: 900px;
            margin: 3rem auto 0;
            padding: 0 2rem;
        }

        .calendly-embed-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .calendly-embed-title {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .calendly-embed-sub {
            color: #888;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .calendly-inline-widget {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.07);
        }

        @media (max-width: 640px) {
            .calendly-embed-wrap { padding: 0 1rem; }
            .calendly-inline-widget { height: 1000px !important; }
        }

        /* ── $20 Off Signup Popup ── */
        .signup-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(6px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .signup-overlay.open {
            display: flex;
        }

        .signup-modal {
            position: relative;
            background: linear-gradient(160deg, #141414 0%, #1e1e1e 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 2.5rem;
            width: 100%;
            max-width: 460px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 0, 110, 0.15);
            animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

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

        .signup-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255,255,255,0.07);
            border: none;
            color: #888;
            font-size: 1rem;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .signup-close:hover {
            background: rgba(255, 0, 110, 0.3);
            color: white;
        }

        .signup-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: white;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 2px;
            padding: 0.3rem 0.9rem;
            border-radius: 50px;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
        }

        .signup-headline {
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 900;
            color: white;
            line-height: 1.15;
            margin-bottom: 0.75rem;
        }

        .signup-highlight {
            background: linear-gradient(90deg, #ff006e, #ffbe0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .signup-sub {
            color: #a0a0a0;
            font-size: 0.97rem;
            line-height: 1.6;
            margin-bottom: 1.8rem;
        }

        .signup-form {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
        }

        .signup-input {
            width: 100%;
            padding: 0.9rem 1.1rem;
            background: rgba(255,255,255,0.05);
            border: 1.5px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            color: white;
            font-size: 0.97rem;
            transition: border-color 0.25s ease, background 0.25s ease;
            outline: none;
        }

        .signup-input::placeholder { color: #555; }

        .signup-input:focus {
            border-color: #ff006e;
            background: rgba(255,255,255,0.08);
        }

        .signup-submit {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.35);
            margin-top: 0.3rem;
        }

        .signup-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(255, 0, 110, 0.55);
        }

        .signup-fine {
            color: #555;
            font-size: 0.78rem;
            text-align: center;
            margin-top: 0.8rem;
        }

        /* Success state */
        .signup-success-wrap {
            text-align: center;
        }

        .signup-success-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .signup-code-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255, 190, 11, 0.08);
            border: 2px dashed #ffbe0b;
            border-radius: 14px;
            padding: 1.2rem;
            margin-top: 1.5rem;
        }

        .signup-code-label {
            font-size: 0.75rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .signup-code {
            font-size: 2rem;
            font-weight: 900;
            color: #ffbe0b;
            letter-spacing: 4px;
        }

        @media (max-width: 480px) {
            .signup-modal { padding: 2rem 1.5rem; }
        }