/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Colors */
:root {
    --primary-blue: #4c6d86;
    --accent-blue: #2a4b5d;
    --bg-light: #f4f7f9;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #666666;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-blue);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue);
}

.nav-phone {
    background-color: rgba(76, 109, 134, 0.1);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(76, 109, 134, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background-color: rgba(76, 109, 134, 0.2);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
    margin-left: 15px;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.badge {
    display: inline-block;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--primary-blue);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-images {
    flex: 1;
    position: relative;
    height: 500px;
}

.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 380px;
    object-fit: cover;
    border-radius: 24px;
    border-top-right-radius: 80px;
}

.hero-img-secondary {
    position: absolute;
    bottom: 20px;
    left: -20px;
    width: 60%;
    height: 200px;
    object-fit: cover;
    border-radius: 100px;
    border: 8px solid var(--bg-light);
}

/* Trusted Team Section */
.trusted-team {
    background-color: var(--primary-blue);
    padding: 60px 0;
    color: white;
}

.trusted-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.trusted-text {
    flex: 1;
    text-align: center;
}

.trusted-text h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.trusted-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.trusted-stats {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.stat-box {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.stat-info h3 {
    font-size: 1.3rem;
    margin-bottom: 2px;
    line-height: 1.1;
    font-weight: 800;
}

.stat-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    line-height: 1.15;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(76, 109, 134, 0.85);
    backdrop-filter: blur(4px);
    color: white;
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--primary-blue);
    color: white;
    padding: 0;
    margin: 60px 0;
}

.why-container {
    display: flex;
    align-items: stretch;
}

.why-content {
    flex: 1;
    padding: 100px 60px;
}

.why-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-subtitle {
    color: #8da9b0;
    margin-bottom: 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    border: 1.6px solid #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-text p {
    color: #8da9b0;
    font-size: 0.95rem;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .why-content {
        padding-left: 20px;
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
}

.header-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    background-color: white;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
}

/* CTA Banner Section */
.cta-banner {
    background-color: var(--primary-blue);
    background-image: linear-gradient(rgba(76, 109, 134, 0.9), rgba(76, 109, 134, 0.9)), url('assets/hero_spraying.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-banner p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-grid.single-testi {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.testi-grid.single-testi .testi-card {
    width: 100%;
}

.testi-card {
    background-color: var(--primary-blue);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-10px);
}

.testi-quote {
    color: var(--accent-blue);
    font-size: 4rem;
    font-family: serif;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testi-card p {
    color: #d0d0d0;
    margin-top: 30px;
    margin-bottom: 30px;
    font-style: italic;
    min-height: 80px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.author-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #8da9b0;
    min-height: auto;
    font-style: normal;
}

/* Blog Section */
.blog {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
    background-color: var(--primary-blue);
    color: white;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.blog-content p {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: #fff;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.faq-image {
    flex: 1;
    position: relative;
}

.faq-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 500px;
}

.faq-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-blue);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-experience .exp-icon {
    font-size: 2rem;
}

.faq-experience .exp-text {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
}

.faq-content {
    flex: 1;
}

.faq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.accordion-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.accordion-item:not(.active) .accordion-header h4 {
    color: var(--text-dark);
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 400;
}

.accordion-body {
    padding: 0 25px 25px;
    display: none;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-body p {
    color: #e0e0e0;
    margin: 0;
}

/* Footer Section */
.site-footer {
    background-color: var(--primary-blue);
    color: white;
    padding-top: 150px;
    position: relative;
}

.newsletter-wrapper {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
}

.newsletter-container {
    background-color: white;
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
}

.nl-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-blue);
}

.nl-icon {
    font-size: 1.5rem;
}

.nl-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.nl-title h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.nl-form {
    display: flex;
    gap: 10px;
    background-color: #f5f5f5;
    padding: 6px;
    border-radius: 40px;
}

