﻿
:root {
    --primary: #ccff02;
    --white: #ffffff;
    --black: #000000;
    --gray-dark: #111111;
    --gray-medium: #222222;
    --gray-light: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .loading-screen.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loading-logo {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

    .loading-logo i {
        margin-right: 15px;
        font-size: 42px;
    }

.loading-animation {
    width: 80px;
    height: 80px;
    position: relative;
}

.loading-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

    .loading-circle:nth-child(2) {
        width: 70%;
        height: 70%;
        top: 15%;
        left: 15%;
        border-top-color: var(--white);
        animation: spin 0.8s linear infinite reverse;
    }

    .loading-circle:nth-child(3) {
        width: 40%;
        height: 40%;
        top: 30%;
        left: 30%;
        border-top-color: var(--primary);
        animation: spin 1.2s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: var(--white);
    margin-top: 30px;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--black);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

    header.visible {
        transform: translateY(0);
    }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .logo.animate {
        opacity: 1;
        transform: translateX(0);
    }

    .logo span {
        color: var(--primary);
    }

.logo-icon {
    margin-right: 10px;
    font-size: 24px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
}

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--white);
        font-weight: 600;
        font-size: 16px;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: var(--primary);
        }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background-color: var(--gray-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background-color: var(--primary);
        opacity: 0.1;
        border-radius: 0 0 0 100px;
    }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary);
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--black);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    cursor: pointer;
}

    .btn:hover {
        background-color: transparent;
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(204, 255, 2, 0.2);
    }

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px;
}

    .btn-outline:hover {
        background-color: var(--white);
        color: var(--black);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    }

.hero-image {
    background-color: var(--black);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--primary);
}

    .hero-image::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background-color: var(--primary);
        border-radius: 50%;
        opacity: 0.2;
        top: -50px;
        right: -50px;
    }

    .hero-image i {
        font-size: 150px;
        color: var(--primary);
    }

/* Services Section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--gray-medium);
        max-width: 600px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

.services {
    padding: 100px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-light);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-color: var(--primary);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid var(--primary);
}

    .service-icon i {
        font-size: 35px;
        color: var(--primary);
    }

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.service-card p {
    color: var(--gray-medium);
}

/* Lead Capture Form Section - HIGH CONVERTING DESIGN */
.lead-form-section {
    padding: 100px 0;
    background-color: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    .lead-form-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 20% 50%, rgba(204, 255, 2, 0.1) 0%, transparent 50%);
    }

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--primary);
    position: relative;
    z-index: 1;
}

.form-title {
    text-align: center;
    margin-bottom: 40px;
}

    .form-title h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: var(--black);
    }

    .form-title p {
        color: var(--gray-medium);
        font-size: 1.1rem;
        line-height: 1.8;
    }

.urgency-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.benefits-list {
    background-color: rgba(204, 255, 2, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

    .benefits-list h4 {
        color: var(--black);
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .benefits-list ul {
        list-style: none;
    }

    .benefits-list li {
        margin-bottom: 10px;
        color: var(--gray-medium);
        display: flex;
        align-items: flex-start;
    }

        .benefits-list li i {
            color: var(--primary);
            margin-right: 10px;
            margin-top: 4px;
        }

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--black);
    }

        .form-group label span {
            color: #ff4444;
        }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #ddd;
        border-radius: 10px;
        font-size: 16px;
        transition: all 0.3s;
        background-color: var(--white);
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(204, 255, 2, 0.2);
        }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 20px;
    }

/* Stylish Checkbox Grid - NEW IMPROVED DESIGN */
.services-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.service-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px 20px 16px 48px;
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    color: var(--gray-medium);
    user-select: none;
    box-shadow: 0 2px 8px rgba(204, 255, 2, 0.1);
}

    .service-option:hover {
        transform: translateY(-2px);
        border-color: var(--primary);
        box-shadow: 0 6px 16px rgba(204, 255, 2, 0.2);
    }

    .service-option input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    left: 20px;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-option:hover .checkmark {
    border-color: var(--primary);
}

