:root {
    --dark: #101820;
    --darker: #071018;
    --yellow: #f7b500;
    --yellow-soft: #ffe7a3;
    --green: #1d6b4f;
    --white: #ffffff;
    --muted: #6d7782;
    --light: #f5f7f8;
    --border: rgba(16, 24, 32, 0.1);
    --shadow: 0 22px 60px rgba(7, 16, 24, 0.16);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.fw-black {
    font-weight: 900;
    letter-spacing: -0.055em;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.78);
}

.top-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    height: 38px;
    background: #071018;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.top-strip .container {
    height: 38px;
}

.top-info,
.top-contact {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-info i,
.top-contact i {
    color: var(--yellow);
    margin-right: 6px;
}

.top-contact a {
    color: var(--white);
    font-weight: 800;
}

.glass-nav {
    top: 0;
    padding: 16px 0;
    background: rgba(7, 16, 24, 0.72);
    backdrop-filter: blur(18px);
    transition: all 0.25s ease;
}

@media (min-width: 992px) {
    .glass-nav {
        top: 38px;
    }
}

.glass-nav.scrolled {
    top: 0;
    padding: 10px 0;
    background: rgba(7, 16, 24, 0.95);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #111;
    background: var(--yellow);
    box-shadow: 0 10px 25px rgba(247, 181, 0, 0.32);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    color: var(--white);
    font-size: 1.08rem;
}

.brand-text small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    padding-left: 14px !important;
    padding-right: 14px !important;
}

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

