/* style.css */
:root {
    --primary: #178033;
    /* Main green */
    --primary-dark: #0f5221;
    --secondary: #1e1e1e;
    --text-color: #4a4a4a;
    --text-light: #777;
    --bg-light: #f9f9f9;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-weight: 700;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-light {
    border: 2px solid #fff;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 22px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
}

.navbar-brand i {
    color: var(--primary);
    font-size: 30px;
}

.brand-sub {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-light);
    display: block;
    font-weight: 500;
}

.nav-link {
    font-weight: 600;
    font-size: 13px;
    color: var(--secondary);
    margin: 0 8px;
    text-transform: uppercase;
}

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

/* Dropdown Menu Styles */
.dropdown-menu {
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 15px !important;
}

.dropdown-item {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f2f7f4;
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('images/hero.jpg') no-repeat center center/cover;
    padding: 10px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 45%, rgba(0, 0, 0, 0) 100%);
}

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

.hero-content h5 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content h1 {
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 35px;
    margin-top: 10px;
}

.hero-stat-item {
    text-align: center;
    padding: 0 35px;
    position: relative;
}

.hero-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

.hero-stat-item:first-child {
    padding-left: 0;
}

.hero-stat-item:last-child {
    padding-right: 0;
}

.hero-stat-item i {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.hero-stat-item .stat-num {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 2px;
}

.hero-stat-item .stat-text {
    font-size: 11px;
    font-weight: 400;
    color: #d0d0d0;
    display: block;
}

/* Service Areas */
.service-areas {
    background-color: #f4f8f6;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 5%;
    width: 100%;
    height: 200%;
    background-image: url('images/map.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

.area-title {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.area-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.area-icons {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 110%;
    gap: 5px;
}

.area-icon-item {
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
}

.area-icon-item i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 5px;
}

.area-icon-item span {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    word-wrap: break-word;
}

/* Service Areas Mobile Fixes */
@media (max-width: 767px) {
    .service-areas {
        text-align: center;
        padding: 40px 0;
    }

    .service-areas .col-md-4 {
        margin-bottom: 30px;
    }

    .service-areas .col-md-2 {
        text-align: center !important;
        margin-top: 30px;
    }

    .service-areas .col-md-2 i {
        margin-right: 0 !important;
    }

    .service-areas::before {
        background-position: center;
        opacity: 0.2;
        /* So the text is readable over the map on small screens */
        top: 0;
        height: 100%;
        background-size: cover;
    }
}

/* Who We Are Section */
.who-we-are-section {
    padding: 60px 0;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

/* Section Badges */
.section-badge-inline {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-badge-inline .line {
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin: 0 15px;
}

.badge-icon-center {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    position: relative;
}

.badge-icon-center i {
    font-size: 18px;
    color: var(--primary);
}

.bug-overlay {
    position: absolute;
    font-size: 10px !important;
    bottom: 5px;
    right: 5px;
    background: #fff;
    border-radius: 50%;
}

/* Headings & Text */
.main-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.desc-paragraphs p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

/* Feature Grid */
.feature-item {
    gap: 15px;
}

.feature-item .icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(23, 128, 51, 0.1);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary);
}

.feature-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Action Buttons */
.btn-know-more {
    font-weight: 700;
    border-radius: 6px;
    font-size: 14px;
}

.btn-book-free {
    font-weight: 700;
    border-radius: 6px;
    font-size: 14px;
    border-width: 2px;
}

.btn-book-free:hover {
    background-color: var(--primary);
    color: #fff;
}

/* Right Column Image & Stats */
.who-image-wrapper {
    position: relative;
    border-radius: 250px 0 0 250px;
    overflow: hidden;
    height: 600px;
    background: #f8f9fa;
}

.main-worker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-curve-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 250px 0 0 250px;
    box-shadow: inset 10px 0 30px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.floating-stats-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 20px;
}

.floating-stat {
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.floating-stat:hover {
    transform: translateX(-10px);
}

.floating-stat .stat-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 18px;
}

.floating-stat h4 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.floating-stat span {
    font-size: 11px;
    color: #666;
    line-height: 1.2;
    display: block;
}

/* Bottom Pest Bar */
.pest-bar-container {
    display: flex;
    background: #f4f8f6;
    border-radius: 20px;
    align-items: stretch;
    overflow: hidden;
}

.pest-badge {
    background: #e9f2eb;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 20px 0 0 20px;
    border-right: 2px solid #fff;
}

.badge-inner-icon {
    font-size: 30px;
    color: var(--primary);
    position: relative;
}

.pest-badge .badge-text {
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.3;
}

.pest-badge strong {
    font-size: 16px;
    color: var(--primary);
}

.pest-icons-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-grow: 1;
    padding: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.pest-item {
    text-align: center;
    color: var(--primary);
}

.pest-item i {
    font-size: 30px;
    margin-bottom: 8px;
}

.pest-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 5px;
}

.pest-item span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #555;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .who-we-are-section {
        padding-top: 0;
    }

    .main-heading {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .who-image-wrapper {
        border-radius: 0;
        height: 380px;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
        margin-bottom: 20px;
    }

    .main-worker-img {
        border-radius: 0 0 50% 50% / 0 0 10% 10%;
    }

    .image-curve-mask {
        display: none;
    }

    .floating-stats-container {
        position: absolute;
        top: 30px;
        right: 15px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        padding: 0;
        margin: 0;
        transform: none;
        gap: 12px;
        width: auto;
    }

    .floating-stat {
        padding: 8px 12px;
        width: auto;
        min-width: 140px;
        gap: 10px;
    }

    .stat-text h4 {
        font-size: 16px;
    }

    .stat-text span {
        font-size: 10px;
        line-height: 1.2;
    }

    .stat-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .feature-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        flex-wrap: nowrap;
    }

    .icon-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-bottom: 0 !important;
        margin-right: 10px !important;
        flex-shrink: 0;
    }

    .feature-item h5 {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .feature-item p {
        font-size: 10px;
        line-height: 1.2;
    }

    .pest-bar-container {
        flex-direction: column;
    }

    .pest-badge {
        border-radius: 20px 20px 0 0;
        border-right: none;
        justify-content: center;
    }
}

