:root {
            /* Novoi Brand Colors - Based on actual site */
            --primary-color: #6b93b7;
            --primary-dark: #55799a;
            --secondary-color: #0a0a0a;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --background: #ffffff;
            --background-light: #f8f9fa;
            --accent: #ff6b35;
            --success: #10b981;
            --border: #e5e7eb;
            --shadow: rgba(0, 0, 0, 0.1);
        }

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

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            line-height: 1.2;
            font-weight: 700;
        }

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

        /* Navigation */
        
        /* Hero Section */
        .hero {
            
            
            height: 90vh;
            
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 700px;
            animation: fadeInUp 1s ease;
        }

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

        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 35px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
        }

        .hero-ctas {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
            padding: 18px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 6px 25px rgba(26, 115, 232, 0.4);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(26, 115, 232, 0.5);
            color: white;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 18px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--text-dark);
        }

        .trust-badges {
            display: flex;
            gap: 30px;
            margin-top: 35px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }

        .trust-badge svg {
            width: 20px;
            height: 20px;
            fill: var(--primary-color);
        }

        /* Social Proof Bar */
        .social-proof-bar {
            background: var(--primary-color);
            padding: 20px 0;
            text-align: center;
            color: white;
        }

        .social-proof-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .rating-display {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stars {
            color: #FFD700;
            font-size: 20px;
        }

        .testimonial-quick {
            font-style: italic;
            font-size: 15px;
        }

        /* Service Packages */
        .packages-section {
            padding: 100px 0;
            background: var(--background-light);
        }

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

        .section-header h2 {
            font-size: 42px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .package-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 10px 40px var(--shadow);
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-color);
        }

        .package-card.popular {
            border-color: var(--primary-color);
            box-shadow: 0 15px 50px rgba(26, 115, 232, 0.2);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: var(--accent);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .package-card h3 {
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .package-price {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .package-price-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-top: 5px;
        }

        .package-price-label {
            font-size: 12px;
            color: var(--text-light);
        }

        .package-duration {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 25px;
        }

        .package-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .package-features li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: start;
            gap: 12px;
            font-size: 14px;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .checkmark {
            color: var(--success);
            font-weight: bold;
            flex-shrink: 0;
        }

        .package-cta {
            width: 100%;
            padding: 16px;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .package-cta:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
        }

        .package-card.popular .package-cta {
            background: var(--primary-color);
        }

        .package-card.popular .package-cta:hover {
            background: var(--primary-dark);
        }

        /* Service Detail Section */
        .service-detail {
            padding: 100px 0;
            background: white;
        }

        .service-detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .service-detail-card {
            background: var(--background-light);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 26px 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }

        .service-detail-card h3 {
            font-size: 26px;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .service-detail-card h4 {
            font-size: 18px;
            margin: 16px 0 8px;
            color: var(--primary-color);
        }

        .service-detail-card h5 {
            font-size: 15px;
            margin: 14px 0 8px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }

        .service-detail-card p {
            margin-bottom: 10px;
            color: var(--text-light);
            font-size: 15px;
        }

        .service-detail-card ul {
            margin: 0 0 12px 18px;
            padding: 0;
        }

        .service-detail-card li {
            margin-bottom: 7px;
            color: var(--text-dark);
            font-size: 14px;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 100px 0;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .feature-card {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 30px;
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 15px;
        }

        /* Location Highlight */
        .location-highlight {
            padding: 90px 0;
            background: var(--background-light);
        }

        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .location-card {
            background: white;
            padding: 22px 24px;
            border-radius: 14px;
            box-shadow: 0 12px 25px var(--shadow);
            text-align: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .location-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.18);
        }

        /* Gallery Section */
        .gallery-section {
            padding: 100px 0;
            background: var(--background-light);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            aspect-ratio: 4/3;
            cursor: pointer;
            box-shadow: 0 5px 20px var(--shadow);
        }

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

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

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .gallery-overlay p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Process Section */
        .process-section {
            padding: 100px 0;
            background: white;
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
            position: relative;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            margin: 0 auto 25px;
            box-shadow: 0 5px 20px rgba(26, 115, 232, 0.3);
        }

        .process-step h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .process-step p {
            color: var(--text-light);
            font-size: 15px;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: var(--secondary-color);
            color: white;
        }

        .testimonials-section .section-header h2,
        .testimonials-section .section-header p {
            color: white;
        }

        .testimonials-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 20px 0;
            margin-top: 50px;
        }

        .testimonial-card {
            flex: 0 0 350px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 16px;
            scroll-snap-align: start;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .testimonial-stars {
            color: #FFD700;
            font-size: 20px;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

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

        .author-info h4 {
            font-size: 16px;
            margin-bottom: 3px;
        }

        .author-info p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: white;
        }

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

        .faq-item {
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 25px 30px;
            background: white;
            border: none;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: var(--background-light);
        }

        .faq-question.active {
            background: var(--background-light);
            color: var(--primary-color);
        }

        .faq-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
        }

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

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

        .faq-answer.active {
            max-height: 500px;
            padding: 0 30px 25px;
        }

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

        /* Final CTA Section */
        .final-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
            color: white;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 20px;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 18px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            background: #1fb855;
            transform: translateY(-3px);
            color: white;
        }

       

        /* Modal Styles */
        .modal-content {
            border-radius: 16px;
            border: none;
        }

        .modal-header {
            border-bottom: 1px solid var(--border);
            padding: 20px 30px;
        }

        .modal-body {
            padding: 30px;
        }

        #datePicker {
            background: #fff;
            padding: 12px;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(10, 10, 20, 0.06);
        }

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

            .hero-subtitle {
                font-size: 16px;
            }

            .hero-ctas {
                flex-direction: column;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .service-detail-card h3 {
                font-size: 22px;
            }

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

            .final-cta h2 {
                font-size: 32px;
            }

            .testimonials-slider {
                padding-left: 20px;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

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

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(26, 115, 232, 0.4);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* Blog preview */
        .blog-preview {
            background: #0f141a;
            padding: 80px 0;
        }

        .blog-preview .section-header h2,
        .blog-preview .section-header p {
            color: #f5f5f5;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .blog-card {
            display: block;
            background: #151b22;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 28px;
            text-decoration: none;
            color: #f5f5f5;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
        }

        .blog-card-content h3 {
            margin: 12px 0;
            font-size: 20px;
        }

        .blog-card-content p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .blog-tag {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            background: rgba(255, 255, 255, 0.1);
        }

        .blog-cta {
            margin-top: 32px;
            text-align: center;
        }

        .blog-preview .btn-secondary {
            border-color: #f5f5f5;
            color: #f5f5f5;
        }
