@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Primary Color Palette */
    --primary: #59AD42; /* Updated Green */
    --primary-dark: #3a7c2a;
    --primary-light: #7cb342;
    --primary-blue: #0058A5; /* Added Blue */
    --primary-blue-dark: #00427c;
    --secondary: #FBC02D; /* Gold/Yellow from logo */
    --accent: #2ecc71;
    
    /* Neutral Colors */
    --dark: #0f172a;
    --dark-lighter: #1e293b;
    --gray-dark: #475569;
    --gray: #94a3b8;
    --gray-light: #f1f5f9;
    --white: #ffffff;
    
    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;
    --section-padding: 100px 20px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-lighter);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link i {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
    z-index: 1002;
}

.search-icon {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark-lighter);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 95, 42, 0.3);
}

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

.btn-secondary:hover {
    background: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.3);
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: var(--header-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    text-wrap: balance;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--gray-dark);
    font-weight: 500;
}

/* Generic Section Styles */
.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title .divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

/* Pest Grid */
.pests-title-bar {
    background: var(--primary);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 60px;
}

.pests-title-bar h2 {
    color: var(--white);
    margin: 0;
    font-size: 2.5rem;
}

.pests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    padding-top: 20px;
}

.pest-card {
    text-align: center;
    transition: var(--transition);
}

.pest-card:hover {
    transform: translateY(-10px);
}

.pest-icon-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pest-icon-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid var(--primary);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pest-icon-wrapper img, .pest-icon-wrapper svg {
    width: 180px; /* Popping out */
    height: 180px;
    position: absolute;
    z-index: 2;
    transition: var(--transition);
    pointer-events: none;
}

.pest-card:hover .pest-icon-wrapper img, .pest-card:hover .pest-icon-wrapper svg {
    transform: scale(1.1);
}

.pest-card:hover .pest-icon-circle {
    border-color: var(--primary-blue);
    background: var(--gray-light);
}

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

.pest-card p {
    font-size: 0.95rem;
    color: var(--gray-dark);
}

/* Testimonials */
.testimonials {
    background: #f1f5f9; /* Lighter grey from image */
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

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

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--dark-lighter);
    margin-bottom: 30px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

/* Procedures Section */
.procedures {
    background: var(--white);
}

.procedure-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.procedure-item:last-child {
    margin-bottom: 0;
}

.procedure-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.procedure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.procedure-text h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.procedure-text p {
    margin-bottom: 12px;
}

.procedure-text strong {
    color: var(--primary);
}

/* "¿A quiénes servimos?" Section */
.sectors {
    background: var(--gray-light);
}

.sectors-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.sector-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sector-item strong {
    color: var(--dark);
}

.sectors-gallery {
    position: relative;
    height: 500px;
}

.sectors-gallery img {
    position: absolute;
    width: 80%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
}

.gallery-1 { top: 0; left: 0; z-index: 1; }
.gallery-2 { top: 150px; right: 0; z-index: 2; }

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1eb954;
}

/* Footer Styles */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 24px;
}

.footer-description {
    color: var(--gray);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--gray);
}

.footer-link:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--dark-lighter);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contact Info specific to footer */
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray);
}

/* Service Detail Pages */
.service-hero {
    height: 60vh;
    min-height: 400px;
}

.service-content {
    padding: 80px 0;
}

.species-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.species-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.species-item:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.species-item:nth-child(even) .species-image {
    order: 2;
}

.species-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.species-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.species-detail {
    margin-bottom: 16px;
}

.species-detail strong {
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

/* Problem Banner */
.problem-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/img/inicio/footer-cta.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    border-radius: var(--radius);
    margin: 40px auto;
    max-width: var(--container-max);
}

.problem-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.problem-banner p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .header .container {
        padding: 0 30px;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        z-index: 1001;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-actions {
        display: none;
    }
    .hero h1 { font-size: 2.8rem; }
    .footer-main-new { grid-template-columns: 1fr 1fr; }
    .procedure-item, .species-item { grid-template-columns: 1fr; gap: 30px; }
    .servimos-gallery-new {
        height: 400px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .stats-grid, .pests-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .hero { min-height: 500px; }
    .sectors-content { grid-template-columns: 1fr; }
    .sectors-gallery { height: 400px; display: none; }
    
    .procedures-grid {
        grid-template-columns: 1fr !important;
    }
    .procedures-images {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        margin-bottom: 40px;
    }
}

/* --- New Component Styles --- */

/* Navigation Dropdown */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    list-style: none;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 15px;
    color: var(--dark-lighter);
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--gray-light);
    color: var(--primary-blue);
    padding-left: 20px;
}

.nav-link i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: var(--transition);
}

.nav-item-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Procedimientos MIP - New Layout */
.procedures-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 24px 0;
    text-align: center;
    width: 100%;
    margin-top: 80px;
}

.procedures-header h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin: 0;
    color: var(--white);
    letter-spacing: 1px;
}

