/* =========================================================
   DWARKA PEST CONTROL
   MAIN WEBSITE CSS
   ========================================================= */


/* =========================
   1. BASIC RESET
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #222222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/* =========================
   2. CONTAINER
   ========================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================
   3. HEADER
   ========================= */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 1000;
}

.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* =========================
   4. LOGO
   ========================= */

.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-area a {
    display: inline-flex;
    align-items: center;
}

/*
   IMPORTANT:
   Logo has its own CSS.
   We are NOT using a global img width.
*/

.site-logo {
    display: block;
    width: auto;
    max-width: 190px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}


/* =========================
   5. MAIN NAVIGATION
   ========================= */

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    transition: color 0.3s ease;
}

.nav-menu > li > a:hover {
    color: #198754;
}


/* =========================
   6. SERVICES DROPDOWN
   ========================= */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;

    min-width: 230px;

    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

    padding: 8px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #198754;
}


/* =========================
   7. CALL BUTTON
   ========================= */

.header-call {
    flex-shrink: 0;
}

.header-call a {
    display: inline-block;
    padding: 11px 20px;

    background: #198754;
    color: #ffffff;

    border-radius: 5px;

    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.header-call a:hover {
    background: #146c43;
    transform: translateY(-1px);
}


/* =========================
   8. TABLET
   ========================= */

@media (max-width: 991px) {

    .header-container {
        min-height: 75px;
        gap: 15px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu > li > a {
        font-size: 15px;
    }

    .site-logo {
        max-width: 160px;
        max-height: 58px;
    }

    .header-call a {
        padding: 9px 15px;
        font-size: 14px;
    }
}


/* =========================
   9. MOBILE
   ========================= */

@media (max-width: 767px) {

    .header-container {
        flex-wrap: wrap;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .logo-area {
        width: auto;
    }

    .site-logo {
        max-width: 145px;
        max-height: 52px;
    }

    .main-navigation {
        width: 100%;
        order: 3;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 18px;
    }

    .nav-menu > li > a {
        font-size: 14px;
        padding: 6px 0;
    }

    .header-call {
        margin-left: auto;
    }

    .header-call a {
        padding: 8px 13px;
        font-size: 13px;
    }

    /*
       Mobile dropdown stays simple.
       Full mobile menu can be added later with JavaScript.
    */

    .dropdown-menu {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 8px);

        min-width: 210px;
    }

    .dropdown:hover .dropdown-menu {
        transform: translate(-50%, 0);
    }
}


/* =========================
   10. SMALL MOBILE
   ========================= */

@media (max-width: 480px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .site-logo {
        max-width: 125px;
        max-height: 48px;
    }

    .header-call a {
        padding: 7px 10px;
        font-size: 12px;
    }

    .nav-menu {
        gap: 5px 14px;
    }

    .nav-menu > li > a {
        font-size: 13px;
    }
}
/* =========================================================
   HOME PAGE
   ========================================================= */


/* =========================
   HERO SECTION
   ========================= */

.hero-section {
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: #f4f8f5;
}

.hero-content {
    max-width: 720px;
    padding: 80px 0;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #1d1d1d;
}

.hero-content p {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
}


/* =========================
   HERO BUTTONS
   ========================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-button {
    background: #198754;
    color: #ffffff;
}

.primary-button:hover {
    background: #146c43;
}

.secondary-button {
    background: #ffffff;
    color: #198754;
    border: 1px solid #198754;
}

.secondary-button:hover {
    background: #198754;
    color: #ffffff;
}


/* =========================
   SERVICES INTRO
   ========================= */

.services-intro {
    padding: 80px 0;
    background: #ffffff;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 1.25;
    color: #222222;
}

.section-heading p {
    font-size: 16px;
    color: #666666;
}


/* =========================
   SERVICES GRID
   ========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.3;
    color: #222222;
}

.service-card p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}

.service-card a {
    font-size: 14px;
    font-weight: 600;
    color: #198754;
}

.service-card a:hover {
    text-decoration: underline;
}


/* =========================
   ABOUT SECTION
   ========================= */

.home-about {
    padding: 80px 0;
    background: #f7f7f7;
}

.home-about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.home-about-content h2 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.3;
    color: #222222;
}

.home-about-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

.home-about-content .primary-button {
    margin-top: 15px;
}


/* =========================
   CALL TO ACTION
   ========================= */

.home-cta {
    padding: 70px 0;
    background: #198754;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 15px;
    font-size: 34px;
    line-height: 1.3;
    color: #ffffff;
}

.cta-content p {
    max-width: 650px;
    margin: 0 auto 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
}

.cta-content .primary-button {
    background: #ffffff;
    color: #198754;
}

.cta-content .primary-button:hover {
    background: #eeeeee;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 991px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2,
    .home-about-content h2 {
        font-size: 32px;
    }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services-intro,
    .home-about {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .home-about-content h2 {
        font-size: 29px;
    }

    .cta-content h2 {
        font-size: 29px;
    }

}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 480px) {

    .hero-content {
        padding: 45px 0;
    }

    .hero-content h1 {
        font-size: 29px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        text-align: center;
    }

    .service-card {
        padding: 25px;
    }

}
/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #1f1f1f;
    color: #ffffff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1.3fr;
    gap: 40px;
}

