/* Variables CSS */
:root {
    --primary-color: #d32f2f;
    --secondary-color: #1976d2;
    --dark-color: #212121;
    --light-color: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-urgence {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-urgence:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #667eea;
    background-image: linear-gradient(135deg, rgba(102, 126, 234, 0.92) 0%, rgba(118, 75, 162, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,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"></path></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--success-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Urgence Banner */
.urgence-banner {
    background: var(--warning-color);
    color: var(--white);
    padding: 1rem 0;
    text-align: center;
}

.urgence-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.urgence-banner i {
    font-size: 1.5rem;
}

.btn-banner {
    background: var(--white);
    color: var(--warning-color);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-banner:hover {
    transform: scale(1.05);
}

/* Section Styles */
section {
    padding: 5rem 0;
    scroll-margin-top: 90px;
}

.section-title {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    background: var(--light-color);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card.featured {
    border: 3px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e91e63);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.service-list {
    list-style: none;
    margin-top: 1.5rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.service-list i {
    color: var(--success-color);
}

/* Process Section */
.process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(211, 47, 47, 0.1);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), #42a5f5);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step p {
    color: var(--text-light);
}

/* Zones Section */
.zones {
    background: var(--light-color);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.zone-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.zone-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.zone-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Tarifs Section */
.tarifs {
    background: var(--white);
}

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

.tarif-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.tarif-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tarif-card.popular {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.tarif-card h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.tarif-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.tarif-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.tarif-list i {
    color: var(--success-color);
}

.tarifs-info {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--text-color);
}

.tarifs-info i {
    color: var(--warning-color);
    margin-right: 10px;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(135deg, var(--primary-color), #e91e63);
    color: var(--white);
}

.why-us .section-title {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.why-card h3 {
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

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

.info-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-card span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section p {
    color: #bdbdbd;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #bdbdbd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #424242;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdbdbd;
    margin-bottom: 1rem;
}

.contact-list i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #424242;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #b71c1c;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .btn-urgence {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    section {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .services-grid,
    .zones-grid,
    .tarifs-grid,
    .why-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .tarif-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .solution-step {
        padding: 1.75rem 1.25rem;
    }

    .solution-step .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.zone-card,
.tarif-card,
.why-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* Navigation active state */
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    width: 100%;
}

/* Service pages specific styles */
.service-hero {
    min-height: 60vh;
}

.problem-section,
.identification,
.solution-section,
.techniques-section,
.faq-section,
.prevention-section,
.advantages-section,
.insects-section,
.detail-section,
.methods-comparison,
.nest-types,
.season-section,
.lifecycle-section,
.hiding-spots,
.comparison-grid {
    background: var(--white);
    padding: 4rem 0;
}

.problem-section:nth-child(even),
.identification:nth-child(even),
.detail-section.alt {
    background: var(--light-color);
}

.problem-grid,
.signs-grid,
.techniques-grid,
.prevention-grid,
.advantages-grid,
.insects-grid,
.spots-grid,
.nest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.problem-card,
.sign-card,
.technique-card,
.prevention-card,
.advantage-card,
.insect-card,
.spot-card,
.nest-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.problem-card:hover,
.sign-card:hover,
.technique-card:hover,
.prevention-card:hover,
.advantage-card:hover,
.insect-card:hover,
.spot-card:hover,
.nest-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.problem-card i,
.technique-card i,
.prevention-card i,
.advantage-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sign-icon,
.insect-icon,
.nest-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e91e63);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.solution-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-left: 2rem;
}

.solution-steps::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: calc(2rem + 40px);
    width: 3px;
    background: linear-gradient(180deg, rgba(211, 47, 47, 0.45), rgba(25, 118, 210, 0.45));
    border-radius: 3px;
    pointer-events: none;
}

.solution-step {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fff7f7 100%);
    padding: 2.5rem 2.5rem 2.5rem calc(80px + 4rem);
    border-radius: calc(var(--border-radius) * 1.5);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(211, 47, 47, 0.08);
    overflow: hidden;
    z-index: 0;
}

.solution-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.12), rgba(25, 118, 210, 0.12));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.solution-step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
}

.solution-step:hover::before {
    opacity: 1;
}

.solution-step:hover .step-number {
    box-shadow: 0 12px 30px rgba(211, 47, 47, 0.3);
}

.solution-step .step-number {
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e91e63);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.25);
    border: 6px solid var(--white);
    z-index: 1;
}