.pest-bar-new {
    background: #f8faf9;
    border-radius: 15px;
    padding: 30px 15px 15px;
    position: relative;
    border: 1px solid #eef3f0;
    margin-top: 30px;
}

.pest-badge-new {
    background: #fff;
    color: var(--primary);
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    border: 1px solid #eef3f0;
    font-size: 14px;
}

.pest-item-new {
    text-align: center;
    padding: 10px 5px;
}

.pest-item-new .pest-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--primary);
    font-size: 20px;
}

.pest-item-new span {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section img {
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.about-section p.text-muted {
    font-size: 14.5px;
    line-height: 1.8;
    color: #555 !important;
    margin-bottom: 18px;
}

.about-section p.text-muted:first-of-type {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary) !important;
    line-height: 1.6;
    margin-bottom: 22px;
}

.about-section p.text-muted:not(:first-of-type) {
    opacity: 0.9;
}

.about-section .btn-primary {
    margin-top: 15px;
    padding: 12px 30px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(23, 128, 51, 0.2);
    transition: all 0.3s ease;
}

.about-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(23, 128, 51, 0.35);
}

.about-section img:hover {
    transform: translateY(-5px);
}

.about-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    padding: 5px 12px;
    background: rgba(23, 128, 51, 0.08);
    border-radius: 4px;
}

.about-title {
    font-size: 2.3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.about-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: var(--primary);
    margin-top: 20px;
    border-radius: 2px;
}

/* Services */
.services-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.service-icon-badge {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin: -20px 0 0 15px;
    position: relative;
    border: 3px solid #fff;
}

.service-content {
    padding: 15px;
}

.service-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    font-size: 11px;
    margin-bottom: 15px;
}

.learn-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Split Section (Why Choose Us & Process) */
.split-section {
    display: flex;
    flex-wrap: wrap;
}

.why-choose-box {
    background: #0f3d21;
    color: #fff;
    padding: 80px 50px;
}