.footer-column h3 {
    margin-bottom: 18px;
    font-size: 19px;
    color: #ffffff;
}

.footer-column p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
}

.footer-column ul li {
    margin-bottom: 9px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-column a {
    color: #cccccc;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 45px;
    padding: 20px 0;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #aaaaaa;
}


/* =========================
   FOOTER MOBILE
   ========================= */

@media (max-width: 991px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

}


@media (max-width: 767px) {

    .site-footer {
        padding-top: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        margin-top: 35px;
    }

}
/* =========================================================
   ABOUT PAGE
   ========================================================= */


/* =========================
   PAGE BANNER
   ========================= */

.page-banner {
    width: 100%;
    padding: 75px 0;
    background: #f4f8f5;
    text-align: center;
}

.page-banner h1 {
    margin-bottom: 12px;
    font-size: 42px;
    line-height: 1.2;
    color: #222222;
}

.page-banner p {
    margin: 0;
    font-size: 17px;
    color: #666666;
}


/* =========================
   ABOUT SECTION
   ========================= */

.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    margin-bottom: 25px;
    font-size: 34px;
    line-height: 1.3;
    color: #222222;
}

.about-content p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}


/* =========================
   WHY CHOOSE US
   ========================= */

.why-choose-us {
    padding: 80px 0;
    background: #f7f7f7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 30px 25px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.3;
    color: #222222;
}

.feature-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}


/* =========================
   ABOUT SERVICES
   ========================= */

.about-services {
    padding: 80px 0;
    background: #ffffff;
}


/* =========================
   ABOUT PAGE RESPONSIVE
   ========================= */

@media (max-width: 991px) {

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-banner h1 {
        font-size: 36px;
    }

}


@media (max-width: 767px) {

    .page-banner {
        padding: 55px 0;
    }

    .page-banner h1 {
        font-size: 31px;
    }

    .page-banner p {
        font-size: 15px;
    }

    .about-section,
    .why-choose-us,
    .about-services {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 29px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-page-section {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail-card {
    max-width: 950px;
    margin: 0 auto 30px;
    padding: 35px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.service-detail-content h2 {
    margin-bottom: 15px;
    font-size: 27px;
    line-height: 1.3;
    color: #222222;
}

.service-detail-content p {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

@media (max-width: 767px) {

    .services-page-section {
        padding: 60px 0;
    }

    .service-detail-card {
        padding: 25px;
    }

    .service-detail-content h2 {
        font-size: 23px;
    }

}
/* =========================================================
   SERVICE DETAIL PAGES
   ========================================================= */

.service-page-section {
    padding: 80px 0;
    background: #ffffff;
}

.service-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-page-content h2 {
    margin-top: 35px;
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.3;
    color: #222222;
}

.service-page-content h2:first-child {
    margin-top: 0;
}

.service-page-content p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}


/* =========================
   SERVICE IMAGE
   ========================= */

.service-image {
    width: 100%;
    margin: 35px 0;
    text-align: center;
}

.service-main-image {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
}


/* =========================
   SERVICE LIST
   ========================= */

.service-list {
    margin: 20px 0 30px;
    padding-left: 22px;
    list-style: disc;
}

.service-list li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}


/* =========================
   SERVICE BUTTONS
   ========================= */

.service-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}


/* =========================
   RELATED SERVICES
   ========================= */

.related-services {
    padding: 80px 0;
    background: #f7f7f7;
}


/* =========================
   SERVICE PAGE MOBILE
   ========================= */

@media (max-width: 767px) {

    .service-page-section,
    .related-services {
        padding: 60px 0;
    }

    .service-page-content h2 {
        font-size: 25px;
    }

    .service-page-content p,
    .service-list li {
        font-size: 15px;
    }

    .service-main-image {
        max-width: 100%;
    }

}
/* =========================================
   TERMITE CONTROL PAGE
   ========================================= */

.termite-page {
    width: 100%;
}

.termite-intro {
    padding: 70px 0;
}

.termite-content {
    max-width: 1100px;
    margin: 0 auto;
}

.termite-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.termite-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.termite-image {
    width: 100%;
    max-width: 900px;
    margin: 35px auto;
    text-align: center;
}

.termite-image img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
}

.termite-list {
    margin: 25px 0 30px 20px;
    padding-left: 20px;
}

.termite-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.termite-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}


