:root {
    --urgent-red: #DC2626;
    --urgent-orange: #F59E0B;
    --trust-blue: #2563EB;
    --success-green: #10B981;
    --dark: #1F2937;
    --light-bg: #F9FAFB;
    --white: #FFFFFF;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.4rem;
}

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

.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

/* Emergency Banner (Sticky) */
.emergency-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--urgent-red);
    color: var(--white);
    padding: 12px 0;
    z-index: 2000;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 1.5rem;
}

.banner-text {
    font-weight: 700;
    font-size: 1.1rem;
}

.banner-btn {
    padding: 10px 24px;
    background: var(--white);
    color: var(--urgent-red);
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.banner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Simple Navigation */
.nav-simple {
    position: sticky;
    top: 50px;
    background: var(--white);
    border-bottom: 2px solid var(--gray-light);
    padding: 15px 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
}

.nav-call {
    padding: 12px 24px;
    background: var(--trust-blue);
    color: var(--white);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-call:hover {
    background: var(--urgent-red);
    transform: translateY(-2px);
}

/* Hero Emergency */
.hero-emergency {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

/* Problem Panel */
.hero-problem-panel {
    background: var(--white);
    border: 3px solid var(--urgent-red);
    border-radius: 20px;
    padding: 40px;
}

.problem-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.hero-problem-panel h2 {
    text-align: center;
    color: var(--urgent-red);
    margin-bottom: 30px;
    font-size: 2rem;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

/* Solution Panel */
.hero-solution-panel {
    padding: 20px;
}

.solution-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-solution-panel h1 {
    margin-bottom: 20px;
}

.highlight-time {
    color: var(--urgent-red);
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-decoration-color: var(--urgent-orange);
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.usps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.usp {
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    font-weight: 600;
    color: var(--dark);
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-emergency {
    flex: 1;
    padding: 20px 30px;
    background: var(--urgent-red);
    color: var(--white);
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.btn-emergency:hover {
    background: #B91C1C;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.btn-whatsapp {
    flex: 1;
    padding: 20px 30px;
    background: #25D366;
    color: var(--white);
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.availability {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--success-green);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Services Grid */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--trust-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.service-icon.red {
    background: rgba(220, 38, 38, 0.1);
}

.service-icon.orange {
    background: rgba(245, 158, 11, 0.1);
}

.service-icon.blue {
    background: rgba(37, 99, 235, 0.1);
}

.service-icon.green {
    background: rgba(16, 185, 129, 0.1);
}

.service-icon.purple {
    background: rgba(139, 92, 246, 0.1);
}

.service-icon.teal {
    background: rgba(20, 184, 166, 0.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--trust-blue);
}

.service-note {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    border: 2px dashed var(--success-green);
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    border: 3px solid var(--trust-blue);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--urgent-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.process-step h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2.5rem;
    color: var(--trust-blue);
    font-weight: 900;
}

/* Local Area */
.local-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.local-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--trust-blue);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.local-left h2 {
    margin-bottom: 20px;
}

.local-lead {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.local-cities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.city {
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
    font-weight: 600;
}

.local-note {
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
}

.benefits-box {
    background: var(--white);
    border: 3px solid var(--trust-blue);
    border-radius: 20px;
    padding: 40px;
}

.benefits-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 2px solid var(--light-bg);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefits-list p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Pricing Transparent */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border: 3px solid var(--gray-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--trust-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--success-green);
    border-width: 4px;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-card h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.price-big {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--trust-blue);
    margin-bottom: 10px;
}

.price-desc {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.price-includes {
    list-style: none;
    text-align: left;
}

.price-includes li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
}

.price-includes li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--dark);
    border: 3px solid var(--success-green);
}

/* Mega Contact */
.contact-mega {
    background: linear-gradient(135deg, var(--trust-blue) 0%, var(--dark) 100%);
    color: var(--white);
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-header h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-methods-big {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-big {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.contact-big:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-big.phone {
    border-color: var(--urgent-red);
}

.contact-big.phone:hover {
    border-color: var(--urgent-red);
}

.contact-big.whatsapp {
    border-color: #25D366;
}

.contact-big.whatsapp:hover {
    border-color: #25D366;
}

.contact-big.email {
    border-color: var(--trust-blue);
}

.contact-big.email:hover {
    border-color: var(--trust-blue);
}

.contact-big-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.contact-big-content {
    text-align: left;
    flex: 1;
}

.contact-big-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.contact-big-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
}

.contact-hours {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

.hours-item {
    color: var(--white);
}

.emergency-hours {
    color: var(--urgent-orange);
    font-weight: 700;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1500;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Footer */
.footer-simple {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-simple p {
    margin-bottom: 10px;
}

.footer-simple a {
    color: var(--urgent-orange);
    text-decoration: underline;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .usps {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .local-content {
        grid-template-columns: 1fr;
    }

    .local-cities {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .contact-hours {
        flex-direction: column;
        gap: 15px;
    }

    .section {
        padding: 60px 0;
    }
}
