/* ============================================================
   Exclusive Pest Control — Marketing Site Stylesheet
   ============================================================ */

/* --- Reset & Global --- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

::selection {
    background-color: #c41e3a;
    color: #ffffff;
}

/* --- Container --- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* ============================================================
   Navigation
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(27, 42, 74, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background-color: rgba(27, 42, 74, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
}

.nav-logo {
    font-family: "Oswald", sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.logo-exclusive {
    color: #c41e3a;
    font-weight: 700;
}

.logo-pest {
    color: #ffffff;
    font-weight: 400;
}

/* Hamburger Toggle */

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav Menu */

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background-color: #1b2a4a;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nav-menu.is-open {
    display: flex;
}

.nav-link {
    display: block;
    padding: 0.75rem 0;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link:last-child {
    border-bottom: none;
}

.nav-link:hover {
    color: #c41e3a;
}

.nav-link--cta {
    display: inline-block;
    background-color: #c41e3a;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    border-bottom: none;
    transition:
        background-color 0.25s ease,
        transform 0.2s ease;
}

.nav-link--cta:hover {
    background-color: #a3172f;
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-menu .btn {
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
}

.nav-menu .btn + .btn {
    margin-top: 0.35rem;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1b2a4a;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 1) 40px,
            rgba(255, 255, 255, 1) 41px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 1) 40px,
            rgba(255, 255, 255, 1) 41px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 860px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 2rem auto 2rem;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.45));
}

.hero-title {
    font-family: "Oswald", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

/* --- Buttons --- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
    white-space: nowrap;
    line-height: 1.3;
}

.btn--primary {
    background-color: #c41e3a;
    color: #ffffff;
    border-color: #c41e3a;
    font-size: 1rem;
    padding: 0.9rem 2rem;
}

.btn--primary:hover {
    background-color: #a3172f;
    border-color: #a3172f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
}

.btn--outline {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
    background-color: #ffffff;
    color: #1b2a4a;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ============================================================
   Sections — Shared
   ============================================================ */

.section {
    padding: 3rem 0;
}

.section--white {
    background-color: #ffffff;
}

.section--gray {
    background-color: #f0f3f7;
}

.section--navy {
    background-color: #1b2a4a;
    color: #ffffff;
    padding-bottom: 5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1b2a4a;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #c41e3a;
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section--navy .section-title {
    color: #ffffff;
}

.section-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.section--navy .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   Services Section
   ============================================================ */

.subsection-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #1b2a4a;
    letter-spacing: 0.02em;
    padding-left: 1rem;
    border-left: 4px solid #c41e3a;
    margin-bottom: 1.5rem;
}

/* Pest Grid */

.pest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.pest-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    cursor: default;
}

.pest-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.1);
}

.pest-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.pest-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.pest-card:hover .pest-icon img {
    transform: scale(1.08);
}

.pest-name {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1b2a4a;
    margin-bottom: 0.3rem;
}

.pest-desc {
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

/* Additional Services Grid */

.additional-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.additional-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.additional-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.1);
}

.additional-card .pest-icon {
    flex-shrink: 0;
    margin: 0;
}

.additional-card:hover .pest-icon {
    color: #c41e3a;
}

.additional-card .pest-name,
.additional-card .pest-desc {
    text-align: left;
}

/* Section on gray bg — cards may need subtle adjustments */
.section--gray .pest-card,
.section--gray .additional-card {
    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.05),
        0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ============================================================
   Service Areas / Boroughs
   ============================================================ */

.borough-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.borough-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    border-top: 3px solid #c41e3a;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.borough-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.1);
}

.borough-name {
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1b2a4a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
}