.solution-step .step-number::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.25) 0%, rgba(211, 47, 47, 0) 65%);
    z-index: -1;
}

.solution-step:last-child .step-number::after {
    background: radial-gradient(circle, rgba(76, 175, 80, 0.25) 0%, rgba(76, 175, 80, 0) 65%);
}

.solution-step:last-child .step-number {
    background: linear-gradient(135deg, var(--success-color), #66bb6a);
}

.solution-step:last-child:hover .step-number {
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.3);
}

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

.step-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.step-content > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    margin-top: 1rem;
}

.step-content ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.step-content ul li i {
    color: var(--success-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: var(--light-color);
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0.5rem 0;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #e91e63);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.alert-box {
    background: #fff3e0;
    border-left: 4px solid var(--warning-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.alert-box i {
    color: var(--warning-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.comparison-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.comparison-card.highlight {
    border: 3px solid var(--primary-color);
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.comparison-features .feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.comparison-features .feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.insect-card.featured {
    border: 3px solid var(--primary-color);
}

.insect-info {
    list-style: none;
    margin: 1.5rem 0;
}

.insect-info li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.insect-info i {
    color: var(--primary-color);
}

.species {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.cockroach-types,
.signs-box,
.comparison-mites {
    margin-top: 1.5rem;
}

.type-item,
.mite-type {
    background: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.type-item h4,
.mite-type h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.method-steps {
    list-style: none;
}

.method-steps li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.method-steps strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.5rem;
}

.price-banner {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.price-banner h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.season-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.season-block {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.season-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.season-badge.optimal {
    background: var(--success-color);
    color: var(--white);
}

.season-badge.good {
    background: var(--secondary-color);
    color: var(--white);
}

.season-badge.urgent {
    background: var(--primary-color);
    color: var(--white);
}

.season-badge.info {
    background: #757575;
    color: var(--white);
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.lifecycle-stage {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.lifecycle-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

.stage-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.spot-card {
    text-align: center;
}

.spot-card.priority-high {
    border: 3px solid var(--primary-color);
}

.spot-card.priority-medium {
    border: 2px solid var(--warning-color);
}

.spot-card.priority-low {
    border: 2px solid #9e9e9e;
}

.spot-card h3 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.spot-card ul {
    list-style: none;
    text-align: left;
}

.spot-card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.method-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.method-card.featured {
    border: 3px solid var(--primary-color);
}

.method-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.pros h4 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.cons h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros ul li,
.cons ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.pros ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.cons ul li::before {
    content: "−";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.method-price {
    text-align: center;
    padding: 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .detail-content,
    .method-details,
    .lifecycle-grid {
        grid-template-columns: 1fr;
    }

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

    .solution-steps {
        padding-left: 1.5rem;
    }

    .solution-steps::before {
        left: calc(1.5rem + 40px);
    }

    .solution-step {
        padding: 2.5rem 2rem 2.5rem calc(80px + 3rem);
    }

    .price-banner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 50vh;
    }

    .solution-steps {
        padding-left: 0;
    }

    .solution-steps::before {
        display: none;
    }

    .solution-step {
        padding: 2rem 1.5rem;
    }

    .solution-step .step-number {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 1.25rem;
        border-width: 4px;
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .solution-step .step-number::after {
        display: none;
    }

    .insects-grid,
    .problem-grid,
    .signs-grid {
        grid-template-columns: 1fr;
    }
}