/* =========================================
   TERMITE RELATED SERVICES
   ========================================= */

.termite-related-services {
    padding: 70px 0;
    background: #f7f7f7;
}

.termite-related-services .section-heading {
    text-align: center;
    margin-bottom: 40px;
}


/* =========================================
   TERMITE CTA
   ========================================= */

.termite-cta {
    padding: 70px 0;
    text-align: center;
}

.termite-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.termite-cta p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}


/* =========================================
   TERMITE MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 767px) {

    .termite-intro {
        padding: 50px 0;
    }

    .termite-content h2 {
        font-size: 27px;
    }

    .termite-content p {
        font-size: 16px;
    }

    .termite-image {
        margin: 25px auto;
    }

    .termite-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .termite-buttons a {
        text-align: center;
    }

    .termite-related-services,
    .termite-cta {
        padding: 50px 0;
    }

    .termite-cta h2 {
        font-size: 27px;
    }

}
/* =========================================
   MOSQUITO CONTROL PAGE
   ========================================= */

.mosquito-page {
    width: 100%;
}

.mosquito-intro {
    padding: 70px 0;
}

.mosquito-content {
    max-width: 1100px;
    margin: 0 auto;
}

.mosquito-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.mosquito-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.mosquito-image {
    width: 100%;
    max-width: 900px;
    margin: 35px auto;
    text-align: center;
}

.mosquito-image img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
}

.mosquito-list {
    margin: 25px 0 30px 20px;
    padding-left: 20px;
}

.mosquito-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.mosquito-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}


/* =========================================
   MOSQUITO MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 767px) {

    .mosquito-intro {
        padding: 50px 0;
    }

    .mosquito-content h2 {
        font-size: 27px;
    }

    .mosquito-content p {
        font-size: 16px;
    }

    .mosquito-image {
        margin: 25px auto;
    }

    .mosquito-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .mosquito-buttons a {
        text-align: center;
    }

}
/* =========================================
   RODENT CONTROL PAGE
   ========================================= */

.rodent-page {
    width: 100%;
}

.rodent-intro {
    padding: 70px 0;
}

.rodent-content {
    max-width: 1100px;
    margin: 0 auto;
}

.rodent-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.rodent-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.rodent-image {
    width: 100%;
    max-width: 900px;
    margin: 35px auto;
    text-align: center;
}

.rodent-image img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
}

.rodent-list {
    margin: 25px 0 30px 20px;
    padding-left: 20px;
}

.rodent-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.rodent-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}


/* =========================================
   RODENT MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 767px) {

    .rodent-intro {
        padding: 50px 0;
    }

    .rodent-content h2 {
        font-size: 27px;
    }

    .rodent-content p {
        font-size: 16px;
    }

    .rodent-image {
        margin: 25px auto;
    }

    .rodent-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .rodent-buttons a {
        text-align: center;
    }

}
/* =========================================
   BED BUG CONTROL PAGE
   ========================================= */

.bedbug-page {
    width: 100%;
}

.bedbug-intro {
    padding: 70px 0;
}

.bedbug-content {
    max-width: 1100px;
    margin: 0 auto;
}

.bedbug-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.bedbug-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.bedbug-image {
    width: 100%;
    max-width: 900px;
    margin: 35px auto;
    text-align: center;
}

.bedbug-image img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
}

.bedbug-list {
    margin: 25px 0 30px 20px;
    padding-left: 20px;
}

.bedbug-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.bedbug-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}


