/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-gray {
    background: #f9fafb;
}

.section-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.section-gradient {
    background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
}

.section-cta {
    background: linear-gradient(135deg, #010714 0%, #4f46e5 100%);
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('Images/4.png');
    background-size: cover;
    color: #fff;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 26, 0.8);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 1rem 1.5rem;
}

.hero-logo {
    margin-bottom: 1rem;
}

.hero-logo img {
    height: 120px;
    width: auto;
}


.hero-text {
    max-width: 48rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero {
        min-height: 700px;
    }
    
    .hero-content {
        padding: 5rem 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #eff6ff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background: #16a34a;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-whatsapp-large {
    background: #22c55e;
    color: #fff;
    padding: 1.25rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp-large:hover {
    background: #16a34a;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-phone {
    background: #2563eb;
    color: #fff;
    padding: 1.25rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-phone:hover {
    background: #1d4ed8;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
    background: #1d4ed8;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Card Styles */
.card-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #fff;
    padding: 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    stroke: #2563eb;
    margin-top: 0.125rem;
}

.check-icon.green {
    stroke: #22c55e;
}

.card-check p {
    color: #374151;
    line-height: 1.6;
}

.problem-card {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.problem-card p {
    color: #1f2937;
    font-weight: 500;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon.blue {
    background: #dbeafe;
}

.service-icon.green {
    background: #dcfce7;
}

.service-icon.purple {
    background: #f3e8ff;
}

.service-icon-inner {
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
}

.service-icon.blue .service-icon-inner {
    background: #2563eb;
}

.service-icon.green .service-icon-inner {
    background: #22c55e;
}

.service-icon.purple .service-icon-inner {
    background: #9333ea;
}

.service-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Step Cards */
.step-card {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-text {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-text h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.25rem;
    color: #bfdbfe;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cta-text h2 {
        font-size: 3rem;
    }
}

.contact-box {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .contact-box {
        padding: 2.5rem;
    }
}

.contact-buttons {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .contact-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #d1d5db;
}

.divider span {
    position: relative;
    background: #fff;
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Form Styles */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    color: #22c55e;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 2.5rem 0;
}

.footer-content {
    text-align: center;
}

.footer h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-email {
    margin-bottom: 1.5rem;
}

.footer-email a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email a:hover {
    color: #93c5fd;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}