.why-choose-box h3 {
    color: #fff;
    margin-bottom: 30px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.why-list i {
    color: var(--primary);
    background: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-right: 15px;
}

.process-box {
    background: #fff;
    padding: 80px 50px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin: 0 auto 15px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.process-step::after {
    content: '\f061';
    font-family: 'FontAwesome';
    position: absolute;
    top: 25px;
    right: -10px;
    color: #ccc;
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.process-step h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.process-step p {
    font-size: 11px;
    color: var(--text-light);
}

/* Stats Bar */
.stats-bar {
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-right: 1px solid #eee;
}

.stat-box:last-child {
    border: none;
}

.stat-box i {
    font-size: 35px;
    color: var(--primary);
}

.stat-box h3 {
    margin: 0;
    font-size: 24px;
}

.stat-box p {
    margin: 0;
    font-size: 12px;
    color: var(--text-light);
}

/* Partners & Testimonials */
.partners-testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.partner-logos img {
    max-height: 50px;
    max-width: 100px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 12px;
    margin: 10px 0 0;
}

.stars {
    color: #fbbc04;
    font-size: 12px;
}

/* About Extended & Manpower */
.extended-info {
    padding: 80px 0;
}

.policy-box {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.policy-box i {
    font-size: 30px;
    color: var(--primary);
}

.policy-box h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.policy-box p {
    font-size: 11px;
    margin: 0;
    color: var(--text-light);
}

.manpower-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.manpower-stat {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

.manpower-stat i {
    font-size: 24px;
    color: var(--primary);
}

.manpower-stat h4 {
    margin: 0;
    font-size: 20px;
}

.manpower-stat p {
    margin: 0;
    font-size: 11px;
    color: var(--text-light);
}

.team-img {
    width: 100%;
    border-radius: 8px;
}

/* Bottom CTA */
.bottom-cta {
    background: var(--primary);
    padding: 30px 0;
    color: #fff;
}

.bottom-cta h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 24px;
}

.bottom-cta p {
    margin: 0;
    font-size: 14px;
}

.cta-phone-btn {
    background: #fff;
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #041008 0%, #082110 100%);
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #178033, #28a745, #1ea840);
}

.footer p {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
}

.footer h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: #178033;
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
    transition: transform 0.3s ease;
}

.footer-links li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #178033;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(6px);
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1ea840;
}

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

.contact-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
    align-items: flex-start;
}

.contact-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #1ea840;
}

.contact-list i {
    color: #fff;
    background: #178033;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(23, 128, 51, 0.3);
    transition: transform 0.3s ease;
}

.contact-list li:hover i {
    transform: scale(1.1);
}

.social-icons a {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #178033;
    border-color: #178033;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(23, 128, 51, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom .copyright {
    font-size: 15px;
    color: #fff;
    margin-bottom: 5px;
}

.footer-bottom .credit {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.footer-bottom .credit a {
    color: #1ea840;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom .credit a:hover {
    color: #28a745;
}

/* Commitment Section */
.commitment-section {
    background: #fff;
    margin-bottom: 0px;
}

.commitment-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.commitment-subtitle .line {
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.commitment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.commitment-title span {
    color: var(--primary);
}

.commitment-desc {
    max-width: 700px;
    font-size: 15px;
}

.commitment-card {
    background-color: #f2f7f4;
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.commitment-card:hover {
    transform: translateY(-5px);
}

.commitment-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #1a5c31;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 20px rgba(23, 128, 51, 0.2);
}

.commitment-card .icon-wrapper::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.commitment-card .icon-wrapper i {
    color: #fff;
    font-size: 28px;
    z-index: 1;
}

.commitment-card h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary);
}

.card-graphic {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 0;
}

.card-graphic img {
    height: 225px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    mix-blend-mode: multiply;
    opacity: 0.85;
}

#card img {
    height: 206px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    mix-blend-mode: multiply;
    opacity: 0.85;
}

/* Circular Services Section */
.circle-services-section {
    background-color: #f9fdfa;
}

.circle-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.circle-service-link:hover .circle-img-wrapper {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(23, 128, 51, 0.2);
}

.circle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.circle-service-link:hover .circle-img-wrapper img {
    transform: scale(1.1);
}