/* =========================================
   BED BUG MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 767px) {

    .bedbug-intro {
        padding: 50px 0;
    }

    .bedbug-content h2 {
        font-size: 27px;
    }

    .bedbug-content p {
        font-size: 16px;
    }

    .bedbug-image {
        margin: 25px auto;
    }

    .bedbug-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .bedbug-buttons a {
        text-align: center;
    }

}
/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-section {
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}


/* =========================================
   CONTACT INFORMATION
   ========================================= */

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.contact-info > p,
.contact-form-wrapper > p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-item a {
    text-decoration: none;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}


/* =========================================
   CONTACT FORM
   ========================================= */

.contact-form-wrapper {
    padding: 35px;
    border-radius: 8px;
    background: #f7f7f7;
}

.contact-form {
    margin-top: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    display: block;
    width: 100%;
    padding: 13px 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    background: #ffffff;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #999999;
}

.contact-form .primary-button {
    border: none;
    cursor: pointer;
}


/* =========================================
   GOOGLE MAP
   ========================================= */

.contact-map-section {
    padding: 70px 0;
    background: #f7f7f7;
}

.map-heading {
    text-align: center;
    margin-bottom: 35px;
}

.map-heading h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.map-heading p {
    font-size: 17px;
    line-height: 1.7;
}

.google-map {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
}

.google-map iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}


/* =========================================
   CONTACT MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 767px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 27px;
    }

    .contact-info > p,
    .contact-form-wrapper > p {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-buttons a {
        text-align: center;
    }

    .contact-map-section {
        padding: 50px 0;
    }

    .map-heading h2 {
        font-size: 27px;
    }

    .map-heading p {
        font-size: 16px;
    }

    .google-map iframe {
        min-height: 350px;
    }

}
/* =========================================
   FORM STATUS MESSAGE
   ========================================= */

.form-message {
    max-width: 1200px;
    margin: 20px auto;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.6;
}

.success-message {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
}

.error-message {
    background: #ffebee;
    border: 1px solid #ef9a9a;
}
/* =========================
   HOME PAGE IMAGE STYLES
========================= */

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image {
    width: 100%;
}

.hero-main-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.service-card-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    width: 100%;
}

.about-main-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.home-pest-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.home-pest-image {
    width: 100%;
}

.home-pest-main-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}


/* =========================
   HOME PAGE MOBILE
========================= */

@media (max-width: 768px) {

    .hero-container,
    .about-container,
    .home-pest-container {
        grid-template-columns: 1fr;
    }

    .hero-main-image,
    .about-main-image,
    .home-pest-main-image {
        width: 100%;
        height: auto;
    }

    .service-card-image {
        height: 200px;
    }

}
/* =========================
   HOME PAGE FINAL LAYOUT FIX
========================= */

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image {
    width: 100%;
}

.hero-main-image {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
}


/* SERVICES GRID */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.service-card {
    overflow: hidden;
    border-radius: 8px;
}

.service-card-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.service-card-content {
    padding: 20px;
}


/* ABOUT SECTION */

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    width: 100%;
}

.about-main-image {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}


/* HOME PEST SECTION */

.home-pest-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.home-pest-image {
    width: 100%;
}

.home-pest-main-image {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}


/* MOBILE */

@media (max-width: 900px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container,
    .about-container,
    .home-pest-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-main-image,
    .about-main-image,
    .home-pest-main-image {
        height: auto;
    }

}
/* =========================
   FINAL HOME PAGE FIX
========================= */


/* HERO BANNER - SHOW FULL IMAGE */

.hero-main-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
}


/* HERO SECTION SPACING */

.hero-section {
    padding: 60px 0;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 25px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: #168b57;
    color: #ffffff;
}

.btn-primary:hover {
    background: #117346;
}

.btn-secondary {
    background: #ffffff;
    color: #168b57;
    border: 1px solid #168b57;
}

.btn-secondary:hover {
    background: #168b57;
    color: #ffffff;
}


/* =========================
   FINAL CTA SECTION
========================= */

.cta-section {
    background: #168b57;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    margin-top: 50px;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section p {
    color: #ffffff;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #168b57;
    border: 1px solid #ffffff;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: #ffffff;
}

.cta-section .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cta-section .btn-secondary:hover {
    background: #ffffff;
    color: #168b57;
}


/* =========================
   MOBILE HERO
========================= */

