/* ============================================
   RESET & VARIABLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores profesionales: Rojo corporativo y Gris/Blanco */
    --color-blue: #C41E3A;
    --color-blue-dark: #8B1528;
    --color-blue-light: #F5E6E8;
    
    /* Escala de grises profesional */
    --color-dark: #1A1A1A;
    --color-dark-bg: #FFFFFF;
    --color-gray-100: #F8F8F8;
    --color-gray-200: #EFEFEF;
    --color-gray-300: #E0E0E0;
    --color-gray-600: #666666;
    --color-gray-800: #333333;
    
    /* Sombras elegantes */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.2);
    
    /* Tipografía */
    --font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.7;
}
    
    /* Colores complementarios */
    --color-white: #FFFFFF;
    --color-gray-100: #F8F9FA;
    --color-gray-200: #E9ECEF;
    --color-gray-300: #DEE2E6;
    --color-gray-600: #6C757D;
    --color-gray-800: #212529;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    
    /* Tipografía */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--color-gray-800);
}

h2 {
    font-size: 2.2rem;
    color: var(--color-gray-800);
}

h3 {
    font-size: 1.5rem;
    color: var(--color-gray-800);
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray-600);
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-blue-dark);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--color-blue);
    color: white;
    border-color: var(--color-blue);
}

.btn-primary:hover {
    background-color: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 91, 168, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 91, 168, 0.2);
}

.btn-secondary {
    background-color: var(--color-gray-800);
    color: white;
    border-color: var(--color-gray-800);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border-color: var(--color-blue);
}

.btn-outline:hover {
    background-color: var(--color-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 91, 168, 0.3);
}

.btn-warning {
    background-color: #1E5BA8;
    color: white;
    border-color: #1E5BA8;
}

.btn-warning:hover {
    background-color: #153D73;
    border-color: #153D73;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.btn-small {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.btn i {
    font-size: 1.3em;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--color-dark);
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--color-blue);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    margin-right: 0.5rem;
}

.logo-text {
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-blue);
}

