/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
    --green:        #21c58e;
    --green-light:  #e8f9f3;
    --green-pale:   #e9f7f2;
    --green-cta:    #e1f2ec;
    --dark:         #0c1529;
    --dark-navy:    #111B31;
    --footer-btm:   #091122;
    --heading:      #061a3a;
    --heading-alt:  #061a3a;
    --text:         #808080;
    --text-light:   rgba(255,255,255,0.62);
    --white:        #ffffff;
    --border:       #eeeeee;
    --star:         #ffab01;

    --font-body:    'Poppins', sans-serif;
    --font-head:    'Poppins', sans-serif;

    --max-w:        1200px;
    --radius-card:  20px;
    --radius-img:   30px;
    --shadow-card:  0px 40px 60px 0px rgba(37,59,112,0.10);
    --shadow-soft:  0px 30px 60px 0px rgba(37,59,112,0.10);
    --transition:   all 0.3s ease;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--dark);
    line-height: 1.7em;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    line-height: 1.25em;
    color: var(--heading);
    margin: 0;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; font-family: var(--font-body); }
.page-wrapper { overflow: hidden; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.auto-container {
    max-width: var(--max-w);
    padding: 0 15px;
    margin: 0 auto;
}

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

/* Section title */
.sec-title { margin-bottom: 55px; }
.sec-title .sub-title,
.sub-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.sec-title h2 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 50px;
    line-height: 65px;
    letter-spacing: -1px;
    color: var(--heading);
}
.sec-title-light h2 { color: var(--white); }
.sec-title-light .sub-title { color: var(--green); }

.body-text {
    font-size: 16px;
    line-height: 28px;
    color: var(--text);
    margin-bottom: 15px;
}
.text-light { color: var(--text-light) !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease;
}
.btn-primary:hover { background: #18a878; color: var(--white); }
.btn-primary.btn-lg { padding: 17px 38px; font-size: 17px; }

.btn-outline-green {
    display: inline-block;
    border: 2px solid var(--green);
    color: var(--green);
    padding: 10px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* ============================================================
   Header
   ============================================================ */
.main-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.main-header.sticky {
    position: fixed;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

.header-upper { position: relative; }

.header-inner {
    display: flex;
    align-items: center;
    height: 88px;
    overflow: visible;
    gap: 20px;
}

/* Logo */
.logo { flex-shrink: 0; }
.logo a {
    display: flex;
    align-items: center;
    gap: 9px;
}
.logo-leaf { flex-shrink: 0; }
.logo .logo-text,
.footer-logo span {
    font-size: 19px;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: -0.3px;
    line-height: 1;
}
.logo .logo-text strong,
.footer-logo span strong { font-weight: 700; color: var(--green); }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
}
.main-nav > ul > li {
    position: relative;
    padding: 28px 0;
    margin-right: 30px;
}
.main-nav > ul > li:last-child { margin-right: 0; }
.main-nav > ul > li > a {
    font-size: 15.5px;
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--green); }
.main-nav .arrow { font-size: 10px; }

/* Dropdown */
.main-nav .dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.13);
    min-width: 210px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}
.main-nav > ul > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .dropdown li { padding: 0; margin: 0; }
.main-nav .dropdown li a {
    display: block;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
}
.main-nav .dropdown li a:hover { color: var(--green); padding-left: 28px; }

/* Header right */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: 30px;
}
.header-phone-icon {
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.header-phone-icon:hover { opacity: 1; }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    width: 32px;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Nav close button (mobile) */
.nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 950px;
    background: var(--white);
    overflow: hidden;
}

/* Subtle pattern behind hero */
.hero-bg-pattern {
    position: absolute;
    top: 70px; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(233,247,242,0.9) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(233,247,242,0.6) 0%, transparent 45%);
    pointer-events: none;
}