.borough-desc {
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* ============================================================
   About / Why Us — Features
   ============================================================ */

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-block {
    text-align: center;
    padding: 1rem 0.5rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #1b2a4a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1b2a4a;
    margin-bottom: 0.4rem;
}

.feature-text {
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.about-text {
    max-width: 720px;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: #334155;
    line-height: 1.8;
    text-align: center;
}

/* ============================================================
   Contact Section
   ============================================================ */

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

.contact-phone {
    font-family: "Oswald", sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.contact-phone a {
    color: #ffffff;
    transition: color 0.25s ease;
}

.contact-phone a:hover {
    color: #c41e3a;
}

.contact-email {
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.contact-email a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.25s ease;
}

.contact-email a:hover {
    color: #ffffff;
}

.contact-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
    background-color: #111d33;
    color: rgba(255, 255, 255, 0.6);
    padding: 2rem 0 2rem;
    font-family: "Inter", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-brand {
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.footer-brand .logo-exclusive {
    color: #c41e3a;
}

.footer-brand .logo-pest {
    color: #ffffff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-legal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
}

.footer-powered {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-powered a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.25s ease;
}

.footer-powered a:hover {
    color: #ffffff;
}

/* ============================================================
   Contact CTA
   ============================================================ */

.contact-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ============================================================
   Operari Plug
   ============================================================ */

.operari-plug {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 0;
}

.operari-plug-eyebrow {
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1rem;
}

.operari-plug-title {
    font-family:
        "Palatino Linotype", "Palatino", "Book Antiqua", Georgia, serif;
    font-size: 2.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.operari-plug-body {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   Booking Modal
   ============================================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 35, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: modalFadeIn 0.2s ease-out;
}

.modal-overlay[hidden] {
    display: none;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.25s ease-out;
    outline: none;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1b2a4a;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.modal-close:hover {
    color: #1b2a4a;
    background: #f1f5f9;
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 540px) {
    .modal-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.modal-field--full {
    grid-column: 1 / -1;
}

.modal-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.01em;
}

.modal-input {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.65rem 0.875rem;
    color: #0f172a;
    font-family: "Inter", sans-serif;
    font-size: 0.9375rem;
    width: 100%;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.modal-input::placeholder {
    color: #94a3b8;
}

.modal-input:focus {
    outline: none;
    border-color: #1b2a4a;
    box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.1);
    background: #ffffff;
}

.modal-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.modal-select option,
.modal-select optgroup {
    background: #ffffff;
    color: #0f172a;
}

.modal-textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-submit {
    text-align: center;
    padding-top: 0.25rem;
}

/* ============================================================
   Success Page
   ============================================================ */

.success-section {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: #f0f3f7;
}

.success-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-title {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1b2a4a;
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.success-body {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.success-btn {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.success-back {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    transition: color 0.2s ease;
}

.success-back:hover {
    color: #1b2a4a;
}

/* ============================================================
   Footer bottom
   ============================================================ */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   Keyframe Animations
   ============================================================ */

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================================
   Responsive — Tablet (768px+)
   ============================================================ */

@media (min-width: 768px) {
    /* Operari Plug */
    .operari-plug-title {
        font-size: 3rem;
        letter-spacing: 0.15em;
        margin-bottom: 1.5rem;
    }

    .operari-plug-body {
        font-size: 1rem;
        margin-bottom: 2.75rem;
    }

    /* Nav */
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: static;
        background-color: transparent;
        padding: 0;
        gap: 0.25rem;
        border-top: none;
        box-shadow: none;
    }

    .nav-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.88rem;
        border-bottom: none;
        position: relative;
    }

    .nav-link:not(.nav-link--cta)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 70%;
        height: 2px;
        background-color: #c41e3a;
        transition: transform 0.25s ease;
        border-radius: 1px;
    }

    .nav-link:not(.nav-link--cta):hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    .nav-link--cta {
        margin-top: 0;
        margin-left: 0.5rem;
        padding: 0.45rem 1.1rem;
        font-size: 0.85rem;
    }

    .nav-menu .btn {
        margin-top: 0;
        width: auto;
    }

    .nav-menu .btn + .btn {
        margin-top: 0;
        margin-left: 0.5rem;
    }

    /* Sections */
    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    /* Hero */
    .hero-title {
        font-size: 4rem;
    }

    /* Services */
    .pest-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Service Areas */
    .borough-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .contact-phone {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
}

/* ============================================================
   Responsive — Desktop (1024px+)
   ============================================================ */

@media (min-width: 1024px) {
    /* Operari Plug */
    .operari-plug-title {
        font-size: 3.75rem;
        letter-spacing: 0.15em;
        margin-bottom: 1.75rem;
    }

    .operari-plug-body {
        font-size: 1.05rem;
        margin-bottom: 3rem;
    }

    .nav-container {
        height: 60px;
    }

    .nav-logo {
        font-size: 1.45rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.85rem;
    }

    .nav-link--cta {
        padding: 0.5rem 1.25rem;
        font-size: 0.88rem;
    }

    /* Sections */
    .section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    /* Services */
    .pest-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    /* Service Areas */
    .borough-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Footer */
    .footer-container {
        flex-wrap: nowrap;
        flex-direction: column;
        padding-bottom: 2.5rem;
    }
}

/* ============================================================
   Responsive — Large Desktop (1280px+)
   ============================================================ */

@media (min-width: 1280px) {
    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}