@media (max-width: 768px) {

    .hero-section {
        padding: 40px 0;
    }

    .hero-main-image {
        height: auto;
        width: 100%;
        object-fit: contain;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

}
/* =========================================
   FLOATING CALL & WHATSAPP BUTTONS
========================================= */

.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 25px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-contact-buttons a {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.floating-contact-buttons a:hover {
    transform: scale(1.10);

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.30);
}

.floating-icon {
    font-size: 27px;
    line-height: 1;
}


/* CALL BUTTON */

.floating-call {
    background: #168b57;
    color: #ffffff;
}


/* WHATSAPP BUTTON */

.floating-whatsapp {
    background: #25D366;
    color: #ffffff;
}


/* MOBILE */

@media (max-width: 600px) {

    .floating-contact-buttons {
        right: 15px;
        bottom: 18px;
        gap: 10px;
    }

    .floating-contact-buttons a {
        width: 50px;
        height: 50px;
    }

    .floating-icon {
        font-size: 24px;
    }

}
/* =========================================
   RESPONSIVE MOBILE NAVIGATION
========================================= */


/* MOBILE MENU BUTTON - DESKTOP HIDDEN */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;

    cursor: pointer;

    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;

    width: 28px;
    height: 3px;

    margin: 5px auto;

    background: #168b57;

    border-radius: 3px;

    transition: 0.3s ease;
}


/* SERVICES DROPDOWN */

.services-menu {
    position: relative;
}

.services-toggle {
    border: 0;
    background: transparent;

    font-family: inherit;
    font-size: inherit;
    font-weight: 600;

    color: #111;

    cursor: pointer;

    padding: 10px 0;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 5px;

    transition: transform 0.3s ease;
}


/* DESKTOP DROPDOWN */

.services-dropdown {
    position: absolute;

    top: 100%;
    left: 0;

    min-width: 220px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 6px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.12);

    padding: 8px 0;

    display: none;

    z-index: 9999;
}

.services-dropdown.show {
    display: block;
}

.services-dropdown a {
    display: block;

    padding: 11px 16px;

    color: #222;

    text-decoration: none;

    white-space: nowrap;
}

.services-dropdown a:hover {
    background: #f2f7f4;

    color: #168b57;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {


    .header-container {
        position: relative;

        display: flex;

        align-items: center;

        justify-content: space-between;
    }


    /* HAMBURGER */

    .mobile-menu-toggle {
        display: block;

        order: 2;
    }


    /* CALL BUTTON */

    .header-call-button {
        display: none;
    }


    /* NAVIGATION */

    .main-navigation {

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        background: #ffffff;

        border-top: 1px solid #e5e5e5;

        box-shadow: 0 8px 15px rgba(0,0,0,0.10);

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 10px 20px;

        z-index: 9998;
    }


    .main-navigation.mobile-open {
        display: flex;
    }


    .main-navigation > a {

        display: block;

        width: 100%;

        padding: 14px 5px;

        border-bottom: 1px solid #eeeeee;

        text-decoration: none;

        color: #111;

        font-weight: 600;
    }


    .main-navigation > a:hover {
        color: #168b57;
    }


    /* SERVICES MOBILE */

    .services-menu {
        width: 100%;
    }


    .services-toggle {

        width: 100%;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 14px 5px;

        border-bottom: 1px solid #eeeeee;

        text-align: left;

        font-weight: 600;
    }


    .services-dropdown {

        position: static;

        width: 100%;

        min-width: 0;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        padding: 0;

        background: #f8faf9;
    }


    .services-dropdown a {

        padding: 12px 20px;

        border-bottom: 1px solid #e5e5e5;

        font-size: 15px;
    }


    /* ARROW ROTATION */

    .services-toggle.dropdown-open .dropdown-arrow {
        transform: rotate(180deg);
    }


    /* HAMBURGER ANIMATION */

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .site-logo {
        max-width: 160px;
        max-height: 55px;
    }

    .main-navigation {
        padding: 8px 15px;
    }

}
/* ABOUT PAGE IMAGE */

.about-page-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.about-page-main-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
}
/* =========================================
   FINAL HEADER / DESKTOP MENU FIX
   ========================================= */

/* Desktop Header */
@media (min-width: 769px) {

    .site-header {
        width: 100%;
    }

    .site-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-links a {
        display: inline-block;
        text-decoration: none;
        white-space: nowrap;
    }

    .nav-links .dropdown {
        position: relative;
    }

    .nav-links .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        min-width: 220px;
        z-index: 9999;
    }

    .nav-links .dropdown:hover .dropdown-menu {
        display: block;
    }

    .call-button {
        white-space: nowrap;
    }
}