/* Animated ring */
.hero-shape-circle {
    position: absolute;
    left: 50px;
    top: 145px;
    width: 250px;
    height: 250px;
    border: 65px solid rgba(255,255,255,0.85);
    border-radius: 50%;
    pointer-events: none;
    animation: floatRing 22s linear infinite alternate;
    z-index: 1;
}
@keyframes floatRing {
    0%   { transform: translate(0,0) rotate(0deg); }
    25%  { transform: translate(25px,35px) rotate(90deg); }
    50%  { transform: translate(-15px,55px) rotate(180deg); }
    75%  { transform: translate(35px,15px) rotate(270deg); }
    100% { transform: translate(-8px,45px) rotate(360deg); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 150px 0 0;
    min-height: 950px;
}

.hero-content { max-width: 560px; }

.hero-content h1 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 80px;
    line-height: 90px;
    color: var(--dark);
    letter-spacing: -1px;
    margin-bottom: 35px;
}
.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    line-height: 34px;
    color: var(--dark);
    margin-bottom: 30px;
}

/* Hero image side */
.hero-image-wrapper {
    position: relative;
    flex-shrink: 0;
}
.hero-img-bg {
    position: absolute;
    bottom: 0;
    left: -41px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--green-pale);
    pointer-events: none;
}
.hero-img { position: relative; margin-top: -60px; }
.hero-img img {
    width: 440px;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-img);
    position: relative;
    z-index: 2;
}

/* Floating 24/7 card */
.hero-card {
    position: absolute;
    right: -68px;
    bottom: 300px;
    background: var(--white);
    border-radius: var(--radius-img);
    padding: 22px 50px;
    text-align: center;
    box-shadow: var(--shadow-card);
    z-index: 10;
    white-space: nowrap;
}
.hero-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 9px;
}
.hero-card .hero-card-phone {
    font-size: 20px;
    font-weight: 700;
}
.hero-card .hero-card-phone a { color: var(--green); }

/* Decorative blobs */
.hero-shape-two,
.hero-shape-three {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.hero-shape-two {
    width: 85px;
    height: 85px;
    bottom: 211px;
    left: -88px;
    background: radial-gradient(circle, rgba(33,197,142,0.5) 0%, rgba(33,197,142,0.08) 70%);
}
.hero-shape-three {
    width: 60px;
    height: 60px;
    right: 10px;
    top: 80px;
    background: radial-gradient(circle, rgba(33,197,142,0.5) 0%, rgba(33,197,142,0.08) 70%);
}

/* ============================================================
   About Section
   ============================================================ */
.about-section {
    position: relative;
    padding: 150px 0 120px;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img-col { flex: 0 0 50%; }
.about-content-col { flex: 1; }

.about-img-wrap {
    position: relative;
    padding-left: 100px;
    padding-bottom: 80px;
}

/* Dot pattern decorations */
.about-dots {
    position: absolute;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(circle, rgba(33,197,142,0.55) 2px, transparent 2px);
    background-size: 13px 13px;
    pointer-events: none;
    z-index: 0;
}
.about-dots-tl { top: -38px; left: 42px; }
.about-dots-br { right: 8px; bottom: 36px; }

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-img);
    z-index: 1;
}
.about-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-img);
    display: block;
    transition: transform 0.6s ease;
}
.about-img:hover img { transform: scale(1.03); }

/* Bottom-left badge */
.about-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(37,59,112,0.13);
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: 160px;
}
.about-badge span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

/* Checklist */
.check-list { margin-top: 22px; }
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--dark);
    font-weight: 500;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 15px;
}

/* ============================================================
   Services Section
   ============================================================ */
.services-section {
    position: relative;
    padding: 120px 0 150px;
    background: linear-gradient(180deg, rgba(233,247,242,0.35) 0%, rgba(233,247,242,1) 100%);
}

.services-wrapper {
    position: relative;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 50px 30px;
    text-align: center;
    transition: box-shadow 0.5s ease;
    cursor: pointer;
}
.service-card:hover { box-shadow: var(--shadow-card); }