.procedures-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.procedures-images {
    position: sticky;
    top: 100px;
    height: 600px; /* Containment height */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.procedures-images .img-main {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 12px solid var(--primary-blue);
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.procedures-images .img-sub {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 10px solid var(--primary-blue);
    overflow: hidden;
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}

.procedures-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decoration-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.dot-green {
    width: 70px;
    height: 70px;
    background: var(--primary);
    top: 40px;
    right: 60px;
}

.dot-yellow {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    bottom: 100px;
    left: 10px;
}

.procedures-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.procedure-detail strong {
    color: var(--dark);
    display: block;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.procedure-detail p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ¿A quiénes servimos? - New Layout */
.servimos-section {
    padding: 100px 0 120px;
    background: var(--white);
}

.servimos-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--dark);
}

.servimos-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.servimos-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.servimos-item {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.5;
}

.servimos-item strong {
    color: var(--dark);
    font-weight: 700;
}

.servimos-gallery-new {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.servimos-gallery-new img {
    border-radius: 40px; /* Large rounded corners as per image */
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    position: absolute;
    width: 380px; /* Match screenshot square feel */
    height: 380px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: none;
    transition: var(--transition);
}

.servimos-img-1 {
    top: 0;
    left: 0;
    z-index: 1;
}

.servimos-img-2 {
    bottom: 0;
    right: 0;
    z-index: 2;
}

.servimos-img-2:hover, .servimos-img-1:hover {
    transform: scale(1.05);
    z-index: 5;
}

.servimos-gallery-new {
    position: relative;
    height: 600px; /* Sufficient for overlapping squares */
    width: 100%;
}

/* Contact Page Enhancements */
.contact-page-wrapper {
    background: #f8fafc;
    padding: 60px 0 120px;
}

.contact-header-new {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header-new h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-header-new p {
    font-size: 1.2rem;
    color: var(--gray-dark);
}

.contact-container-nested {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow-lg);
}

.contact-info-panel {
    flex: 0 0 450px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
}

.contact-form-panel {
    flex: 1;
    padding: 80px;
    background: var(--white);
}

.info-panel-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.info-panel-subtitle {
    opacity: 0.9;
    margin-bottom: 80px;
    font-size: 1.15rem;
}

.contact-method-list {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-method i {
    font-size: 2rem;
    color: var(--white);
}

.contact-method span {
    font-size: 1.1rem;
}

.decorative-circles {
    position: absolute;
    bottom: -100px;
    right: -100px;
}

.circle {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    bottom: 0;
    right: 0;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 30px;
    right: 30px;
    opacity: 0.9;
}

.circle-3 {
    width: 180px;
    height: 180px;
    background: var(--primary);
    bottom: 70px;
    right: 70px;
    opacity: 0.8;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.form-group-new {
    display: flex;
    flex-direction: column;
}

.form-group-new label {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group-new input, .form-group-new textarea {
    border: none;
    border-bottom: 2px solid #e2e8f0;
    padding: 12px 0;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background: transparent;
}

.form-group-new input::placeholder, .form-group-new textarea::placeholder {
    color: #cbd5e1;
}

.form-group-new input:focus, .form-group-new textarea:focus {
    border-bottom-color: var(--primary-blue);
}

.radio-group-label {
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
    color: var(--dark);
}

.radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 60px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.radio-option input {
    accent-color: var(--primary-blue);
    width: 20px;
    height: 20px;
}

.btn-send-wrapper {
    overflow: hidden;
}

.btn-send {
    background: var(--primary);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    float: right;
    transition: var(--transition);
    font-size: 1.05rem;
}

.btn-send:hover {
    background: #4a9136;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(89, 173, 66, 0.4);
}

/* Mobile Adjustments for new components */
@media (max-width: 991px) {
    .procedures-grid, .servimos-grid, .contact-container-nested {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .contact-info-panel {
        flex: none;
        padding: 50px;
    }
    .contact-form-panel {
        padding: 50px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .procedures-images {
        height: 450px;
    }
    .procedures-images .img-main {
        width: 300px;
        height: 300px;
    }
    .procedures-images .img-sub {
        width: 200px;
        height: 200px;
    }
    .servimos-gallery-new {
        display: none;
    }
}

/* --- New Footer Design (Image 3) --- */
.footer {
    position: relative;
    z-index: 100;
    background: #333333; /* Darker neutral grey from image */
    color: #e0e0e0;
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
}

.footer-main-new {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 2fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-col h4 {
    color: #999999;
    font-size: 0.85rem;
    text-transform: none;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.footer-info-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
}

.footer-social-icons a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.footer-brand-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-logo-large {
    width: 280px; /* Large logo as per image */
    margin-bottom: 5px;
}

.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.footer-brand-tagline {
    font-size: 1rem;
    color: #cccccc;
    margin: 0;
}

.footer-bottom-new {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: #666666;
    font-size: 0.85rem;
}

/* Pest Control Grid - Shared Styles for Links */
.pest-card-link {
    display: block;
    cursor: pointer;
}

.pest-card-link:hover .pest-icon-circle {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.pest-icon-circle svg {
    width: 70%;
    height: 70%;
    transition: var(--transition);
}

/* Stats Section after About */
.stats-reordered {
    background: #f8fafc;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 991px) {
    .footer-main-new {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .footer-brand-side {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer-main-new {
        grid-template-columns: 1fr;
    }
}