.nl-form input {
    border: none;
    background: transparent;
    padding: 10px 20px;
    outline: none;
    font-size: 1rem;
    min-width: 250px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.site-footer,
.site-footer p,
.site-footer h4,
.site-footer h3,
.site-footer a,
.site-footer li,
.site-footer i,
.brand-col p,
.footer-col h4,
.footer-col ul li a,
.contact-col ul li,
.contact-col ul li i,
.footer-bottom {
    color: #ffffff !important;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-blue);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.contact-col ul li {
    color: #ffffff;
    display: flex;
    gap: 10px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

@media (max-width: 992px) {
    .navbar .container {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 15px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-container,
    .trusted-container,
    .why-container,
    .faq-container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero p {
        margin: 0 auto 32px;
    }

    .hero-images {
        width: 100%;
        height: auto;
        margin-top: 40px;
        position: static;
    }

    .hero-img-main {
        width: 100%;
        height: auto;
        max-height: 400px;
        position: static;
        border-radius: 20px;
    }

    .hero-img-secondary {
        display: none;
    }

    .trusted-stats {
        flex-direction: column;
        width: 100%;
    }

    .stat-box {
        width: 100%;
    }

    .why-content {
        padding: 60px 20px;
        text-align: left;
    }

    .feature-item {
        align-items: flex-start;
        text-align: left;
    }

    .feature-text {
        text-align: left;
    }

    .why-image {
        width: 100%;
        height: 400px;
    }

    .services-grid,
    .testi-grid,
    .blog-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 20px;
    }

    .nl-form {
        width: 100%;
        max-width: 400px;
    }

    .nl-form input {
        min-width: 0;
        flex: 1;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .faq-image {
        width: 100%;
        height: 400px;
        position: relative;
    }

    .faq-experience {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: fit-content !important;
        bottom: 20px !important;
        transform: none !important;
    }

    .trusted-container,
    .faq-container,
    .about-container,
    .contact-grid {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .faq-image {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
    }

    .faq-experience {
        position: absolute !important;
        left: 50% !important;
        bottom: 20px !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        margin: 0 !important;
        width: max-content !important;
        z-index: 10 !important;
    }

    section h1,
    section h2,
    section h3,
    .section-header h2,
    .about-text h2,
    .contact-info h2,
    .faq-content h2,
    .cta-banner h2,
    .trusted-text h2,
    .hero h1,
    .page-hero h1 {
        font-size: 2rem !important;
        text-align: center !important;
        line-height: 1.2 !important;
        margin: 0 auto 15px !important;
        display: block !important;
        width: 100% !important;
    }

    .trusted-text p,
    .faq-content p,
    .about-text p,
    .contact-info p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 768px) {

    .services-grid,
    .testi-grid,
    .blog-grid,
    .stats-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .trusted-text h2,
    .section-header h2,
    .why-content h2,
    .cta-banner h2,
    .faq-content h2,
    .blog-section h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 2rem !important;
        text-align: center !important;
        line-height: 1.2 !important;
        color: var(--primary-blue) !important;
    }

    .section-header,
    .trusted-text,
    .why-content,
    .cta-banner,
    .faq-content,
    .about-text,
    .contact-info {
        text-align: center !important;
    }

    .badge {
        margin: 0 auto 15px !important;
        display: table !important;
        /* Center the badge itself if it's inline-block */
    }

    .nav-phone {
        display: none !important;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-action .btn-primary {
        display: none;
        /* Hide button on small screens to save space, or move into nav */
    }

    .hero-images {
        height: auto;
        margin-top: 40px;
        width: 100%;
        position: static;
    }

    .hero-img-main {
        height: 300px;
        position: static;
        border-radius: 20px;
    }

    .hero-img-secondary {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }

    .newsletter-wrapper {
        top: -80px;
    }

    .site-footer {
        padding-top: 100px;
    }

    .newsletter-wrapper {
        top: -60px;
    }

    .site-footer {
        padding-top: 80px;
    }
}

/* Page Hero (About Us, Services, Contact) */
.page-hero {
    background-color: var(--primary-blue);
    color: white;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(rgba(76, 109, 134, 0.8), rgba(76, 109, 134, 0.8)), url('assets/hero_spraying.png');
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.page-hero p {
    color: #ffffff;
    font-weight: 500;
}

.page-hero p a {
    color: #ffffff;
    text-decoration: none;
}

.page-hero p a:hover {
    text-decoration: underline;
}

/* About Story Section */
.about-story {
    padding: 100px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Mission & Vision Section */
.mission-vision {
    padding-bottom: 150px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-icon i {
    color: var(--accent-blue);
}

.stat-circle i {
    color: var(--accent-blue);
}

.logo-icon i {
    color: var(--accent-blue);
}

.badge i {
    color: var(--accent-blue);
    margin-right: 8px;
}

body {
    scroll-behavior: smooth;
}

/* Services Page Styles */
.services-intro {
    padding: 80px 0;
    text-align: center;
}

.services-full-grid {
    padding-bottom: 100px;
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-card p a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-card p a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.map-container {
    height: 400px;
    background: #e5e5e5;
    border-radius: 20px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.mv-card {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 5px solid var(--accent-blue);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2rem !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }
}

/* ============================================================
   Scroll Reveal Animations
============================================================ */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================================
   WhatsApp Floating Widget
============================================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
}

.whatsapp-popup.active {
    display: block;
    animation: popupFade 0.3s ease;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wa-header {
    background-color: #25d366;
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.wa-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.wa-body {
    padding: 20px;
    background-color: #f0f0f0;
}

.wa-message {
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    border-top-left-radius: 0;
    font-size: 0.95rem;
    color: #333;
}

.wa-footer {
    padding: 16px 20px;
    text-align: center;
}

.wa-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.wa-btn:hover {
    background-color: #1ebe5d;
}

/* ============================================================
   Form Feedback Messages
============================================================ */
.form-message {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================================
   Accessibility
============================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   Secondary Button
============================================================ */
.btn-secondary {
    background-color: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
    background-color: var(--accent-blue);
    color: white;
}

/* ============================================================
   WordPress Nav — active item from WP menu classes
============================================================ */
.nav-links li.current-menu-item>a,
.nav-links li.current_page_item>a,
.nav-links li.current-menu-ancestor>a {
    color: var(--accent-blue);
    font-weight: 700;
}

.nav-links ul,
.nav-links li {
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ============================================================
   Blog Index
============================================================ */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 28px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card-content h2 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.blog-card-content h2 a:hover {
    color: var(--accent-blue);
}

.no-posts {
    padding: 60px 0;
}

/* Pagination */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background-color: var(--primary-blue);
    color: white;
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 18px;
    border-radius: 30px;
}

/* ============================================================
   Extra responsive fixes
============================================================ */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-popup {
        width: 270px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr !important;
    }
}

/* FINAL MOBILE OVERRIDES */
@media (max-width: 992px) {

    .trusted-container,
    .faq-container,
    .about-container,
    .contact-grid,
    .testi-grid,
    .blog-grid {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .faq-image {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
    }

    .faq-experience {
        position: absolute !important;
        left: 50% !important;
        bottom: 20px !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        margin: 0 !important;
        width: max-content !important;
        z-index: 10 !important;
    }

    section h1,
    section h2,
    section h3,
    .section-header h2,
    .about-text h2,
    .contact-info h2,
    .faq-content h2,
    .cta-banner h2,
    .trusted-text h2,
    .hero h1,
    .page-hero h1,
    .blog-section h2 {
        font-size: 2rem !important;
        text-align: center !important;
        line-height: 1.2 !important;
        margin: 0 auto 15px !important;
        display: block !important;
        width: 100% !important;
    }

    .trusted-text p,
    .faq-content p,
    .about-text p,
    .contact-info p,
    .hero p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .site-footer,
    .site-footer p,
    .site-footer h4,
    .site-footer h3,
    .site-footer a,
    .site-footer li,
    .site-footer i,
    .brand-col p,
    .footer-col h4,
    .footer-col ul li a,
    .contact-col ul li,
    .contact-col ul li i,
    .footer-bottom {
        color: #ffffff !important;
    }

    .newsletter-wrapper {
        top: -60px !important;
    }

    .site-footer {
        padding-top: 80px !important;
    }
}

@media (max-width: 992px) {
    .faq-image img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }
}

/* FINAL FINAL OVERRIDES */
@media (max-width: 992px) {
    .faq-experience {
        position: relative !important;
        margin: 20px auto 0 !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        bottom: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: fit-content !important;
    }

    .site-footer a,
    .site-footer p,
    .site-footer span,
    .site-footer li {
        color: #ffffff !important;
        text-decoration: none !important;
    }

    .footer-main {
        padding-bottom: 20px !important;
    }

    .footer-bottom {
        padding: 15px 0 !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem !important;
        color: #ffffff !important;
    }

    .trusted-text h2,
    .trusted-text p,
    .why-content h2,
    .why-subtitle,
    .cta-banner h2,
    .cta-banner p {
        color: #ffffff !important;
    }
}

/* Refined Mobile Enhancements (v3) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem !important;
        color: var(--primary-blue) !important;
        text-align: center !important;
    }

    .feature-text h4 {
        font-size: 1.4rem !important;
    }

    .feature-text p {
        color: #ffffff !important;
    }

    .faq-experience {
        position: absolute !important;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        margin: 0 !important;
        width: max-content !important;
        z-index: 10 !important;
    }

    .trusted-text h2,
    .trusted-text p,
    .why-content h2,
    .why-subtitle,
    .cta-banner h2,
    .cta-banner p {
        color: #ffffff !important;
    }
}

/* Services Image Visibility (v2 Refinements) */
.service-card {
    height: 450px !important;
}

.service-card img {
    transition: transform 0.8s ease !important;
}

.service-card:hover img {
    transform: scale(1.1) !important;
}

.service-content {
    bottom: 30px !important;
    background: rgba(76, 109, 134, 0.9) !important;
    backdrop-filter: blur(8px) !important;
    padding: 25px 20px !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Why Choose Us Alignment Fix */
.why-content {
    padding: 100px 0 !important;
}

@media (max-width: 1200px) {
    .why-content {
        padding: 80px 0 !important;
    }
}

/* Aesthetic Refinement v3 */
.why-subtitle,
.feature-text p {
    color: #ffffff !important;
}

.testi-quote,
.author-info p {
    color: #ffffff !important;
}

.site-footer {
    padding-top: 40px !important;
}

.footer-main {
    padding-top: 0 !important;
}


/* Aesthetic Refinement v4 */
.trusted-text p {
    color: #ffffff !important;
}

.stat-icon i {
    color: var(--primary-blue) !important;
}


/* Reviews Mobile Carousel */
@media (max-width: 992px) {
    .testi-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: 20px !important;
        padding: 20px 0 !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .testi-grid::-webkit-scrollbar {
        display: none !important;
    }

    .testi-card {
        flex: 0 0 100% !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
    }
}

.testi-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .testi-dots {
        display: flex !important;
    }
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

/* Reveal Animations - DISABLED FOR DEBUGGING */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Testimonials Carousel */
.testi-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
}

.testi-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testi-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: center;
    min-width: 300px;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testi-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-dots .dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .testi-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testi-card {
        flex: 0 0 100%;
    }
}