.nav-cta {
    border-radius: 999px;
    font-weight: 900;
    color: #161616;
    box-shadow: 0 10px 25px rgba(247, 181, 0, 0.25);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: linear-gradient(105deg, rgba(7, 16, 24, 0.96), rgba(7, 16, 24, 0.72), rgba(7, 16, 24, 0.28)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 20%, rgba(247, 181, 0, 0.3), transparent 28%), radial-gradient(circle at 12% 86%, rgba(29, 107, 79, 0.35), transparent 25%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    border-radius: 999px;
    font-weight: 850;
    padding-left: 24px;
    padding-right: 24px;
}

.btn-warning {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #151515;
}

.btn-warning:hover {
    background: #ffcc29;
    border-color: #ffcc29;
    color: #151515;
}

.hero-call {
    box-shadow: 0 18px 35px rgba(247, 181, 0, 0.32);
}

.hero-trust {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-trust div {
    min-width: 125px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.hero-trust strong,
.hero-trust span {
    display: block;
}

.hero-trust strong {
    font-size: 1.3rem;
}

.hero-trust span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.86rem;
}

.hero-card {
    border-radius: var(--radius);
    padding: 34px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    color: var(--green);
    margin-bottom: 18px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #20c997;
    box-shadow: 0 0 0 0 rgba(32, 201, 151, 0.7);
    animation: pulse 1.6s infinite;
}

.hero-card h2 {
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.hero-card p {
    color: var(--muted);
}

.check-list {
    padding: 0;
    margin: 24px 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-weight: 700;
}

.check-list i {
    color: var(--green);
}

.scroll-down {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--dark);
    background: var(--yellow);
    animation: bounce 2s infinite;
}

.stats-section {
    position: relative;
    margin-top: -55px;
    z-index: 3;
}

.stat-box {
    padding: 28px 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
    color: var(--green);
}

.stat-label {
    display: block;
    color: var(--muted);
    font-weight: 700;
    margin-top: 8px;
}

.section-padding {
    padding: 110px 0;
}

.bg-light-soft {
    background: linear-gradient(180deg, #fff 0%, var(--light) 100%);
}

.section-title {
    max-width: 820px;
    margin: 0 auto 56px;
}

.section-kicker {
    display: inline-block;
    color: var(--green);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    margin-bottom: 14px;
}

.section-kicker.light {
    color: var(--yellow);
}

.section-title h2,
.section-heading {
    font-weight: 950;
    letter-spacing: -0.045em;
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 18px;
}

.section-title p,
.text-muted-large {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.service-card,
.why-card {
    height: 100%;
    padding: 34px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(7, 16, 24, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(247, 181, 0, 0.45);
}

.service-icon,
.why-card i {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--yellow), #ffe082);
    color: var(--dark);
    font-size: 1.65rem;
    margin-bottom: 24px;
}

.service-card h3,
.why-card h3,
.pest-card h3,
.timeline-item h3 {
    font-weight: 900;
    letter-spacing: -0.025em;
}

.service-card p,
.why-card p,
.pest-card p,
.timeline-item p {
    color: var(--muted);
    line-height: 1.65;
}

.service-card a {
    color: var(--green);
    font-weight: 900;
}

.image-band {
    padding: 110px 0;
    background: #fff;
}

.image-stack {
    position: relative;
    padding-right: 44px;
    padding-bottom: 44px;
}

.image-stack img {
    border-radius: 34px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.img-main {
    width: 100%;
    height: 540px;
}

.img-floating {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 220px;
    border: 8px solid var(--white);
}

.experience-chip {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 16px 20px;
    border-radius: 20px;
    background: var(--dark);
    color: var(--white);
    box-shadow: var(--shadow);
}

.experience-chip strong,
.experience-chip span {
    display: block;
}

.experience-chip strong {
    color: var(--yellow);
    font-size: 1.4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.feature-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    background: var(--light);
    font-weight: 900;
}

.feature-grid i {
    color: var(--green);
    font-size: 1.35rem;
}

.pests-section {
    background: var(--light);
}

.pest-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 15px 45px rgba(7, 16, 24, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.pest-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pest-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(7, 16, 24, 0.35));
}

.pest-body {
    padding: 28px;
}

.pest-tag {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(247, 181, 0, 0.18);
    color: #815b00;
    font-size: 0.78rem;
    font-weight: 950;
    margin-bottom: 14px;
}

.process-section {
    background: #fff;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 22px;
    padding: 28px;
    border-radius: 28px;
    background: var(--light);
    border: 1px solid var(--border);
}

.timeline-number {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: var(--dark);
    color: var(--yellow);
    display: grid;
    place-items: center;
    font-weight: 950;
    font-size: 1.2rem;
}

.cta-section {
    padding: 72px 0;
    background: linear-gradient(135deg, #071018, #17352b);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: var(--white);
    padding: 46px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.cta-box h2 {
    font-weight: 950;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.about-section {
    background: #fff;
}

.about-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.about-list div {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 800;
}

.about-list i {
    color: var(--green);
    font-size: 1.35rem;
}

.about-panel {
    position: relative;
}

.about-panel img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 36px;
    box-shadow: var(--shadow);
}

.about-panel-card {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
}

.about-panel-card h3 {
    font-weight: 950;
}

.about-panel-card p {
    margin: 0;
    color: var(--muted);
}

.why-section {
    background: linear-gradient(180deg, var(--light), #fff);
}

.quote-section {
    background: linear-gradient(135deg, var(--darker), #19392f);
    color: var(--white);
}

.quote-info {
    padding: 42px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-info h2 {
    font-weight: 950;
    letter-spacing: -0.04em;
}

.quote-info p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.quote-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
    padding: 22px;
    border-radius: 22px;
    background: rgba(247, 181, 0, 0.12);
}

.quote-phone i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 1.4rem;
}

.quote-phone span,
.quote-phone a {
    display: block;
}

.quote-phone span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.quote-phone a {
    color: var(--white);
    font-weight: 950;
    font-size: 1.45rem;
}

.quote-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
}

.quote-form {
    padding: 42px;
    border-radius: 32px;
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow);
}

.form-control,
.form-select {
    min-height: 54px;
    border-radius: 16px;
    border-color: #dfe5e8;
    font-weight: 650;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 0.25rem rgba(247, 181, 0, 0.18);
}

.form-label {
    font-weight: 900;
}

.form-success {
    display: none;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(29, 107, 79, 0.1);
    color: var(--green);
    font-weight: 850;
}

.form-success.show {
    display: block;
}

.faq-section {
    background: var(--light);
}

.custom-accordion .accordion-item {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px rgba(7, 16, 24, 0.06);
}

.custom-accordion .accordion-button {
    font-weight: 950;
    padding: 22px 26px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--dark);
    background: var(--yellow-soft);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.footer {
    padding: 70px 0 30px;
    background: #071018;
    color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 950;
    margin-bottom: 16px;
}

.footer-brand i {
    color: var(--yellow);
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 950;
    margin-bottom: 16px;
}

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

.footer li,
.footer a {
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 9px;
}

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

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow) !important;
    font-weight: 950;
    font-size: 1.2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}

.floating-call {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 950;
    box-shadow: 0 18px 40px rgba(7, 16, 24, 0.25);
}

.floating-call:hover {
    color: var(--dark);
    transform: translateY(-2px);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(32, 201, 151, 0.65); }
    70% { box-shadow: 0 0 0 12px rgba(32, 201, 151, 0); }
    100% { box-shadow: 0 0 0 0 rgba(32, 201, 151, 0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 991.98px) {
    .hero-section {
        background-position: 65% center;
    }

    .display-3 {
        font-size: 2.75rem;
    }

    .hero-card {
        margin-bottom: 70px;
    }

    .section-padding,
    .image-band {
        padding: 78px 0;
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .img-main {
        height: 430px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand .brand-text small {
        display: none;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .hero-section .min-vh-100 {
        min-height: auto !important;
        padding-top: 145px !important;
        padding-bottom: 70px;
    }

    .display-3 {
        font-size: 2.35rem;
    }

    .lead {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-card,
    .quote-form,
    .quote-info,
    .cta-box {
        padding: 26px;
        border-radius: 24px;
    }

    .stats-section {
        margin-top: 0;
        padding-top: 30px;
        background: var(--light);
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .image-stack {
        padding-right: 0;
        padding-bottom: 0;
    }

    .img-floating,
    .experience-chip {
        display: none;
    }

    .img-main,
    .about-panel img {
        height: 330px;
    }

    .floating-call {
        left: 16px;
        right: 16px;
        justify-content: center;
    }

    .footer-bottom {
        padding-bottom: 60px;
    }
}