.svc-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease, transform 0.5s ease;
}
.svc-icon svg { width: 52px; height: 52px; }
.service-card:hover .svc-icon {
    background: var(--green);
    transform: rotate(180deg);
}
.service-card:hover .svc-icon svg path,
.service-card:hover .svc-icon svg ellipse,
.service-card:hover .svc-icon svg rect,
.service-card:hover .svc-icon svg circle {
    stroke: #fff;
    fill: rgba(255,255,255,0.25);
}

.service-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-alt);
    margin-bottom: 14px;
}
.service-card p {
    font-size: 15px;
    line-height: 26px;
    color: var(--text);
    margin-bottom: 22px;
}

/* ============================================================
   Why Choose Us Section
   ============================================================ */
.why-section {
    position: relative;
    padding: 140px 0 110px;
    overflow: hidden;
}

.why-sec-bg {
    position: absolute;
    inset: 0;
}
.why-left-side {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 50%;
    overflow: hidden;
}
.why-left-side svg {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    height: 100%;
    width: auto;
}
.why-right-side {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 50%;
    overflow: hidden;
}
.why-right-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.75;
}

/* Dot decorations */
.why-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(33,197,142,0.45) 2px, transparent 2px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 3;
}
.why-dots-tl { top: 90px; left: 102px; }
.why-dots-bl { left: 17%; bottom: 107px; }

.why-inner {
    position: relative;
    z-index: 4;
    max-width: 860px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 10px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 40px 40px 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
}
.why-card:hover { box-shadow: 0 40px 80px rgba(37,59,112,0.18); }

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 20px;
    transition: background 0.5s ease;
}
.why-card:hover .why-icon { background: var(--green); }
.why-card:hover .why-icon svg path { stroke: var(--white); }

.why-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-alt);
    margin-bottom: 10px;
}
.why-content p {
    font-size: 15px;
    line-height: 26px;
    color: var(--text);
    margin-bottom: 20px;
}

/* ============================================================
   Working Process
   ============================================================ */
.process-section {
    position: relative;
    padding: 150px 0 120px;
    background: linear-gradient(0deg, rgba(233,247,242,0.35) 0%, rgba(233,247,242,1) 100%);
}

.process-wrapper { position: relative; }

/* Dashed connector line between cards */
.process-connector {
    position: absolute;
    top: 100px;
    left: calc(16.666% + 30px);
    right: calc(16.666% + 30px);
    height: 2px;
    border-top: 2px dashed rgba(33,197,142,0.35);
    pointer-events: none;
    z-index: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-card { text-align: center; }

.process-img {
    width: 200px;
    height: 200px;
    border-radius: 70px;
    overflow: hidden;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 40px 50px rgba(29,113,104,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.4s ease;
}
.process-card:hover .process-img { box-shadow: 0 20px 60px rgba(29,113,104,0.18); }
.process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 65px;
    display: block;
}

.process-count {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin: 22px auto 16px;
    display: block;
}

.process-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-alt);
    margin-bottom: 12px;
}
.process-card p {
    font-size: 15px;
    line-height: 26px;
    color: var(--text);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-section {
    position: relative;
    padding: 150px 0 120px;
    background: var(--white);
}

.testi-overflow { overflow: hidden; margin-bottom: 40px; }

.testi-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}

.testi-card {
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: var(--radius-card);
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.testi-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}
.testi-stars {
    color: var(--star);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}
.testi-card p {
    font-size: 15px;
    line-height: 28px;
    color: var(--text);
    margin-bottom: 26px;
    font-style: italic;
}
.testi-author h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.testi-author span {
    font-size: 14px;
    color: var(--green);
    font-weight: 500;
}

/* Navigation */
.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
.testi-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px dashed var(--green);
    background: transparent;
    color: var(--green);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.testi-btn:hover { background: var(--green); color: var(--white); border-style: solid; }