.service-option input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.service-option input:checked ~ .checkmark:after {
    display: block;
}

.service-option input:checked ~ .service-label {
    color: var(--black);
    font-weight: 600;
}

.service-option.checked {
    background: rgba(204, 255, 2, 0.05);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(204, 255, 2, 0.1);
}

.service-label {
    margin-left: 8px;
    transition: color 0.3s ease;
}

/* FIXED SUBMIT BUTTON - Now clearly visible */
.submit-btn-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #eee;
}

.submit-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #a8e000);
    color: var(--black);
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(204, 255, 2, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

    .submit-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(204, 255, 2, 0.4);
        background: linear-gradient(135deg, #a8e000, var(--primary));
    }

    .submit-btn:active {
        transform: translateY(-2px);
    }

    .submit-btn i {
        margin-left: 10px;
    }

.guarantee-text {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

    .guarantee-text i {
        color: var(--primary);
        margin-right: 5px;
    }

/* Form Status Messages */
.form-status {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
    display: none;
}

    .form-status.success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        display: block;
    }

    .form-status.error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
        display: block;
    }

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: var(--black);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--primary);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-medium);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--black);
    font-weight: bold;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--black);
}

.author-info p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: var(--primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 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='%23000000' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
        z-index: 0;
    }

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--black);
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray-medium);
}

.cta .btn {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

    .cta .btn:hover {
        background-color: transparent;
        color: var(--black);
    }

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

    .footer-logo span {
        color: var(--primary);
    }

.footer-logo-icon {
    margin-right: 10px;
    color: var(--primary);
}

.footer-about p {
    margin-bottom: 20px;
    color: #aaa;
}

.footer-links h4, .footer-services h4, .footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

    .footer-links h4::after, .footer-services h4::after, .footer-contact h4::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 40px;
        height: 3px;
        background-color: var(--primary);
    }

.footer-links ul, .footer-services ul {
    list-style: none;
}

.footer-links li, .footer-services li {
    margin-bottom: 12px;
}

.footer-links a, .footer-services a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-links a:hover, .footer-services a:hover {
        color: var(--primary);
    }

.footer-contact p {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #333;
        color: var(--white);
        border-radius: 50%;
        margin-right: 10px;
        transition: all 0.3s;
    }

        .social-icons a:hover {
            background-color: var(--primary);
            color: var(--black);
        }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: scale(1.1);
    }

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-image {
        height: 300px;
        order: -1;
    }

    .lead-form {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 40px 30px;
    }

    .submit-btn {
        min-width: 250px;
        padding: 18px 40px;
    }

    .services-selector-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

        .nav-links.active {
            transform: translateX(0);
        }

        .nav-links li {
            margin: 15px 0;
        }

        .nav-links a {
            font-size: 1.2rem;
        }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-outline {
        margin-left: 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2.2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

    .form-title h2 {
        font-size: 2rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .submit-btn {
        width: 100%;
        min-width: auto;
        padding: 18px 30px;
    }

    .benefits-list {
        padding: 20px;
    }

        .benefits-list li {
            font-size: 0.95rem;
        }

    .services-selector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-option {
        padding: 14px 16px 14px 44px;
        font-size: 14px;
    }

    .checkmark {
        left: 16px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .urgency-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .form-title h2 {
        font-size: 1.8rem;
    }

    .form-title p {
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .footer-logo {
        font-size: 28px;
    }

    .services, .lead-form-section, .testimonials, .cta {
        padding: 70px 0;
    }

    .stats {
        padding: 60px 0;
    }

    /* Fix checkbox layout on mobile */
    .services-selector-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .submit-btn {
        font-size: 16px;
        padding: 16px 25px;
    }

    .form-title h2 {
        font-size: 1.6rem;
    }

    .service-option {
        padding: 12px 14px 12px 40px;
        font-size: 13px;
    }
}

/* Ripple effect for checkboxes */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
