 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #0A2463;
            --secondary-color: #1E3A8A;
            --accent-color: #3B82F6;
            --dark-blue: #0D1B2A;
            --light-blue: #E6F2FF;
            --navy-blue: #1B365D;
            --cyan: #06D6A0;
            --light-color: #F8FAFC;
            --dark-color: #1E293B;
            --gray-color: #64748B;
            --success-color: #10B981;
            --shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(10, 36, 99, 0.2);
            position: relative;
            overflow: hidden;
        }

        .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: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(10, 36, 99, 0.3);
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .btn-success {
            background: linear-gradient(135deg, var(--success-color), #0CA678);
        }

        .btn-light {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-light:hover {
            background: var(--primary-color);
            color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-color), var(--cyan));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--gray-color);
            max-width: 600px;
            margin: 15px auto 0;
        }

        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 5px 0;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: var(--transition);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-image {
            width: 70px;
            height: 70px;
            background: white;
          
                        display: flex;
            align-items: center;
            justify-content: center;
          
        }

        .logo-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 0;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-text span {
            font-size: 0.9rem;
            color: var(--gray-color);
            font-weight: 400;
        }

        nav ul {
            display: flex;
            gap: 30px;
        }

        nav li {
            position: relative;
        }

        nav a {
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            color: var(--dark-blue);
        }

        nav a:hover {
            color: var(--primary-color);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(to right, var(--accent-color), var(--cyan));
            bottom: 0;
            left: 0;
            transition: var(--transition);
            border-radius: 2px;
        }

        nav a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(10, 36, 99, 0.9)), 
                        url('https://images.unsplash.com/photo-1540202403-a2c2908e9c5e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 180px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        /* Services Section */
        .services-section {
            background: #f8fafc;
            padding: 80px 20px;
            text-align: center;
        }

        .services-section h2 {
            font-size: 36px;
            color: #1f3557;
        }

        .highlight {
            color: #22c55e;
        }

        .services-text {
            color: #475569;
            margin-bottom: 40px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .service-card {
            background: white;
            padding: 30px 20px;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(31,53,87,0.15);
            transition: 0.3s ease;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-8px);
        }

        .service-card i {
            font-size: 40px;
            color: #22c55e;
            margin-bottom: 15px;
        }

        .service-card h3 {
            color: #1f3557;
            margin-bottom: 10px;
        }

        /* Pricing Section */
        .pricing-section {
            background: var(--light-color);
            padding: 40px 20px;
        }
        .pricing-section .container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            padding: 40px;
        }
        .pricing-badge {
            display: inline-block;
            background: var(--cyan);
            color: var(--dark-blue);
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 20px 0 10px;
            text-align: center;
        }
        .price span {
            color: var(--accent-color);
        }
        .pricing-features {
            margin: 30px 0;
            text-align: left;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        .pricing-features li i {
            color: var(--success-color);
            margin-right: 10px;
        }

        /* Digital Order System */
        .order-system {
            background: linear-gradient(135deg, var(--dark-blue), var(--navy-blue));
            color: white;
            padding: 80px 20px;
        }
        .order-system .section-title h2 {
            color: white;
        }
        .order-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .order-option {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            transition: var(--transition);
        }
        .order-option:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
        }
        .order-option h3 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .order-form-container {
            max-width: 800px;
            margin: 50px auto 0;
            background: white;
            padding: 40px;
            border-radius: 12px;
            display: none;
            color: var(--dark-color);
        }
        .order-form-container.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--dark-color);
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 20px;
            background: var(--light-blue);
        }
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
            gap: 40px;
        }
        .contact-info {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 40px 30px;
            border-radius: 12px;
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .google-form-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            text-align: center;
        }
        .google-form-card h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .google-form-card .btn {
            margin-top: 25px;
            width: 100%;
        }
        iframe {
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 12px;
            margin-top: 20px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark-blue), var(--navy-blue));
            color: white;
            padding: 80px 0 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-logo h2 {
            color: white;
            margin-bottom: 15px;
            background: linear-gradient(to right, white, var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .footer-links h3, .footer-contact h3 {
            color: white;
            margin-bottom: 25px;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            opacity: 0.8;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        .footer-links a:hover {
            opacity: 1;
            color: var(--cyan);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        .water-animation {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
            animation: waterFlow 3s infinite linear;
        }
        @keyframes waterFlow {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2,1fr);
            }
        }
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 90px;
                left: 0;
                width: 100%;
                background: white;
                padding: 30px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                border-radius: 0 0 12px 12px;
            }
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            nav ul {
                flex-direction: column;
                gap: 20px;
            }
            .mobile-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
        }