.testi-dots { display: flex; gap: 10px; align-items: center; }
.t-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.25;
    position: relative;
}
.t-dot.active {
    opacity: 1;
}
.t-dot.active::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid var(--dark);
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
    position: relative;
    padding: 64px 0 35px;
    background: var(--green-cta);
    overflow: hidden;
}
.cta-svg-shape {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-svg-shape svg { width: 100%; height: 100%; }

.cta-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 80px;
}

.cta-img-col { flex: 0 0 50%; }
.cta-img-block {
    position: relative;
    display: inline-block;
    padding-left: 70px;
    padding-bottom: 70px;
}
.cta-img-circle {
    border-radius: 50%;
    overflow: hidden;
    width: 380px;
    height: 380px;
    box-shadow: var(--shadow-card);
}
.cta-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.cta-offer-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: var(--radius-img);
    box-shadow: 0 -28px 28px 0 rgba(37,59,112,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    text-align: center;
}
.cta-offer-badge h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--green);
    margin-top: 6px;
}

.cta-content-col { flex: 1; }
.cta-content-col h2 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 50px;
    line-height: 65px;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--heading);
}
.cta-content-col p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text);
    margin-bottom: 32px;
}

/* ============================================================
   Fun Facts
   ============================================================ */
.funfacts-section {
    position: relative;
    padding: 120px 0 90px;
    background: url('https://picsum.photos/seed/darkbg/1600/600') center/cover no-repeat;
}
.funfacts-overlay {
    position: absolute;
    inset: 0;
    background: var(--green);
    opacity: 0.85;
}
.funfacts-section .auto-container { position: relative; z-index: 2; }

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

.funfact-card {
    background: var(--white);
    border-radius: var(--radius-card);
    text-align: center;
    padding: 31px 20px;
    transition: transform 0.3s ease;
}
.funfact-card:hover { transform: translateY(-4px); }

.funfact-number {
    font-size: 44px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
    line-height: 1;
}
.funfact-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    position: relative;
    padding: 150px 0 120px;
    background: var(--white);
}

.faq-top {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}
.faq-top-left { flex: 0 0 50%; }
.faq-top-left .sec-title { margin-bottom: 0; }
.faq-top-right {
    flex: 1;
    padding-top: 30px;
}
.faq-top-right p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
}
.faq-block {
    padding: 38px 40px;
    border-bottom: 1px solid var(--border);
}
.faq-block:nth-child(odd)  { border-right: 1px solid var(--border); }
.faq-block h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-alt);
    margin-bottom: 12px;
}
.faq-block p {
    font-size: 15px;
    line-height: 26px;
    color: var(--text);
}

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter-section {
    position: relative;
    padding: 160px 0 100px;
    background: var(--green-pale);
    overflow: hidden;
}
.newsletter-dots {
    position: absolute;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, rgba(33,197,142,0.35) 2px, transparent 2px);
    background-size: 16px 16px;
    pointer-events: none;
}
.newsletter-dots-l { top: 130px; left: 8%; }
.newsletter-dots-r { right: 7%; bottom: 130px; }

.newsletter-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.newsletter-inner h2 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: var(--heading);
}
.newsletter-inner h2 span { color: var(--green); }
.newsletter-inner p {
    font-size: 18px;
    line-height: 30px;
    color: #333;
    margin-bottom: 40px;
}

/* ============================================================
   Footer
   ============================================================ */
.main-footer { background: var(--dark); }

.footer-upper { padding: 100px 0 70px; }

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}
.footer-logo span {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    line-height: 1;
}
.footer-logo strong { font-weight: 700; color: var(--green); }

.footer-about p {
    font-size: 15px;
    line-height: 28px;
    color: #b1b2b6;
    margin-bottom: 22px;
}
.footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
}
.footer-copy a { color: var(--green); }
.footer-copy a:hover { opacity: 0.8; }