/* =========================================
   MOBILE - KEEP RESPONSIVE MENU
   ========================================= */

@media (max-width: 768px) {

    .site-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-links {
        gap: 0;
    }
}
/* =========================================================
   FINAL HEADER FIX - DESKTOP + MOBILE
   ========================================================= */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 9999;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    display: block;
    width: auto;
    max-width: 190px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}

/* DESKTOP NAVIGATION */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
}

.main-navigation > a,
.services-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #111111;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    background: transparent;
    border: none;
    cursor: pointer;

    padding: 10px 0;
    white-space: nowrap;
}

.main-navigation > a:hover,
.services-toggle:hover {
    color: #168b57;
}

/* SERVICES DROPDOWN */
.services-menu {
    position: relative;
}

.services-toggle {
    font-family: inherit;
}

.dropdown-arrow {
    font-size: 12px;
    line-height: 1;
}

.services-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;

    min-width: 220px;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.12);

    display: none;
    flex-direction: column;

    padding: 8px 0;
}

.services-dropdown a {
    display: block;

    padding: 11px 16px;

    color: #222222;
    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    white-space: nowrap;
}

.services-dropdown a:hover {
    background: #f3f8f5;
    color: #168b57;
}

/* DESKTOP: SHOW DROPDOWN ON HOVER */
.services-menu:hover .services-dropdown {
    display: flex;
}

/* CALL BUTTON */
.header-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #168b57;
    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    padding: 13px 22px;
    border-radius: 5px;

    white-space: nowrap;

    flex-shrink: 0;
}

.header-call-button:hover {
    background: #117246;
    color: #ffffff;
}

/* MOBILE MENU BUTTON - HIDDEN ON DESKTOP */
.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    background: transparent;
    border: none;

    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;

    background: #168b57;

    margin: 5px auto;

    border-radius: 3px;
}


/* =========================================================
   MOBILE HEADER
   ========================================================= */

@media (max-width: 768px) {

    .header-container {
        padding: 12px 16px;
        gap: 10px;
    }

    .site-logo {
        max-width: 160px;
        max-height: 55px;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .header-call-button {
        display: none;
    }

    .main-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        background: #ffffff;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        margin: 0;

        border-top: 1px solid #eeeeee;
        box-shadow: 0 8px 18px rgba(0,0,0,0.10);

        padding: 8px 0;
    }

    .main-navigation.active {
        display: flex;
    }

    .main-navigation > a,
    .services-toggle {
        width: 100%;

        padding: 14px 20px;

        justify-content: flex-start;

        border-bottom: 1px solid #f1f1f1;

        font-size: 16px;
    }

    .services-menu {
        width: 100%;
    }

    .services-dropdown {
        position: static;

        width: 100%;

        min-width: 0;

        border: none;
        border-radius: 0;

        box-shadow: none;

        padding: 0;

        display: none;
    }

    .services-menu.active .services-dropdown {
        display: flex;
    }

    .services-dropdown a {
        padding: 12px 35px;

        background: #f8faf9;

        border-bottom: 1px solid #eeeeee;
    }

    /* Mobile hover should NOT open dropdown */
    .services-menu:hover .services-dropdown {
        display: none;
    }

    .services-menu.active:hover .services-dropdown {
        display: flex;
    }
}


/* SMALL MOBILE */
@media (max-width: 480px) {

    .site-logo {
        max-width: 145px;
        max-height: 50px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-toggle span {
        width: 24px;
    }
}
/* =========================================================
   INNER PAGE BANNER - BACKGROUND IMAGE
   Dwarka Pest Control
   ========================================================= */

.page-banner {
    position: relative;
    background-image: url("../images/page-banner-BigZero.jpg") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Light overlay for better text readability */
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.78);
    z-index: 1;
}

/* Banner text */
.page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner h1 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #123b28;
}

.page-banner p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .page-banner {
        min-height: 240px;
        background-position: center center !important;
    }

    .page-banner h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .page-banner p {
        font-size: 16px;
        line-height: 1.5;
    }

    .page-banner::before {
        background: rgba(255, 255, 255, 0.82);
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .page-banner {
        min-height: 210px;
    }

    .page-banner h1 {
        font-size: 26px;
    }

    .page-banner p {
        font-size: 15px;
    }
}