.circle-service-link h6 {
    font-size: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.circle-service-link:hover h6 {
    color: var(--primary) !important;
}

@media (max-width: 991px) {
    .circle-img-wrapper {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .circle-img-wrapper {
        width: 100px;
        height: 100px;
    }
}

/* Features Bar */
.features-bar {
    padding-bottom: 60px;
}

.features-bar .container {
    background-color: #1a5c31;
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item.border-0 {
    border-right: none !important;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-text {
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.feature-strip-item .strip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.strip-icon-size {
    font-size: 24px;
}

.strip-text-size {
    font-size: 14px;
}

@media (max-width: 991px) {
    .features-bar .container {
        border-radius: 0;
    }

    .feature-item {
        border-right: none;
        margin-bottom: 20px;
        flex-direction: column;
        text-align: center;
    }

    .feature-item .feature-text {
        text-align: center;
    }

    .split-section>div {
        width: 100%;
    }

    .process-steps {
        flex-wrap: wrap;
    }

    .process-step {
        width: 50%;
        margin-bottom: 30px;
        flex: none;
    }

    .process-step::after {
        display: none;
    }

    .stat-box {
        border: none;
        margin-bottom: 20px;
        width: 50%;
    }

    .stats-bar .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .termite-hero {
        padding: 40px 0;
        background-position: right top !important;
    }

    .termite-hero-title {
        font-size: 2.5rem;
    }

    .circular-badge {
        position: relative;
        top: 0;
        left: 0;
        margin: 30px auto 0;
        transform: scale(0.9);
    }

    .strip-text-size {
        font-size: 9px !important;
        line-height: 1.2;
    }

    .strip-icon-size {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .hero-section::before {
        background: rgba(0, 0, 0, 0.55);
        /* Brighter overlay on mobile */
    }

    .hero-content {
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
        /* Strong text-shadow to keep text legible on brighter background */
    }

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

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

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 0;
        margin-bottom: 25px;
    }

    .hero-stat-item {
        width: 50%;
        padding: 0 15px;
    }

    .hero-stat-item::after {
        display: none !important;
    }

    .hero-stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Service Areas Mobile Tweaks */
    .service-areas {
        text-align: center;
    }

    .area-subtitle {
        font-size: 22px;
    }

    .service-areas .area-icons {
        flex-wrap: wrap;
        gap: 30px 0;
        margin-top: 25px;
    }

    .service-areas .area-icon-item {
        width: 50%;
    }

    .service-areas .text-end {
        text-align: center !important;
        margin-top: 20px;
    }
}

/* ------------------------------------- */
/* Why Choose Us Page Styles             */
/* ------------------------------------- */
.choose-page-section {
    padding: 80px 0 40px;
    background-color: #fff;
    overflow: hidden;
}

.badge-icon-left {
    width: 35px;
    height: 35px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.badge-icon-left i {
    font-size: 16px;
    color: var(--primary);
}

.badge-icon-left .bug-overlay {
    position: absolute;
    font-size: 8px !important;
    bottom: 4px;
    right: 4px;
    background: #fff;
    border-radius: 50%;
}

.choose-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-circle-outline {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
    background: #fff;
}

.choose-feature-item h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary);
}

.choose-feature-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.highlight-box {
    background-color: #f2f7f4;
    padding: 15px 20px;
    border-radius: 10px;
}

.choose-image-wrapper {
    position: relative;
    padding-bottom: 120px;
}

.dotted-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#ccc 20%, transparent 20%);
    background-size: 10px 10px;
    z-index: 0;
}

.main-image-container {
    position: relative;
    z-index: 1;
}

.main-image-container img {
    width: 100%;
    height: auto;
}

.dark-green-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: -40px;
    background-color: #0b4522;
    border-radius: 20px;
    z-index: 2;
    color: #fff;
    padding: 30px;
}

.dark-green-box .large-icon {
    font-size: 40px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.dark-green-box .large-icon .bug-inner {
    position: absolute;
    font-size: 20px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.dark-green-box h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.dark-green-box p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.box-right-content {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 30px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist li i {
    color: #a4ceaa;
    font-size: 16px;
}

/* Bottom Stats Bar */
.bottom-stats-bar {
    background-color: #fff;
    padding: 30px 0;
    margin-bottom: 20px;
}

.stats-row {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stat-item {
    border-right: 1px solid #eee;
}

.stat-item h3 {
    font-size: 24px;
    font-weight: 800;
}

.stat-item span {
    font-size: 12px;
    color: #666;
    display: block;
}

.stat-icon-outline {
    width: 50px;
    height: 50px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ========================================= */
/* TERMITE PAGE SPECIFIC STYLES              */
/* ========================================= */

.termite-hero {
    background: #fcfcfc url('images/bg-termite.png') no-repeat center center/cover;
    padding: 80px 0;
    overflow: visible;
}

.termite-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #222;
    margin-bottom: 15px;
}

.icon-hexagon {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
}

.hero-feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.termite-image-wrapper {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
}

.termite-image-inner {
    border-radius: 24px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    padding: 20px;
}

.main-termite-img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 16px;
}

.circular-badge {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: #fff;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 10;
}

.circular-badge h3 {
    color: var(--primary);
    font-weight: 800;
    font-size: 28px;
    margin: 0;
    line-height: 1;
}

.circular-badge p {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    margin: 5px 0 0 0;
    line-height: 1.2;
}

.signs-grid {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    /* For scrollbar if needed */
}

.sign-card {
    flex: 1;
    min-width: 60px;
    /* Reduced from 100px to allow fitting 9 items */
    text-align: center;
}

.sign-card img {
    width: 100%;
    max-width: 60px;
    /* Keep icons reasonably small */
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: none;
    /* Removed shadow to look more like the document icons */
}

.sign-card span {
    font-size: 12px;
    font-weight: 600;
    color: #444;
}

.tips-cards-row {
    position: relative;
}

.tip-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 40px 20px 20px;
    height: 100%;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.tip-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(20, 98, 55, 0.3);
}

.tip-card h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
}

.biology-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.biology-header h5 {
    font-size: 16px;
    font-weight: 700;
}

.biology-list li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.cta-banner-bg {
    background: #103320;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-strip-item .strip-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #fff;
}

/* Biology Section Cards */
.biology-card {
    background-color: #fcfcfc;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    border: 1px solid #f2f2f2;
}

.object-fit-cover {
    object-fit: cover !important;
}

.biology-badge {
    background-color: var(--primary);
    color: #fff;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    padding-right: 20px;
    margin-left: -10px;
    margin-top: -10px;
}

.biology-badge .icon-circle {
    background-color: #fff;
    color: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);
    margin-left: -2px;
    margin-top: -2px;
    margin-bottom: -2px;
    font-size: 18px;
}

.biology-badge .badge-text {
    font-weight: 700;
    margin-left: 12px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {

    .dark-green-box,
    .dotted-bg {
        display: none;
    }

    .choose-image-wrapper {
        padding-bottom: 20px;
    }

    .main-image-container {
        border-radius: 20px;
        height: 300px;
    }

    .choose-feature-item {
        background: #fff;
        border: 1.5px solid #f2f6f4;
        border-radius: 15px;
        padding: 15px 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        height: 100%;
    }

    .choose-feature-item h5 {
        font-size: 12px;
    }

    .choose-feature-item p {
        font-size: 10.5px;
    }

    .choose-feature-item.highlight-box {
        border: none;
        border-radius: 10px;
        background-color: #f2f7f4;
        align-items: center;
        padding: 15px 20px;
    }

    .stats-row {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px;
        margin-top: -35px;
        position: relative;
        z-index: 10;
        background-color: #fff;
        border-radius: 20px;
    }

    .stat-item {
        border-bottom: 1px solid #eee !important;
        border-right: none !important;
        padding: 15px 10px;
        width: 50%;
        text-align: left !important;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid #eee !important;
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none !important;
    }

    .stat-item .d-flex {
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .stat-item .text-start {
        text-align: left !important;
    }

    .stat-item h3 {
        font-size: 16px;
        margin-bottom: 0 !important;
    }

    .stat-item span {
        font-size: 10px;
        line-height: 1.4;
    }

    .stat-icon-outline {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 0;
    }

    .choose-page-section {
        padding-top: 30px;
    }

    .about-section {
        padding-top: 20px;
    }

    .about-section .row.g-5 {
        margin-top: 0;
    }
}

/* Enable Navbar Dropdown Hover on Desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader-content {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-logo {
    width: 40px;
    height: auto;
    z-index: 2;
}

.spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #178033;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Logo in Navbar */
.navbar-brand img.logo {
    height: 90px;
    width: auto;
}

/* About Page Hero */
.about-hero {
    background: url('images/about-hero.jpg') no-repeat center center/cover;
    padding: 100px 0;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
}
/* Hide scrollbar for Book Now Modal */
#bookNowModal > div {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
#bookNowModal > div::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}


@keyframes floatSparkle {
    0% { transform: translateY(0) scale(0) rotate(0deg); opacity: 0; }
    50% { opacity: 1; transform: translateY(-30px) scale(1.5) rotate(15deg); }
    100% { transform: translateY(-60px) scale(0) rotate(30deg); opacity: 0; }
}
.sparkle-effect {
    position: absolute;
    font-size: 24px;
    pointer-events: none;
    animation: floatSparkle 1.5s ease-out forwards;
    z-index: 100001;
}


/* ===== MOBILE BOTTOM NAVIGATION & FAB ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9998;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #eaeaea;
}
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 70px !important;
    }
}
.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    gap: 4px;
    transition: color 0.3s;
}
.mobile-bottom-nav .nav-item i {
    font-size: 20px;
    color: #178033;
}
.mobile-bottom-nav .nav-item:hover, 
.mobile-bottom-nav .nav-item:active {
    color: #1a1a1a;
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-action-buttons {
    position: fixed;
    bottom: 80px; /* Above the mobile nav */
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
@media (min-width: 769px) {
    .floating-action-buttons {
        bottom: 30px; /* Adjust for desktop */
    }
}
.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}
.fab-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    color: #fff;
}
.call-fab {
    background: #e53e3e; /* Red for call */
}
.wa-fab {
    background: #25D366; /* Green for WA */
}