.footer-widget-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(255,255,255,0.08);
    position: relative;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--green);
}

.footer-links-col ul li { margin-bottom: 12px; }
.footer-links-col ul li a {
    font-size: 15px;
    color: #b1b2b6;
    transition: var(--transition);
}
.footer-links-col ul li a:hover {
    color: var(--green);
    padding-left: 4px;
}

.footer-contact-col ul li {
    font-size: 15px;
    color: #b1b2b6;
    margin-bottom: 14px;
    line-height: 1.65;
}
.footer-contact-col ul li a { color: var(--green); }
.footer-contact-col ul li a:hover { opacity: 0.8; }

.footer-bottom {
    background: var(--footer-btm);
    padding: 16px 0;
}
.footer-bottom p {
    font-size: 13px;
    line-height: 20px;
    color: #b1b2b6;
    opacity: 0.65;
}

/* ============================================================
   Scroll to Top
   ============================================================ */
.scroll-top {
    position: fixed;
    right: 50px;
    bottom: 110px;
    width: 55px;
    height: 55px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    border: 2px dashed rgba(255,255,255,0.6);
    box-shadow: 0 8px 28px rgba(33,197,142,0.4);
    z-index: 9999;
    transition: var(--transition);
    text-align: center;
}
.scroll-top:hover { background: #18a878; color: var(--white); }

/* ============================================================
   Responsive — 1100px (collapse nav)
   ============================================================ */
@media (max-width: 1150px) {
    .hero-content h1 { font-size: 64px; line-height: 74px; }
    .hero-img img { width: 380px; height: 520px; }
    .hero-img-bg { width: 420px; height: 420px; }
    .hero-card { right: -10px; padding: 20px 30px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

/* ============================================================
   Responsive — Tablet 991px
   ============================================================ */
@media (max-width: 991px) {
    /* Nav becomes off-canvas */
    .main-nav {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(12,21,41,0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 99999;
    }
    .main-nav.open { display: flex; }
    .main-nav > ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .main-nav > ul > li { padding: 12px 0; margin: 0; }
    .main-nav > ul > li > a { color: var(--white); font-size: 20px; }
    .main-nav > ul > li > a:hover { color: var(--green); }
    .main-nav .dropdown { display: none !important; }
    .nav-close { display: block; }

    .mobile-toggle { display: flex; }
    .header-phone-icon { display: none; }

    /* Hero */
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 80px;
    }
    .hero-content h1 { font-size: 52px; line-height: 62px; }
    .hero-image-wrapper { margin-top: 50px; }
    .hero-card { right: 0; bottom: 240px; }
    .hero-shape-circle { display: none; }

    /* About */
    .about-row { flex-direction: column; gap: 50px; }
    .about-img-col { flex: none; width: 100%; }
    .about-content-col { width: 100%; }
    .about-img-wrap { padding-left: 30px; padding-bottom: 80px; max-width: 500px; margin: 0 auto; }

    /* Sections */
    .sec-title h2 { font-size: 40px; line-height: 52px; }

    /* Why */
    .why-left-side,
    .why-right-side { display: none; }
    .why-section { background: var(--dark-navy); }
    .why-grid { grid-template-columns: 1fr; }

    /* Process */
    .process-grid { grid-template-columns: 1fr; max-width: 380px; margin: 20px auto 0; }
    .process-connector { display: none; }

    /* Funfacts */
    .funfacts-grid { grid-template-columns: 1fr 1fr; }

    /* CTA */
    .cta-row { flex-direction: column; gap: 60px; }
    .cta-img-col { flex: none; width: 100%; display: flex; justify-content: center; }
    .cta-content-col { width: 100%; text-align: center; }

    /* FAQ */
    .faq-top { flex-direction: column; gap: 20px; }
    .faq-top-left { flex: none; }
    .faq-top-right { padding-top: 0; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
}

/* ============================================================
   Responsive — Mobile 768px
   ============================================================ */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 42px; line-height: 52px; }
    .hero-subtitle { font-size: 18px; }
    .hero-img img { width: 320px; height: 420px; }
    .hero-img-bg { width: 340px; height: 340px; }
    .hero-card {
        position: relative;
        right: auto; bottom: auto;
        display: inline-block;
        margin-top: 24px;
    }

    .about-section,
    .services-section,
    .process-section,
    .testimonials-section,
    .faq-section,
    .why-section { padding-top: 90px; padding-bottom: 70px; }

    .sec-title h2 { font-size: 34px; line-height: 44px; }
    .sec-title { margin-bottom: 40px; }

    .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .service-card { padding: 36px 20px; }
    .svc-icon { width: 90px; height: 90px; }

    .faq-grid { grid-template-columns: 1fr; }
    .faq-block:nth-child(odd) { border-right: none; }

    .funfacts-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .funfact-number { font-size: 36px; }

    .newsletter-section { padding: 90px 0 70px; }
    .newsletter-inner h2 { font-size: 34px; line-height: 44px; }
    .newsletter-inner p { font-size: 16px; }

    .cta-content-col h2 { font-size: 38px; line-height: 50px; }
    .cta-img-circle { width: 300px; height: 300px; }
    .cta-offer-badge { width: 160px; height: 160px; font-size: 36px; }
    .cta-img-block { padding-left: 50px; padding-bottom: 50px; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-upper { padding: 70px 0 50px; }

    .scroll-top { right: 25px; bottom: 70px; width: 46px; height: 46px; font-size: 22px; }
}

/* ============================================================
   Responsive — Mobile 480px
   ============================================================ */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 36px; line-height: 44px; }
    .hero-img img { width: 280px; height: 360px; }
    .hero-img-bg { width: 290px; height: 290px; }
    .hero-shape-two, .hero-shape-three { display: none; }

    .services-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

    .btn-primary, .btn-outline-green { font-size: 15px; }
    .btn-primary.btn-lg { padding: 15px 28px; font-size: 15px; }

    .funfacts-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }

    .header-right .btn-primary { display: none; }
    .header-phone-icon { display: flex; }
}

