:root {
            --primary: #1E40AF; /* Dark Blue */
            --primary-dark: #1E3A8A;
            --primary-light: #3B82F6;
            --secondary: #0F172A; /* Dark Black/Blue */
            --secondary-dark: #020617;
            --secondary-light: #1E293B;
            --accent: #06B6D4; /* Cyan/Teal */
            --accent-dark: #0891B2;
            --accent-light: #22D3EE;
            --dark: #0F172A;
            --dark-light: #334155;
            --light: #F8FAFC; /* Light Blue Background */
            --gray: #94A3B8;
            --white: #ffffff;
            --black: #000000;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --gradient-blue: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Top - Dark Blue Theme */
        .header-top {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            color: var(--white);
            padding: 8px 0;
            font-size: 14px;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .contact-info {
            display: flex;
            gap: 25px;
        }

        .contact-info a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-info a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: var(--white);
            transition: var(--transition);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        /* Header - Blue Theme */
        header {
            background-color: var(--white);
            box-shadow: 0px 4px 20px rgba(30, 64, 175, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-image {
            height: 80px;
            width: 280px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text h1 {
            font-size: 32px;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 5px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .logo-text span {
            font-size: 14px;
            color: var(--dark-light);
            letter-spacing: 1px;
            font-weight: 500;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s;
            border-radius: 3px;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section - Blue Gradient Theme */
        .hero {
            position: relative;
            height: 700px;
            overflow: hidden;
            background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(30, 64, 175, 0.6)), url('images/fleet/car/car8.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .hero-content {
            max-width: 700px;
            color: var(--white);
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 35px;
            background-color: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: var(--radius);
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--white);
            box-shadow: none;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .btn-accent {
            background-color: var(--accent);
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
        }

        .btn-accent:hover {
            background-color: var(--accent-dark);
        }

        .btn-whatsappconfirm {
            background-color: transparent;
            border: 2px solid var(--primary);
        }

        .btn-whatsappconfirm:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: var(--radius);
            backdrop-filter: blur(10px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
            color: var(--white);
        }

        .feature-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .feature-text p {
            font-size: 14px;
            margin: 0;
            opacity: 0.9;
        }

        /* Booking Form - Blue Theme */
        .booking-form {
            background-color: var(--light);
            padding: 100px 0 50px;
            margin-top: -100px;
            position: relative;
            z-index: 10;
        }

        .form-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--white);
            border-radius: var(--radius);
            box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
            padding: 40px;
            position: relative;
            border-top: 5px solid var(--accent);
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-header h2 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .form-header p {
            color: var(--gray);
            font-size: 18px;
        }

        .form-tabs {
            display: flex;
            margin-bottom: 30px;
            background: #E0F2FE;
            border-radius: var(--radius);
            padding: 5px;
            border: 1px solid var(--primary-light);
        }

        .tab {
            flex: 1;
            padding: 15px 20px;
            cursor: pointer;
            font-weight: 600;
            text-align: center;
            border-radius: 8px;
            transition: var(--transition);
            color: var(--dark);
        }

        .tab.active {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
        }

        .form-content {
            display: none;
        }

        .form-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }

        input, select {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #E0F2FE;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
            font-size: 16px;
            background-color: #F8FAFC;
        }

        input:focus, select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
            outline: none;
            background-color: var(--white);
        }

        .book-now-btn {
            text-align: center;
            margin-top: 30px;
        }

        /* Download app */
        .download-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .download-title h2 {
            font-size: 40px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .download-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .download-title p {
            max-width: 600px;
            margin: 15px auto 0;
            font-size: 18px;
        }

        /* Sections */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 40px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            max-width: 600px;
            margin: 15px auto 0;
            font-size: 18px;
        }

        /* About Us - Blue Theme */
        .about {
            background-color: #F0F9FF;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 5px solid var(--white);
        }

        .about-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--gradient);
            color: var(--white);
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
            border: 3px solid var(--white);
        }

        .about-badge h3 {
            font-size: 36px;
            margin-bottom: 5px;
        }

        .about-badge p {
            font-size: 14px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--dark-light);
            font-size: 17px;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--white);
            padding: 15px;
            border-radius: var(--radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary);
        }

        .about-feature i {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .about-feature div h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark);
        }

        /* Services - Blue Theme */
        .services {
            background-color: #F8FAFC;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(30, 64, 175, 0.1);
            transition: var(--transition);
            border: 2px solid #E0F2FE;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(30, 64, 175, 0.2);
            border-color: var(--primary-light);
        }

        .service-image {
            height: 250px;
            width: 100%;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-image img {
            transform: scale(1.05);
        }

        .service-content {
            padding: 25px;
            text-align: center;
        }

        .service-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-content p {
            color: var(--dark-light);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        /* Tariff - Dark Blue Theme */
        .tariff {
            background-color: #E0F2FE;
        }

        .tariff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .tariff-card {
            background-color: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(30, 64, 175, 0.1);
            text-align: center;
            transition: var(--transition);
            position: relative;
            border: 2px solid #E0F2FE;
        }

        .tariff-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(30, 64, 175, 0.2);
        }

        .tariff-card.popular {
            border: 3px solid var(--primary);
            transform: scale(1.05);
        }

        .tariff-card.popular::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--gradient-blue);
            color: var(--white);
            padding: 5px 30px;
            font-size: 12px;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .tariff-header {
            background: var(--gradient-blue);
            color: var(--white);
            padding: 25px;
        }

        .tariff-header h3 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .tariff-body {
            padding: 30px 20px;
        }

        .tariff-price {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .tariff-price span {
            font-size: 16px;
            color: var(--gray);
            font-weight: 500;
        }

        .tariff-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .tariff-features li {
            padding: 12px 0;
            border-bottom: 1px solid #E0F2FE;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .tariff-features li i {
            color: var(--primary);
        }

        /* Download App Section */
        .download-app {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 100px 0;
        }

        .download-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .download-text {
            flex: 1;
        }

        .download-text h3 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--white);
        }

        .download-text p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            font-size: 17px;
        }

        .app-buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .app-btn {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 25px;
            border-radius: var(--radius);
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .app-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .app-btn i {
            font-size: 30px;
        }

        .app-btn-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .app-btn-text p {
            font-size: 14px;
            margin: 0;
            opacity: 0.9;
        }

        .download-image {
            flex: 1;
            position: relative;
            text-align: center;
        }

        .download-image img {
            max-width: 100%;
        }

        /* Tour Package - Blue Theme */
        .tour-package {
            background-color: #F0F9FF;
        }

        .package-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .package-text {
            flex: 1;
        }

        .package-text h3 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .package-text p {
            margin-bottom: 20px;
            color: var(--dark-light);
            line-height: 1.8;
        }

        .package-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin: 30px 0;
        }

        .package-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--white);
            padding: 15px;
            border-radius: var(--radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary);
        }

        .package-feature i {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .package-image {
            flex: 1;
            position: relative;
        }

        .package-image img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 5px solid var(--white);
        }

        /* Advanced Gallery */
        .gallery {
            background-color: #F8FAFC;
            padding: 100px 0;
        }

        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .filter-btn {
            padding: 12px 25px;
            background: var(--white);
            border: 2px solid var(--primary);
            color: var(--dark);
            font-weight: 600;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--gradient);
            color: var(--white);
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .gallery-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            height: 250px;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-image img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .overlay-content {
            color: var(--white);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .overlay-content {
            transform: translateY(0);
        }

        .overlay-content h3 {
            font-size: 22px;
            margin-bottom: 5px;
            color: var(--white);
        }

        .overlay-content p {
            font-size: 14px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .btn-small {
            padding: 8px 20px;
            font-size: 14px;
        }

        /* Lightbox Modal */
        .lightbox-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2001;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .lightbox-content {
            position: relative;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            transition: var(--transition);
        }

        .lightbox-close:hover {
            color: var(--accent);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }

        .lightbox-prev, .lightbox-next {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .lightbox-prev:hover, .lightbox-next:hover {
            background: var(--accent);
            transform: scale(1.1);
        }

        .lightbox-image {
            width: 100%;
            max-height: 70vh;
            object-fit: contain;
            border-radius: var(--radius);
            display: block;
        }

        .lightbox-caption {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 20px;
            border-radius: 0 0 var(--radius) var(--radius);
            text-align: center;
        }

        .lightbox-caption h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--white);
        }

        .lightbox-caption p {
            font-size: 16px;
            opacity: 0.9;
        }

        /* Contact - Blue Theme */
        .contact {
            background-color: #E0F2FE;
        }

        .contact-content {
            display: flex;
            gap: 50px;
        }

        .contact-details-box {
            flex: 1;
        }

        .contact-details-box .contact-details {
            margin-bottom: 40px;
        }

        .contact-details-box .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            background: var(--white);
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: 0 10px 20px rgba(30, 64, 175, 0.1);
            border-left: 4px solid var(--primary);
        }

        .contact-details-box .contact-item i {
            width: 70px;
            height: 70px;
            background: var(--gradient-blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .contact-details-box .contact-text h4 {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .contact-details-box .contact-text p, 
        .contact-details-box .contact-text a {
            color: var(--dark-light);
            font-size: 17px;
            text-decoration: none;
        }

        .contact-details-box .contact-text a:hover {
            color: var(--primary);
        }

        .contact-map {
            flex: 1;
            height: 500px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 5px solid var(--white);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer - Dark Blue Theme */
        footer {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 80px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: var(--white);
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }

        .footer-column p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 12px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }

        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
        }

        /* Floating Contact */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 99;
        }

        .floating-whatsapp, .floating-call {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: var(--transition);
            border: 2px solid white;
        }

        .floating-whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

        .floating-call {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        .floating-whatsapp:hover, .floating-call:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        }

        /* Confirmation Message */
        .confirmation-message {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .confirmation-content {
            background-color: white;
            padding: 50px;
            border-radius: var(--radius);
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            border: 5px solid var(--primary);
        }

        .confirmation-content i {
            font-size: 70px;
            color: var(--primary);
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .confirmation-content h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .confirmation-content p {
            margin-bottom: 25px;
            color: var(--dark-light);
            font-size: 17px;
            line-height: 1.7;
        }

        .confirmation-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        /* Loading and Messages */
        .loading {
            display: none;
            text-align: center;
            padding: 20px;
        }

        .loading i {
            font-size: 30px;
            color: var(--primary);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .error-message {
            display: none;
            background-color: #FEE2E2;
            color: #DC2626;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid #DC2626;
        }

        .success-message {
            display: none;
            background-color: #D1FAE5;
            color: #059669;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid #059669;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                max-width: 960px;
            }
        }

        @media (max-width: 992px) {
            .services-grid,
            .tariff-grid,
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-content,
            .package-content,
            .contact-content,
            .download-content {
                flex-direction: column;
            }

            .tariff-card.popular {
                transform: scale(1);
            }

            .hero-features {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .header-top-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
            }

            .contact-info a {
                justify-content: center;
            }

            .header-content {
                flex-direction: column;
                padding: 15px 0;
            }

            nav ul {
                margin-top: 15px;
                flex-direction: column;
                align-items: center;
                display: none;
                width: 100%;
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 10px 0;
            }

            .mobile-menu {
                display: block;
                position: absolute;
                top: 20px;
                right: 15px;
            }

            .hero {
                height: auto;
                min-height: 700px;
                text-align: center;
                padding: 100px 0;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .hero-buttons {
                justify-content: center;
                flex-direction: column;
                align-items: center;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .services-grid,
            .tariff-grid,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .about-features,
            .package-features {
                grid-template-columns: 1fr;
            }

            .about-badge {
                position: static;
                margin-top: 20px;
            }

            section {
                padding: 70px 0;
            }

            .floating-contact {
                bottom: 20px;
                right: 20px;
            }

            .app-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 576px) {
            .form-container {
                padding: 25px;
            }

            .form-header h2 {
                font-size: 28px;
            }

            .section-title h2 {
                font-size: 32px;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .confirmation-content {
                padding: 30px 20px;
            }
        }