.btn-whatsapp-nav {
    background-color: #25D366;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-whatsapp-nav:hover {
    background-color: #20BA5C;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .nav-link {
        display: none;
    }
    
    .btn-whatsapp-nav {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(to right, rgba(30, 91, 168, 0.55) 0%, rgba(21, 61, 115, 0.35) 50%), url('./assets/acc-lab-1.jpg');
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.06) 0%, rgba(21, 61, 115, 0.03) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-blue);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 6px;
    width: fit-content;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(30, 91, 168, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero p {
    color: #D0D0D0;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 650px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(30, 91, 168, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-blue);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #B0B0B0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ACCIDENT TYPES SECTION
   ============================================ */
.accident-types {
    padding: 6rem 2rem;
    background-color: white;
}

.accident-types .section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.accident-types .section-header h2 {
    font-size: 2.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.accident-types .section-header p {
    color: var(--color-gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.accidents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 3rem;
}

.accident-card {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 5px solid var(--color-blue);
    border-left: 1px solid #E8E8E8;
    border-right: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accident-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.accident-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(30, 91, 168, 0.2);
}

.accident-card h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.accident-card p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

.accident-damages {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accident-damages li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-600);
    font-size: 0.9rem;
}

.accident-damages i {
    color: var(--color-blue);
    font-weight: 700;
}

.accident-card .btn {
    margin-top: auto;
    justify-content: center;
}

/* ============================================
   WHAT TO DO SECTION
   ============================================ */
.what-to-do {
    padding: 6rem 2rem;
    background: white;
}

.what-to-do .section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.what-to-do .section-header h2 {
    font-size: 2.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.what-to-do .section-header p {
    color: var(--color-gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step-card {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 5px solid var(--color-blue);
    border-right: 1px solid #E8E8E8;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    background: white;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 6px 16px rgba(30, 91, 168, 0.25);
}

.step-card h3 {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: var(--color-dark);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.step-card p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.step-tip {
    background-color: var(--color-blue-light);
    border-left: 3px solid var(--color-blue);
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-blue-dark);
}

.step-tip i {
    color: var(--color-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert {
    border-radius: 12px;
    padding: 2.75rem;
    display: flex;
    gap: 2rem;
    margin-top: 3.5rem;
}

.alert-critical {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFF9F9 100%);
    border-left: 6px solid var(--color-blue);
    box-shadow: 0 4px 15px rgba(30, 91, 168, 0.08);
    border-right: 1px solid #FFE8E8;
    border-top: 1px solid #FFE8E8;
    border-bottom: 1px solid #FFE8E8;
}

.alert-icon {
    font-size: 2.2rem;
    color: var(--color-blue);
    flex-shrink: 0;
    animation: pulse-alert 2s infinite;
}

@keyframes pulse-alert {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.alert-content h4 {
    color: var(--color-blue-dark);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.alert-content p {
    color: var(--color-gray-800);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 6rem 2rem;
    background-color: #F5F5F5;
}

.services .section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.services .section-header h2 {
    font-size: 2.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #E8E8E8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    border-color: var(--color-blue);
    box-shadow: 0 12px 32px rgba(30, 91, 168, 0.12);
    transform: translateY(-8px);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--color-gray-800);
}

.service-card p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
    justify-content: center;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 6rem 2rem;
    background: var(--color-gray-100);
}

.faq .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq .section-header h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-blue);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.faq-item strong {
    color: var(--color-blue);
}

.faq-item .btn {
    justify-content: center;
    width: 100%;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, var(--color-blue) 100%);
    color: white;
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(30, 91, 168, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-buttons .btn {
    min-width: 260px;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: var(--color-blue);
    border-color: white;
    font-weight: 700;
}

.cta-buttons .btn-primary:hover {
    background-color: #F0F0F0;
    border-color: #F0F0F0;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
    font-weight: 700;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--color-blue);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}.cta-buttons .btn-primary:hover {
    background-color: var(--color-blue-light);
    border-color: var(--color-blue-light);
    color: var(--color-blue);
}

.cta-secondary {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--color-blue);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--color-blue);
    padding-bottom: 0.75rem;
    display: inline-block;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--color-blue);
    padding-left: 0.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li::before {
    content: "▸ ";
    color: var(--color-blue);
    margin-right: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background-color: rgba(30, 91, 168, 0.1);
    border: 2px solid var(--color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background-color: var(--color-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 91, 168, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .accident-icons {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    .alert {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    h3 {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .accidents-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.accident-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   CALCULATOR SECTION
   ============================================ */
.calculator-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8edf3 100%);
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.calculator-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.calculator-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.calculator-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.calculator-form .form-group {
    margin-bottom: 1.25rem;
}

.calculator-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.calculator-form input,
.calculator-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.calculator-form input:focus,
.calculator-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.calculator-form .form-hint {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500 !important;
    color: var(--text-medium) !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    accent-color: var(--primary-color);
    transform: scale(1.2);
}

.calculator-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Calculator Results */
.calculator-results {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.5s ease-out;
}

.calculator-results.hidden {
    display: none;
}

.results-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.results-header i {
    font-size: 1.75rem;
}

.results-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.results-amount {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.amount-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.amount-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.results-details {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 600;
    color: var(--text-dark);
}

.results-disclaimer {
    display: flex;
    gap: 0.75rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.results-disclaimer i {
    color: #856404;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.results-disclaimer p {
    margin: 0;
    font-size: 0.875rem;
    color: #856404;
    line-height: 1.5;
}

/* Lead Capture Form */
.lead-capture {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.lead-capture h4 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.lead-capture > p {
    margin: 0 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.lead-form .form-group {
    margin-bottom: 0.75rem;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.recalculate-btn {
    margin-top: 0.5rem;
}

/* Calculator Info Cards */
.calculator-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    margin: 0 0 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.info-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Calculator Responsive */
@media (max-width: 768px) {
    .calculator-section {
        padding: 4rem 0;
    }
    
    .calculator-form-wrapper,
    .calculator-results {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .amount-value {
        font-size: 2rem;
    }
    
    .calculator-info {
        grid-template-columns: 1fr;
    }
}