/* ============================================================
   Why Inner — wider to fit 6 cards (2 columns × 3 rows)
   ============================================================ */
.why-inner-wide { max-width: 100%; }

/* ============================================================
   Dezinsekta Service Photo Cards
   ============================================================ */
.dez-services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-cat-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green);
    padding: 6px 0 10px;
    border-bottom: 2px solid var(--green-light);
    margin-top: 32px;
    margin-bottom: 16px;
}
.service-cat-label:first-child { margin-top: 0; }

.service-cat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dez-service-card {
    background: var(--white);
    border: 1.5px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.dez-service-card:hover {
    border-color: var(--green);
    box-shadow: 0 8px 28px rgba(33,197,142,0.15);
    transform: translateY(-4px);
}
.dez-service-img {
    aspect-ratio: 1 / 1;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.dez-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dez-service-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.dez-service-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-alt);
    margin-bottom: 6px;
    line-height: 1.3;
}
.dez-service-body p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
    margin: 0 0 10px;
    flex: 1;
}
.service-more {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    margin-top: auto;
}

/* ============================================================
   Quote / Form Section
   ============================================================ */
.quote-section {
    position: relative;
    padding: 120px 0;
    background: var(--dark-navy);
    overflow: hidden;
}
.quote-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.quote-text .sub-title { color: var(--green); }
.quote-text h2 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 46px;
    line-height: 56px;
    letter-spacing: -1px;
    color: var(--white);
    margin: 10px 0 16px;
}
.quote-text > p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-light);
}
.quote-text .check-list li { color: rgba(255,255,255,0.85); font-weight: 400; }
.quote-text .check-list li::before { color: var(--green); }

