/* ============================================
   ANIMAL FACT SHEETS - SPECIFIC STYLES
   Dératisation Bruxelles
   ============================================ */

/* ============================================
   ANIMAL HERO SECTION
   ============================================ */

.animal-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 90px;
}

.animal-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(220, 38, 38, 0.6) 100%);
    z-index: 1;
}

.animal-hero .container {
    position: relative;
    z-index: 2;
}

.animal-hero__content {
    text-align: center;
    color: var(--white-color);
    max-width: 800px;
    margin: 0 auto;
}

.animal-hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.animal-hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.animal-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */

.breadcrumb {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 90px;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.breadcrumb__item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--gray-medium);
}

.breadcrumb__item a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb__item a:hover {
    color: var(--primary-color);
}

.breadcrumb__item--active {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   ANIMAL SECTION (REUSABLE)
   ============================================ */

.animal-section {
    padding: 80px 0;
    position: relative;
}

.animal-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.animal-section__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.animal-section__icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.animal-section__icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.animal-section__title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 0;
}

.animal-section__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.animal-section__content--two-col {
    grid-template-columns: 1fr 1fr;
}

.animal-section__content--image-right {
    grid-template-columns: 1.5fr 1fr;
}

.animal-section__content--image-left {
    grid-template-columns: 1fr 1.5fr;
}

.animal-section__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.animal-section__text p {
    margin-bottom: 1.5rem;
}

.animal-section__text ul {
    list-style: none;
    padding: 0;
}

.animal-section__text ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-left: 0;
}

.animal-section__text ul li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.animal-section__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.animal-section__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.animal-section__image:hover img {
    transform: scale(1.05);
}

/* ============================================
   SIGNS OF INFESTATION GRID
   ============================================ */

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sign-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.sign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.sign-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.sign-card__icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.sign-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.sign-card__description {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.process-timeline {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: center;
}

.process-step__number {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.process-step__content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.process-step__content:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.process-step__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.process-step__description {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* ============================================
   PREVENTION TIPS GRID
   ============================================ */

.prevention-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.prevention-tip {
    background: rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(16, 185, 129, 0.3);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.prevention-tip--avoid {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
}

.prevention-tip__icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.prevention-tip--avoid .prevention-tip__icon {
    background: rgba(220, 38, 38, 0.2);
}

.prevention-tip__icon i {
    font-size: 2rem;
    color: #10B981;
}

.prevention-tip--avoid .prevention-tip__icon i {
    color: var(--primary-color);
}

.prevention-tip__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.prevention-tip__list {
    list-style: none;
    padding: 0;
}

.prevention-tip__list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.prevention-tip__list li::before {
    content: '✓';
    color: #10B981;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.prevention-tip--avoid .prevention-tip__list li::before {
    content: '✗';
    color: var(--primary-color);
}

/* ============================================
   ANIMAL CTA SECTION
   ============================================ */

.animal-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #B91C1C 100%);
    position: relative;
    overflow: hidden;
}

.animal-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.animal-cta__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.animal-cta__title {
    font-size: 2.5rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.animal-cta__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.animal-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ============================================
   RELATED SERVICES
   ============================================ */

.related-services {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.related-services__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.related-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.related-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.related-service-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-service-card:hover .related-service-card__image img {
    transform: scale(1.1);
}

.related-service-card__title {
    padding: 1.5rem;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin: 0;
}

.related-service-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.related-service-card__link i {
    transition: var(--transition);
}

.related-service-card:hover .related-service-card__link i {
    transform: translateX(5px);
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */

.mobile-sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
}

.mobile-sticky-cta.show {
    bottom: 0;
}

.mobile-sticky-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .animal-hero__title {
        font-size: 2.5rem;
    }
    
    .animal-section__content--two-col,
    .animal-section__content--image-right,
    .animal-section__content--image-left {
        grid-template-columns: 1fr;
    }
    
    .prevention-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .animal-hero {
        min-height: 50vh;
        margin-top: 70px;
    }
    
    .animal-hero__title {
        font-size: 2rem;
    }
    
    .animal-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .animal-hero__cta {
        flex-direction: column;
    }
    
    .breadcrumb {
        margin-top: 70px;
    }
    
    .animal-section {
        padding: 60px 0;
    }
    
    .animal-section__header {
        flex-direction: column;
        text-align: center;
    }
    
    .animal-section__title {
        font-size: 1.75rem;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-step__number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .signs-grid {
        grid-template-columns: 1fr;
    }
    
    .related-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .animal-cta__title {
        font-size: 1.75rem;
    }
    
    .animal-cta__actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .animal-hero__title {
        font-size: 1.5rem;
    }
    
    .related-services__grid {
        grid-template-columns: 1fr;
    }
}
