
        /* Base Styles & Variables */
        :root {
            --primary: #1a365d;
            --secondary: #2d7dd2;
            --accent: #ff6b35;
            --light: #f8f9fa;
            --dark: #0d1b2a;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --success: #38b000;
            --whatsapp: #25D366;
            --phone: #34B7F1;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.07);
            --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --border-radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            color: var(--dark);
        }
        
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        
        h2 {
            font-size: 2.8rem;
            margin-bottom: 2.5rem;
            position: relative;
            display: inline-block;
        }
        
        h3 {
            font-size: 1.8rem;
            margin-bottom: 1.2rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--gray);
            font-size: 1.05rem;
        }
        
        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 6rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70%;
            height: 4px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            bottom: -12px;
            left: 15%;
            border-radius: 4px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 2rem auto 0;
            font-size: 1.15rem;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            background: var(--secondary);
            color: white;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            gap: 10px;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .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;
            z-index: -1;
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        .btn:hover {
            background: #1c6bb8;
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-accent {
            background: var(--accent);
        }
        
        .btn-accent:hover {
            background: #e05a2b;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }
        
        .btn-outline:hover {
            background: var(--secondary);
            color: white;
        }
        
        /* ===== LOGO IMAGE STYLING ===== */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px;
        }
        
        .logo-img {
            height: 55px;
            width: auto;
            transition: var(--transition);
        }
        
        .logo-img:hover {
            transform: scale(1.05);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text .brand {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        
        .logo-text .tagline {
            font-size: 0.8rem;
            color: var(--gray);
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        /* For logo-only display (without text) */
        .logo-img-full {
            height: 55px;
            width: auto;
            transition: var(--transition);
        }
        
        .logo-img-full:hover {
            transform: scale(1.05);
        }
        
        /* ===== FLOATING CONTACT BUTTONS ===== */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .float-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }
        
        .float-btn:hover:before {
            left: 100%;
        }
        
        .float-btn.whatsapp {
            background: var(--whatsapp);
        }
        
        .float-btn.whatsapp:hover {
            background: #128C7E;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }
        
        .float-btn.phone {
            background: var(--phone);
        }
        
        .float-btn.phone:hover {
            background: #0A8BC2;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(52, 183, 241, 0.3);
        }
        
        .float-btn .tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            pointer-events: none;
            backdrop-filter: blur(5px);
        }
        
        .float-btn .tooltip:after {
            content: '';
            position: absolute;
            top: 50%;
            right: -6px;
            transform: translateY(-50%);
            border-width: 6px 0 6px 6px;
            border-style: solid;
            border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
        }
        
        .float-btn:hover .tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
        
        .float-btn.pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        /* For mobile, adjust position */
        @media (max-width: 768px) {
            .floating-contact {
                bottom: 20px;
                right: 20px;
            }
            
            .float-btn {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }
            
            .float-btn .tooltip {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
            
            /* Floating contact bar for mobile */
            .floating-contact-bar {
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background: white;
                display: flex;
                justify-content: space-around;
                padding: 12px 15px;
                box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
                z-index: 999;
                display: none;
            }
            
            .contact-bar-btn {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-decoration: none;
                color: var(--gray);
                transition: var(--transition);
                padding: 8px 5px;
                border-radius: 8px;
                flex: 1;
                max-width: 100px;
            }
            
            .contact-bar-btn:hover {
                background: var(--light-gray);
                color: var(--dark);
            }
            
            .contact-bar-btn i {
                font-size: 1.3rem;
                margin-bottom: 5px;
            }
            
            .contact-bar-btn.whatsapp i {
                color: var(--whatsapp);
            }
            
            .contact-bar-btn.phone i {
                color: var(--phone);
            }
            
            .contact-bar-btn .label {
                font-size: 0.75rem;
                font-weight: 600;
            }
            
            @media (max-width: 576px) {
                .floating-contact {
                    display: none;
                }
                
                .floating-contact-bar {
                    display: flex;
                }
                
                /* Adjust logo size for mobile */
                .logo-img, .logo-img-full {
                    height: 45px;
                }
                
                .logo-text .brand {
                    font-size: 1.3rem;
                }
            }
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 5px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            transition: var(--transition);
        }
        
        header.scrolled .navbar {
            padding: 0.8rem 0;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            bottom: 0;
            left: 0;
            border-radius: 3px;
            transition: var(--transition);
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 100%;
        }
        
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .phone-link {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--dark);
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        .phone-link:hover {
            color: var(--secondary);
        }
        
        .phone-link i {
            background: var(--light-gray);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
        }
        
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            padding: 12rem 0 8rem;
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(45, 125, 210, 0.9) 100%),   url('../img/1328841.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
        }
        
        .hero h1 {
            color: white;
            font-size: 3.8rem;
            margin-bottom: 1.8rem;
            line-height: 1.2;
        }
        
        .hero p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.3rem;
            max-width: 750px;
            margin-bottom: 2.5rem;
        }
        
        .hero-btns {
            display: flex;
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .stats {
            display: flex;
            justify-content: space-between;
            max-width: 1000px;
            margin-top: 5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .stat-item {
            text-align: center;
            flex: 1;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
            font-family: 'Poppins', sans-serif;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
        }
        
        /* Services Section */
        .services {
            background: var(--light);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-header {
            padding: 2.5rem 2rem 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            position: relative;
        }
        
        .service-icon {
            font-size: 2.8rem;
            margin-bottom: 1.2rem;
            display: inline-block;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .service-card h3 {
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .service-body {
            padding: 2rem;
        }
        
        .service-features {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        .service-features li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .service-features li i {
            color: var(--success);
        }
        
        .service-footer {
            padding: 1.5rem 2rem;
            border-top: 1px solid var(--light-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .service-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .service-price span {
            font-size: 1rem;
            color: var(--gray);
            font-weight: 500;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .about-image {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-image:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 54, 93, 0.2), rgba(45, 125, 210, 0.1));
            top: 0;
            left: 0;
        }
        
        .about-text h2 {
            margin-bottom: 1.5rem;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        
        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .about-feature i {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-top: 5px;
        }
        
        /* Process Section */
        .process {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 4rem;
            position: relative;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--light-gray);
            z-index: 1;
        }
        
        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 0 15px;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            margin: 0 auto 1.5rem;
            box-shadow: var(--shadow-md);
            border: 5px solid var(--light-gray);
            transition: var(--transition);
        }
        
        .process-step:hover .step-number {
            background: var(--secondary);
            color: white;
            border-color: var(--secondary);
            transform: scale(1.1);
        }
        
        /* Contact Section */
        .contact {
            background: var(--primary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .contact:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231a365d' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        .contact .section-title h2 {
            color: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        
        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .contact-detail i {
            background: rgba(255, 255, 255, 0.1);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--accent);
            flex-shrink: 0;
        }
        
        .contact-detail h4 {
            color: white;
            margin-bottom: 5px;
        }
        
        .contact-detail p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .form-group {
            margin-bottom: 1.8rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: white;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 5rem 0 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-col h3 {
            color: white;
            margin-bottom: 1.8rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--accent);
            bottom: 0;
            left: 0;
        }
        
        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.4rem;
            }
            
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .stats {
                flex-wrap: wrap;
                gap: 2rem;
            }
            
            .stat-item {
                flex: 0 0 calc(50% - 1rem);
            }
        }
        
        @media (max-width: 992px) {
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 3rem;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 90px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-lg);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-cta {
                display: none;
            }
            
            /* Hide text next to logo on smaller screens */
            .logo-text {
                display: none;
            }
            
            .logo {
                gap: 0;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero {
                padding: 10rem 0 6rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            section {
                padding: 4rem 0;
            }
            
            .stat-item {
                flex: 0 0 100%;
            }
        }
        
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .service-footer {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
        }