.quote-form-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.15s;
    outline: none;
    appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
    padding: 16px;
}
.form-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 12px;
}

/* ============================================================
   Funfacts — stats background image
   ============================================================ */
.funfacts-section {
    background: url('../img/stats-bg.jpg') center 80% / cover no-repeat !important;
}
.funfacts-overlay {
    background: rgba(10, 80, 40, 0.72) !important;
    opacity: 1 !important;
}

/* ============================================================
   Responsive additions
   ============================================================ */
@media (max-width: 991px) {
    .quote-inner { grid-template-columns: 1fr; gap: 50px; }
    .quote-text h2 { font-size: 36px; line-height: 46px; }
    .service-cat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .quote-section { padding: 80px 0; }
    .quote-form-card { padding: 28px 20px; }
}
@media (max-width: 480px) {
    .quote-text h2 { font-size: 30px; line-height: 38px; }
}

@media (max-width: 600px) {
    .service-cat-row {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    .service-cat-row::-webkit-scrollbar { display: none; }
    .dez-service-card {
        flex: 0 0 72% !important;
        min-width: 0;
        scroll-snap-align: start;
    }
}

/* ============================================================
   Hero — image background + form card layout
   ============================================================ */
.hero-section--img {
    background: url('../img/hero-pest-control.jpg') center/cover no-repeat;
    min-height: 820px;
}
/*.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,18,38,0.82) 0%, rgba(10,18,38,0.55) 100%);
    z-index: 1;
}*/
.hero-section--img .auto-container { position: relative; z-index: 2; }

.hero-inner--form {
    align-items: center;
    padding: 150px 0 80px;
    min-height: 820px;
    gap: 60px;
}
.hero-inner--form .hero-content { max-width: 520px; }
.hero-inner--form .hero-content h1 { color: var(--white); }

.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 36px 40px 28px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    flex-shrink: 0;
    width: 420px;
}
.hero-form-card h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 26px;
    color: var(--heading);
    margin-bottom: 4px;
}
.hero-form-card > p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 20px;
}

@media (max-width: 1100px) {
    .hero-form-card { width: 380px; padding: 28px 28px 24px; }
}
@media (max-width: 991px) {
    .hero-inner--form {
        flex-direction: column;
        text-align: center;
        padding: 130px 0 60px;
        min-height: auto;
    }
    .hero-form-card { width: 100%; max-width: 480px; }
}

/* ============================================================
   Header — white text (transparent state)
   ============================================================ */
.main-header:not(.sticky) .main-nav > ul > li > a { color: var(--white); }
.main-header:not(.sticky) .main-nav > ul > li > a:hover { color: var(--green); }
.main-header:not(.sticky) .main-nav > ul > li.active > a { color: var(--green); }
.main-header:not(.sticky) .header-phone-icon { color: var(--white); }
.main-header.sticky .header-phone-icon { color: var(--dark); }
.main-header:not(.sticky) .mobile-toggle span { background: var(--white); }

/* ============================================================
   Mega-menu dropdown
   ============================================================ */
.has-megamenu { position: static !important; }

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.14);
    padding: 28px 32px;
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(4, 1fr);
    min-width: 640px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.has-megamenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-cat {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
    margin-top: 16px;
}
.mega-cat:first-child { margin-top: 0; }

.mega-menu a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    padding: 5px 0;
    transition: color 0.2s, padding-left 0.2s;
}
.mega-menu a:hover { color: var(--green); padding-left: 6px; }

@media (max-width: 991px) {
    .mega-menu { display: none !important; }
}

@media (max-width: 600px) {
    .testi-card {
        padding: 24px 20px;
    }
    .testi-card p {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 16px;
    }
    .testi-stars {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    .testi-author h4 { font-size: 15px; }
    .testi-author span { font-size: 13px; }
}

@media (max-width: 768px) {
    .header-inner {
        position: relative;
        justify-content: flex-end;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}
