        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background: white;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Professional Header */
        header {
            background: #ffffff;
            color: #00142e;
            padding: 1rem 0;
            position: relative;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-bottom: 1px solid #e9ecef;
        }

        .header-content {
            display: grid;
            grid-template-columns: 250px 1fr 300px;
            align-items: center;
            gap: 2rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
        }

        .logo-section img {
            height: 45px;
            filter: brightness(0.9);
        }

        /* Navigation Styles */
        .main-nav {
            display: flex;
            justify-content: center;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 2rem;
        }

        .main-nav a {
            color: #00142e;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .main-nav a:hover {
            background: rgba(6,111,239,0.1);
            color: #066fef;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            cursor: pointer;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
            border: 1px solid rgba(6,111,239,0.1);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            color: #00142e;
            text-decoration: none;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            background: rgba(6,111,239,0.05);
            color: #066fef;
            padding-left: 25px;
        }

        .dropdown-menu a:last-child {
            border-bottom: none;
        }

        /* Contact Section */
        .contact-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            justify-content: flex-end;
        }

        .contact-info {
            text-align: right;
        }

        .header-cta {
            background: linear-gradient(135deg, #066fef 0%, #00142e 100%);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(6,111,239,0.3);
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6,111,239,0.4);
        }

        /* CTA Button General */
        .cta-button {
            background: #066fef;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(6,111,239,0.2);
        }

        .cta-button:hover {
            background: #0056d6;
            box-shadow: 0 4px 15px rgba(6,111,239,0.3);
        }

        /* Beautiful Hero Section */
        .hero {
            background: #f8f9fa;
            height: 100vh;
            display: flex;
            align-items: center;
            color: #2c3e50;
            text-align: center;
            margin-top: 0;
            position: relative;
            overflow: hidden;
        }


        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .hero-logo {
            width: 120px;
            height: auto;
            margin-bottom: 2rem;
            filter: brightness(0) invert(1);
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            color: white;
        }

        .hero-price {
            font-size: 2rem;
            margin-bottom: 2rem;
            font-weight: 600;
            color: #066fef;
            background: white;
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
            text-align: left;
        }

        .hero-feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-feature h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #066fef;
            font-weight: 600;
        }

        .hero-feature p {
            font-size: 0.95rem;
            line-height: 1.5;
            color: white;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-buttons .cta-button {
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 25px;
            background: #066fef;
            border: 2px solid #066fef;
            box-shadow: 0 4px 15px rgba(6,111,239,0.2);
            transition: all 0.3s ease;
        }

        .hero-buttons .cta-button:hover {
            background: #0056d6;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6,111,239,0.3);
        }

        .hero-buttons .cta-button.secondary {
            background: white;
            color: #2c3e50;
            border: 2px solid #2c3e50;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .hero-buttons .cta-button.secondary:hover {
            background: linear-gradient(135deg, #2c3e50 0%, #00142e 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(44,62,80,0.5);
        }

        .hero-list {
            list-style: none;
            margin-bottom: 3rem;
            text-align: left;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-list li {
            background: rgba(255, 255, 255, 0.9);
            padding: 10px 15px;
            margin-bottom: 8px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            color: #00142e;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* Mobile adjustments for hero-list */
        @media (max-width: 768px) {
            .hero-list {
                font-size: 1.3em;
            }
        }

        /* Desktop full-screen layout for hero section */
        @media (min-width: 769px) {
            .hero {
                padding: 100px 0;
            }

            .hero .container {
                max-width: none;
                padding: 0;
            }

            .hero-content {
                max-width: none;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 2rem 2rem;
            }

            .hero-list {
                flex: 1;
                margin-right: 2rem;
                font-size: 1.4em;
            }

            .hero-list li {
                font-size: 1.2em;
                padding: 15px 20px;
            }

            .hero-buttons {
                flex: 0 0 auto;
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .hero-buttons .cta-button {
                width: 280px;
                padding: 18px 35px;
                font-size: 1.2rem;
            }
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }

            .hero .container {
                padding: 0 10px;
            }

            .hero-content {
                padding: 1rem;
            }

            .hero-list {
                font-size: 1.4em;
                line-height: 2;
            }

            .hero-list li {
                font-size: 1.1em;
                padding: 14px 20px;
                margin-bottom: 12px;
                text-align: center;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .hero-buttons .cta-button {
                width: 100%;
                max-width: 340px;
                padding: 18px 32px;
                font-size: 1.2rem;
                border-radius: 30px;
            }
        }

        /* Color Selector Slider */
        .color-selector {
            background: white;
            padding: 4rem 0;
            margin-top: -2px;
        }

        .color-selector h2 {
            text-align: center;
            margin-bottom: 3rem;
            color: #1e3c72;
            font-size: 2.8rem;
            font-weight: 700;
            position: relative;
        }

        .color-selector h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

        .color-slider {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }

        .color-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .color-slide {
            min-width: 100%;
            position: relative;
        }

        .color-slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .color-controls {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 15px;
        }

        .color-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .color-dot:hover {
            background: #ff6b35;
            transform: scale(1.1);
        }

        .color-dot.active {
            background: #ff6b35;
            transform: scale(1.2);
            border-color: #e55a2b;
        }

        /* Warranty Section */
        .warranty {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .warranty h2 {
            text-align: center;
            margin-bottom: 3rem;
            color: #1e3c72;
            font-size: 2.5rem;
            font-weight: 700;
            position: relative;
        }

        .warranty h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #066fef;
            border-radius: 2px;
        }

        .warranty-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .warranty-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .warranty-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .warranty-item h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .warranty-item p {
            color: #555;
            line-height: 1.6;
        }

        /* Specifications Comparison Table */
        .detailed-specs .comparison-table {
            max-width: 1000px;
            margin: 0 auto 3rem;
            overflow-x: auto;
        }

        .detailed-specs .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .detailed-specs .comparison-table th,
        .detailed-specs .comparison-table td {
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }

        .detailed-specs .comparison-table th {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            font-size: 1.1rem;
        }

        .detailed-specs .comparison-table td {
            color: #333;
        }

        .detailed-specs .comparison-table tr:nth-child(even) {
            background: rgba(6,111,239,0.05);
        }

        .detailed-specs .comparison-table tr:hover {
            background: rgba(6,111,239,0.1);
        }

        .comparison-table {
            max-width: 1000px;
            margin: 0 auto;
            overflow-x: auto;
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }

        .comparison-table th {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            font-size: 1.1rem;
        }

        .comparison-table td {
            color: #333;
        }

        .comparison-table tr:nth-child(even) {
            background: rgba(6,111,239,0.05);
        }

        .comparison-table tr:hover {
            background: rgba(6,111,239,0.1);
        }

        /* Design Philosophy Section */
        .design-philosophy {
            padding: 5rem 0;
            background: #f8f9fa;
            color: #2c3e50;
        }

        .design-philosophy h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2.8rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .design-philosophy p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
            font-size: 1.2rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .philosophy-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid #e9ecef;
        }

        .philosophy-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .philosophy-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .philosophy-item h3 {
            padding: 1.5rem;
            font-size: 1.4rem;
            font-weight: 700;
            text-align: center;
            color: white;
        }

        .philosophy-item p {
            padding: 0 1.5rem 1.5rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
        }

        /* Enhanced Pricing Section */
        .pricing {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .pricing h2 {
            text-align: center;
            margin-bottom: 3rem;
            color: #1e3c72;
            font-size: 2.5rem;
            font-weight: 700;
            position: relative;
        }

        .pricing h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #066fef, #00142e);
            border-radius: 2px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .pricing-card.featured {
            background: #667eea;
            color: white;
            transform: scale(1.02);
        }

        .pricing-card.featured::before {
            content: "🌟 PHỔ BIẾN NHẤT";
            position: absolute;
            top: 20px;
            right: -35px;
            background: #ff6b35;
            color: white;
            padding: 8px 45px;
            transform: rotate(45deg);
            font-size: 0.9rem;
            font-weight: bold;
            box-shadow: 0 2px 10px rgba(255,107,53,0.2);
        }

        .pricing-card h3 {
            color: #1e3c72;
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
            font-weight: 700;
        }

        .pricing-card.featured h3 {
            color: white;
        }

        .price {
            font-size: 2.5rem;
            color: #066fef;
            font-weight: bold;
            margin-bottom: 1.5rem;
            display: block;
        }

        .pricing-card.featured .price {
            color: #ffd700;
        }

        .features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .features li:before {
            content: "✅";
            color: #28a745;
            font-weight: bold;
            margin-right: 12px;
            font-size: 1.1rem;
        }

        .pricing-card.featured .features li {
            border-bottom-color: rgba(255,255,255,0.2);
        }

        .pricing-card.featured .features li:before {
            color: #ffd700;
        }

        /* Interspersed Quote Forms */
        .quote-banner {
            background: #066fef;
            padding: 3rem 0;
            text-align: center;
            color: white;
            margin: 3rem 0;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(6,111,239,0.2);
        }

        .quote-banner h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .quote-banner p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .quote-banner .cta-button {
            background: white;
            color: #066fef;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .quote-banner .cta-button:hover {
            background: #f8f9fa;
            color: #00142e;
        }

        /* Specifications */
        .specifications {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .specifications h2 {
            text-align: center;
            margin-bottom: 4rem;
            color: #1e3c72;
            font-size: 3rem;
            font-weight: 700;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
        }

        .spec-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .spec-card:hover {
            background: #1e3c72;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(30,60,114,0.2);
        }

        .spec-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .spec-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .spec-card p {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Gallery */
        .gallery {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .gallery h2 {
            text-align: center;
            margin-bottom: 4rem;
            color: #1e3c72;
            font-size: 3rem;
            font-weight: 700;
        }

        /* FAQ */
        .faq {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .faq h2 {
            text-align: center;
            margin-bottom: 4rem;
            color: #1e3c72;
            font-size: 3rem;
            font-weight: 700;
        }

        .faq details {
            background: white;
            margin-bottom: 1rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 1rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq summary {
            cursor: pointer;
            font-weight: 600;
            color: #1e3c72;
            font-size: 1.2rem;
            list-style: none;
        }

        .faq summary:hover {
            color: #066fef;
        }

        .faq summary::marker {
            display: none;
        }

        .faq summary::before {
            content: "➕";
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .faq details[open] summary::before {
            content: "➖";
        }

        .faq p {
            margin-top: 1rem;
            line-height: 1.6;
            color: #333;
        }

        .gallery-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            gap: 2rem;
        }

        .gallery-tab {
            padding: 15px 30px;
            background: white;
            border: 3px solid #1e3c72;
            color: #1e3c72;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .gallery-tab:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .gallery-tab.active {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            border-color: #1e3c72;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        }

        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Enhanced Quote Forms */
        .quote-section {
            padding: 5rem 0;
            background: #f8f9fa;
            color: #2c3e50;
            position: relative;
        }


        .quote-section h2 {
            text-align: center;
            margin-bottom: 4rem;
            font-size: 3rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .quote-form {
            background: white;
            color: #333;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
            border: 1px solid #e9ecef;
            position: relative;
            z-index: 2;
        }

        .quote-form h3 {
            color: #1e3c72;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 0.5rem;
            position: relative;
        }

        .form-group label {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            font-weight: 700;
            color: #1e3c72;
            font-size: 1.1rem;
            gap: 8px;
        }

        .form-group label .icon {
            font-size: 1.2rem;
            color: #066fef;
        }

        .form-group .input-container {
            position: relative;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 18px 20px;
            border: 3px solid #e9ecef;
            border-radius: 15px;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #066fef;
            box-shadow: 0 0 0 4px rgba(6,111,239,0.15), 0 8px 25px rgba(6,111,239,0.1);
            background: white;
            transform: translateY(-2px);
        }

        .form-group input:hover,
        .form-group select:hover,
        .form-group textarea:hover {
            border-color: #066fef;
            box-shadow: 0 4px 15px rgba(6,111,239,0.1);
            transform: translateY(-1px);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #8e9aaf;
            font-style: italic;
            opacity: 0.8;
        }

        .form-validation {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 8px 15px;
            font-size: 0.9rem;
            border-radius: 0 0 10px 10px;
            margin-top: -5px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .form-validation.success {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            border: 2px solid rgba(40, 167, 69, 0.3);
            opacity: 1;
            transform: translateY(0);
        }

        .form-validation.error {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            border: 2px solid rgba(220, 53, 69, 0.3);
            opacity: 1;
            transform: translateY(0);
        }

        .input-with-icon {
            position: relative;
        }

        .input-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: #8e9aaf;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .form-group input:focus + .input-icon,
        .form-group select:focus + .input-icon {
            color: #066fef;
            transform: translateY(-50%) scale(1.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .submit-btn {
            width: 100%;
            padding: 20px 25px;
            background: #066fef;
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(6,111,239,0.2);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6,111,239,0.3);
            background: #0056d6;
        }

        .submit-btn:active {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6,111,239,0.4);
        }

        .submit-btn .btn-icon {
            font-size: 1.3rem;
            animation: bounce 2s infinite;
        }

        .submit-btn .btn-text {
            flex-grow: 1;
            text-align: center;
        }

        .submit-btn .btn-arrow {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .submit-btn:hover .btn-arrow {
            transform: translateX(5px);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-5px);
            }
            60% {
                transform: translateY(-3px);
            }
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        /* Large Banner Section */
        .large-banner {
            width: 100%;
            height: auto;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border-radius: 0 0 20px 20px;
            overflow: hidden;
        }

        .large-banner img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Beautiful Content Sections */
        .content-section {
            padding: 6rem 0;
            background: white;
            position: relative;
        }

        .content-section.alternate {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .content-hero {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .content-hero h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #1e3c72;
            margin-bottom: 3rem;
            position: relative;
        }

        .content-hero h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

        .content-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
        }

        .content-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.25);
        }

        .hero-image {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
            display: block;
        }

        .section-image {
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: cover;
            display: block;
        }

        .content-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-block.reverse {
            direction: rtl;
        }

        .content-block.reverse .content-text {
            direction: ltr;
        }

        .content-text {
            padding: 2rem;
        }

        .content-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3c72;
            margin-bottom: 2rem;
            position: relative;
        }

        .content-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #066fef, #00142e);
            border-radius: 2px;
        }

        .content-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        /* Video Section */
        .video-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .video-section h2 {
            text-align: center;
            margin-bottom: 3rem;
            color: #1e3c72;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .video-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .video-container video {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Detailed Technical Specifications */
        .detailed-specs {
            padding: 5rem 0;
            background: white;
        }

        .detailed-specs h2 {
            text-align: center;
            margin-bottom: 4rem;
            color: #1e3c72;
            font-size: 2.8rem;
            font-weight: 700;
            position: relative;
        }

        .detailed-specs h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

        .specs-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .spec-category {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .spec-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #ff6b35;
        }

        .spec-category h3 {
            color: #1e3c72;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            font-weight: 700;
            text-align: center;
            position: relative;
        }

        .spec-category h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #066fef, #00142e);
            border-radius: 2px;
        }

        .spec-list {
            list-style: none;
            padding: 0;
        }

        .spec-item {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95rem;
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-item strong {
            color: #1e3c72;
            font-weight: 600;
        }

        /* Color Selection Section */
        .color-selection {
            padding: 5rem 0;
            background: #f8f9fa;
            color: #2c3e50;
        }

        .color-selection h2 {
            text-align: center;
            margin-bottom: 4rem;
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .color-showcase {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .car-image-container {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .car-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: drop-shadow(0 15px 35px rgba(0,0,0,0.15));
            transform-style: preserve-3d;
        }

        .car-image.changing {
            animation: carTransition 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @keyframes carTransition {
            0% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.2;
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .color-palette {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
        }

        .color-option {
            position: relative;
            cursor: pointer;
            border-radius: 15px;
            padding: 1rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 3px solid transparent;
            background: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }


        .color-option:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .color-option.active {
            border-color: #ff6b35;
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
            background: white;
        }

        .color-preview {
            width: 70px;
            height: 70px;
            margin: 0 auto 0.8rem;
            position: relative;
            overflow: hidden;
            border: 4px solid #fff;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            border-radius: 10px;
        }

        .color-option:hover .color-preview {
            transform: scale(1.15);
        }

        .color-preview img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .color-name {
            font-weight: 700;
            color: #2c3e50;
            font-size: 0.95rem;
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .loading-spinner {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }

        .spinner-border {
            width: 3rem;
            height: 3rem;
            border-width: 0.4em;
        }

        /* Enhanced floating quote button */
        .floating-quote {
            background: #ff6b35;
            font-size: 0.9rem;
            font-weight: 700;
        }

        /* Floating Action Buttons */
        .floating-actions {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 1000;
            justify-content: center;
        }
        
        .floating-call {
            background: #28a745;
            color: white;
            padding: 12px 18px;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(40,167,69,0.2);
            cursor: pointer;
            font-weight: 700;
            font-size: 0.85rem;
            border: 2px solid rgba(255,255,255,0.3);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .floating-call:hover {
            background: #218838;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40,167,69,0.3);
            color: white;
            text-decoration: none;
        }
        
        .floating-call .call-icon {
            font-size: 1rem;
            animation: ring 2s infinite;
        }
        
        .floating-quote {
            background: #ff6b35;
            color: white;
            padding: 12px 18px;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(255,107,53,0.2);
            cursor: pointer;
            font-weight: 700;
            font-size: 0.85rem;
            border: 2px solid rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .floating-quote:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,107,53,0.3);
        }
        
        .floating-quote .quote-icon {
            font-size: 1rem;
            animation: bounce 2s infinite;
        }
        



        /* Footer */
        footer {
            background: #1e3c72;
            color: white;
            padding: 3rem 0;
            text-align: center;
            position: relative;
        }


        footer .container {
            position: relative;
            z-index: 2;
        }

        footer p {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        footer strong {
            color: #066fef;
        }

        /* Responsive Header */
        @media (max-width: 1024px) {
            .header-content {
                grid-template-columns: 200px 1fr 250px;
                gap: 1rem;
            }

            .main-nav ul {
                gap: 1rem;
            }

            .main-nav a {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-content {
                grid-template-columns: 1fr;
                gap: 1rem;
                text-align: center;
            }

            .logo-section {
                justify-content: center;
            }

            .main-nav {
                order: 3;
                width: 100%;
            }

            .main-nav ul {
                justify-content: center;
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            .main-nav a {
                font-size: 0.85rem;
                padding: 0.5rem 0.8rem;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                background: rgba(255,255,255,0.95);
                margin-top: 0.5rem;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }

            .dropdown:hover .dropdown-menu {
                display: block;
            }

            .contact-section {
                order: 2;
                justify-content: center;
            }

            .contact-info {
                text-align: center;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 0.8rem 0;
            }

            .header-content {
                gap: 0.8rem;
            }

            .logo-section h2 {
                font-size: 1.4rem !important;
            }

            .logo-section span {
                font-size: 0.7rem !important;
            }

            .main-nav ul {
                gap: 0.3rem;
            }

            .main-nav a {
                font-size: 0.8rem;
                padding: 0.4rem 0.6rem;
            }

            .contact-info div:first-child {
                font-size: 0.8rem !important;
            }

            .contact-info div:last-child {
                font-size: 1rem !important;
            }

            .header-cta {
                padding: 10px 20px;
                font-size: 0.8rem;
            }
        }

        /* Responsive Design */

        @media (max-width: 768px) {
            .large-banner {
                margin-bottom: 1rem;
            }

            .content-section {
                padding: 4rem 0;
            }

            .content-hero h2 {
                font-size: 2.2rem;
                margin-bottom: 2rem;
            }

            .content-block {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .content-block.reverse {
                direction: ltr;
            }

            .content-text {
                padding: 1rem;
            }

            .content-text h2 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .content-text h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .content-text p {
                font-size: 1rem;
                line-height: 1.6;
            }

            .hero-image {
                max-height: 300px;
            }

            .section-image {
                max-height: 250px;
            }

            .video-section h2 {
                font-size: 2rem;
            }

            .video-container video {
                max-width: 100%;
            }

            .detailed-specs h2 {
                font-size: 2.2rem;
            }

            .specs-categories {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .spec-category {
                padding: 2rem;
            }

            .color-selection h2 {
                font-size: 2.2rem;
            }

            .color-showcase {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .car-image-container {
                height: 300px;
            }

            .color-palette {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 1rem;
            }

            .color-preview {
                width: 60px;
                height: 60px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-price {
                font-size: 1.5rem;
            }

            .hero-content p {
                font-size: 2rem;
            }

            .hero-list li {
                font-size: 0.85rem;
                padding: 6px 10px;
            }

            .warranty h2,
            .design-philosophy h2,
            .pricing h2,
            .specifications h2,
            .gallery h2 {
                font-size: 1.8rem;
            }

            .warranty-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .warranty-item {
                padding: 1.5rem;
            }

            .detailed-specs .comparison-table {
                font-size: 0.9rem;
            }

            .detailed-specs .comparison-table th,
            .detailed-specs .comparison-table td {
                padding: 0.8rem 0.5rem;
            }

            .philosophy-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .philosophy-item h3 {
                font-size: 1.2rem;
                padding: 1rem;
            }

            .philosophy-item p {
                padding: 0 1rem 1rem;
            }

            .pricing h2,
            .specifications h2,
            .gallery h2 {
                font-size: 1.8rem;
            }

            .quote-section h2 {
                font-size: 2rem;
            }

            .pricing-card h3 {
                font-size: 1.3rem;
            }

            .price {
                font-size: 2rem;
            }

            .features li {
                font-size: 0.9rem;
            }

            .spec-card h3 {
                font-size: 1.2rem;
            }

            .spec-card p {
                font-size: 0.9rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .color-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1.5rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .spec-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .gallery-tabs {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .pricing h2,
            .specifications h2,
            .gallery h2 {
                font-size: 2.2rem;
            }

            .quote-section h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.6rem;
            }

            .hero-price {
                font-size: 1.3rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .hero-list li {
                font-size: 0.8rem;
                padding: 5px 8px;
            }

            .pricing h2,
            .specifications h2,
            .gallery h2 {
                font-size: 1.5rem;
            }

            .quote-section h2 {
                font-size: 1.8rem;
            }

            .pricing-card h3 {
                font-size: 1.1rem;
            }

            .price {
                font-size: 1.8rem;
            }

            .features li {
                font-size: 0.85rem;
            }

            .spec-card h3 {
                font-size: 1.1rem;
            }

            .spec-card p {
                font-size: 0.85rem;
            }

            .quote-form h3 {
                font-size: 1.5rem;
            }

            .form-group label {
                font-size: 0.9rem;
            }

            .submit-btn {
                font-size: 1rem;
            }

            .pricing-card,
            .spec-card,
            .quote-form {
                padding: 2rem;
            }

            .color-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .floating-quote {
                bottom: 20px;
                right: 20px;
                padding: 15px 20px;
                font-size: 0.9rem;
            }

            .floating-call {
                bottom: 85px;
                right: 20px;
                padding: 15px 20px;
                font-size: 0.9rem;
            }
        }

        /* Enhanced Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-up {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s ease;
        }

        .slide-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        .bounce-in {
            opacity: 0;
            transform: scale(0.3);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .bounce-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Floating animation for CTA buttons */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }


        /* Typing effect */
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            50% { border-color: transparent; }
        }

        .typing-effect {
            overflow: hidden;
            border-right: 3px solid #066fef;
            white-space: nowrap;
            animation: typing 3s steps(40, end), blink 0.75s step-end infinite;
        }

        /* Gradient text animation */
        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .gradient-text {
            background: linear-gradient(-45deg, #066fef, #00142e, #ff6b35, #f7931e);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 3s ease infinite;
        }

        /* Particle effect background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float-particle 6s infinite linear;
        }

        @keyframes float-particle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Glowing effect for important elements */
        .glow {
            box-shadow: 0 2px 10px rgba(6, 111, 239, 0.2);
        }

        /* Flash animation for urgency */
        @keyframes flash {
            0%, 50%, 100% { opacity: 1; }
            25%, 75% { opacity: 0.7; }
        }

        /* Enhanced floating quote button */
        .floating-quote {
            background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
            background-size: 200% 200%;
            animation: gradient-move 2s ease infinite, pulse 2s infinite;
            font-size: 0.9rem;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }


        /* Enhanced form styling for better conversion */
        .quote-form {
            position: relative;
            overflow: hidden;
        }

        /* Countdown timer styling */
        .countdown-timer {
            background: #ff6b35;
            color: white;
            padding: 15px;
            border-radius: 15px;
            text-align: center;
            margin: 20px 0;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
        }

        /* Social proof indicators */
        .social-proof {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 15px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-proof .stat {
            display: inline-block;
            margin: 0 15px;
            font-weight: bold;
        }

        .social-proof .stat .number {
            font-size: 1.5rem;
            color: #ff6b35;
        }

/* Beautiful Slideshow Styles */
.hero {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #066fef 0%, #00142e 100%);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide.next {
    transform: translateX(100%) scale(1);
}

.slide.prev {
    transform: translateX(-100%) scale(1);
}

/* Navigation dots */
.slideshow-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.nav-dot.active {
    background: #066fef;
    border-color: #066fef;
    box-shadow: 0 0 20px rgba(6, 111, 239, 0.6);
    transform: scale(1.3);
}

/* Navigation arrows */
.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-arrow:hover {
    background: rgba(6, 111, 239, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(6, 111, 239, 0.4);
}

.slideshow-arrow.prev {
    left: 30px;
}

.slideshow-arrow.next {
    right: 30px;
}

/* Progress bar */
.slideshow-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 100;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #066fef, #00142e);
    width: 0;
    transition: width 0.1s linear;
}



/* Responsive design */
@media (max-width: 768px) {
    .hero {
        aspect-ratio: 1 / 1;
        max-height: 70vh;
    }

    .slideshow-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slideshow-arrow.prev {
        left: 10px;
    }

    .slideshow-arrow.next {
        right: 10px;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
    }

    .slideshow-nav {
        bottom: 15px;
        gap: 10px;
    }


    .floating-actions {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px;
    }

    .floating-call,
    .floating-quote {
        padding: 10px 16px;
        font-size: 0.8rem;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        aspect-ratio: 1 / 1;
        max-height: 60vh;
        min-height: 400px;
    }

    .slideshow-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .slideshow-nav {
        bottom: 10px;
        gap: 8px;
    }

    .bottom-nav {
        padding: 8px;
        justify-content: space-evenly;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
    }

    .nav-item {
        padding: 6px 4px;
        min-width: 55px;
        border-radius: 15px;
    }

    .nav-icon {
        font-size: 1.2rem;
        width: 20px;
        height: 20px;
    }

    .nav-label {
        font-size: 0.7rem;
        font-weight: 600;
    }

    .floating-actions {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 8px;
        width: auto;
        max-width: 90vw;
    }

    .floating-call,
    .floating-quote {
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 15px;
        flex: 1;
        max-width: 120px;
        justify-content: center;
    }

    .floating-call .call-text,
    .floating-quote .quote-text {
        font-size: 0.7rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .content-hero h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .content-hero h2::after {
        width: 60px;
        height: 3px;
    }

    .content-block {
        gap: 1.5rem;
    }

    .content-text {
        padding: 0.5rem;
    }

    .content-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .content-text h2::after {
        width: 50px;
        height: 3px;
    }

    .content-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .hero-image {
        max-height: 200px;
    }

    .section-image {
        max-height: 180px;
    }
}