/* ==========================================
   Vinx Pest Control - Main Stylesheet
   ========================================== */


/* CSS Variables */
:root {
    --primary-color: #3AB54B;
    --primary-dark: #194342;
    --secondary-color: #194342;
    --text-dark: #241F20;
    --text-light: #666666;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --border-color: #e8e8e8;
    --gradient-primary: linear-gradient(135deg, #3AB54B 0%, #194342 100%);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Oswald', sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary-color);
}

h1 {
    font-size: clamp(48px, 6vw, 85px);
    font-weight: 500;
}

h2 {
    font-size: clamp(34px, 4vw, 50px);
}

h3 {
    font-size: clamp(20px, 2vw, 24px);
}

h4 {
    font-size: clamp(18px, 1.5vw, 20px);
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 40px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Header Styles */
/* ═══════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Top Bar */
.top-bar {
    background: #194342;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

.top-bar-left i { color: #3AB54B; font-size: 11px; }

.top-bar-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0;
}

.top-bar-links li { display: flex; align-items: center; }

.top-bar-links li + li::before {
    content: "|";
    color: rgba(255,255,255,0.25);
    margin: 0 12px;
}

.top-bar-links a {
    color: rgba(255,255,255,0.80);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-links a:hover { color: #3AB54B; }

.top-bar-links a.phone-link {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

.top-bar-links a.phone-link i { color: #3AB54B; }

/* Main Nav */
.main-nav {
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 10px;
}

.logo { flex-shrink: 0; }
.logo img { height: 50px; width: auto; }

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu > li > a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #241F20;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    text-transform: none;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background: #3AB54B;
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: #3AB54B; }

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }

.nav-menu > li > a i.fa-chevron-down {
    font-size: 10px;
    color: #aaa;
    transition: transform 0.2s, color 0.2s;
    margin-left: 2px;
}

.nav-menu > li:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
    color: #3AB54B;
}

/* Get Quote CTA Button */
.btn-nav-quote {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    background: #3AB54B !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s !important;
    margin-left: 6px;
    height: auto !important;
}

.btn-nav-quote:hover {
    background: #2fa040 !important;
    transform: translateY(-1px) !important;
    color: #ffffff !important;
}

.btn-nav-quote::after { display: none !important; }

/* Standard Dropdown */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    min-width: 230px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.13);
    border-radius: 0 0 12px 12px;
    border-top: 3px solid #3AB54B;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 200;
    overflow: visible;
    list-style: none;
    padding: 6px 0;
    margin: 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li { border-bottom: 1px solid #f5f5f5; }
.dropdown li:last-child { border-bottom: none; }

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.dropdown a:hover {
    background: #f5faf5;
    color: #194342;
    padding-left: 24px;
    border-left-color: #3AB54B;
}

/* ── Nested flyout (sub-dropdown) under Locations ── */
.dropdown li.has-subdrop { position: relative; }
.dropdown li.has-subdrop > a .subdrop-arrow {
    margin-left: auto;
    font-size: 10px;
    opacity: 0.55;
    transition: opacity 0.15s;
}
.dropdown li.has-subdrop:hover > a .subdrop-arrow { opacity: 1; }

.subdropdown {
    position: absolute;
    top: -6px;
    right: calc(100% + 2px);
    left: auto;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.13);
    border-radius: 12px;
    border-top: 3px solid #3AB54B;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 300;
    list-style: none;
    padding: 6px 0;
    margin: 0;
}
.dropdown li.has-subdrop:hover .subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.subdropdown li { border-bottom: 1px solid #f5f5f5; }
.subdropdown li:last-child { border-bottom: none; }
.subdropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 13.5px;
    color: #333;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    border-left: 3px solid transparent;
    font-weight: 500;
}
.subdropdown a:hover {
    background: #f5faf5;
    color: #194342;
    padding-left: 24px;
    border-left-color: #3AB54B;
}
.subdropdown a i { font-size: 13px; color: #3AB54B; width: 16px; flex-shrink: 0; }

/* Mobile: sub-dropdown flattens inline */
@media (max-width: 1024px) {
    .subdropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: none;
        border-radius: 0;
        padding-left: 18px;
        background: #fafff8;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .dropdown li.has-subdrop.active .subdropdown { max-height: 400px; }
    .dropdown li.has-subdrop > a .subdrop-arrow { display: none; }
}

/* Mega Menu */
.has-mega { position: static; }

.mega-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 14px 50px rgba(0,0,0,0.13);
    border-top: 3px solid #3AB54B;
    border-radius: 0 0 14px 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 200;
    display: grid;
    grid-template-columns: 210px 1fr;
    overflow: hidden;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-sidebar {
    background: #194342;
    padding: 28px 22px;
}

.mega-sidebar h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.mega-sidebar p {
    font-size: 13px;
    color: rgba(255,255,255,0.60);
    line-height: 1.6;
    margin-bottom: 22px;
}

.mega-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #3AB54B;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.mega-sidebar-cta:hover { background: #2fa040; }

.mega-links {
    padding: 18px 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    align-content: start;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 14px;
    border-radius: 9px;
    text-decoration: none;
    transition: background 0.15s;
    color: #333;
}

.mega-link:hover { background: #f5faf5; }

.mega-link-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 9px;
    background: #f0f9f1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.mega-link-icon i { font-size: 16px; color: #3AB54B; transition: color 0.15s; }

.mega-link-icon img { width: 26px; height: 26px; object-fit: contain; transition: filter 0.15s; display: block; }

.mega-link:hover .mega-link-icon { background: #3AB54B; }
.mega-link:hover .mega-link-icon i { color: #ffffff; }
.mega-link:hover .mega-link-icon img { filter: brightness(0) invert(1); }

.mega-link-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #241F20;
    margin-bottom: 2px;
    transition: color 0.15s;
}

.mega-link:hover .mega-link-text strong { color: #194342; }

.mega-link-text span {
    font-size: 12px;
    color: #999;
    line-height: 1.3;
}

/* Trust Strip */
/* ── Trust Bar — static badge row ── */
.trust-strip {
    background: #ffffff;
    border-top: 1.5px solid #e6f0e6;
    border-bottom: 1.5px solid #e6f0e6;
    padding: 0;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 18px rgba(25,67,66,0.06);
}

.trust-strip::before,
.trust-strip::after { display: none; }

.trust-strip-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: none;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 18px 12px;
    text-decoration: none;
    color: inherit;
    cursor: default;
    flex: 1;
    text-align: center;
    transition: background 0.2s;
    position: relative;
}

a.trust-item { cursor: pointer; }
a.trust-item:hover { background: #f5fdf5; }
a.trust-item:hover .trust-icon-wrap,
.trust-item:hover .trust-icon-wrap { transform: translateY(-2px); }

.trust-item img {
    height: 36px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.trust-icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 13px;
    background: #f0f9f1;
    border: 1.5px solid #d6ead7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.22s;
}

.trust-icon-wrap i { font-size: 20px; color: #3AB54B; }

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

.trust-item-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #194342;
    line-height: 1.25;
    white-space: normal;
}

.trust-item-text span {
    display: block;
    font-size: 11.5px;
    color: #999;
    line-height: 1.35;
    margin-top: 2px;
    white-space: normal;
}

.trust-divider {
    width: 1px;
    background: #e6f0e6;
    flex-shrink: 0;
    align-self: stretch;
    margin: 14px 0;
}

@media (max-width: 1060px) {
    .trust-strip-inner { flex-wrap: wrap; padding: 0; }
    .trust-item { flex: 1 1 33%; padding: 16px 10px; min-width: 110px; }
    .trust-divider { display: none; }
    .trust-item { border-bottom: 1px solid #e6f0e6; }
}

@media (max-width: 520px) {
    .trust-item { flex: 1 1 50%; }
}

/* Service-card pest icons on location pages — match homepage style */
.service-link img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Metro-feature video on location pages */
.video-section {
    padding: 60px 0;
    background: var(--light-gray);
}
.video-section video {
    display: block;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 25px !important;
    border-radius: 5px;
}

.btn-nav:hover {
    background: var(--secondary-color);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    border-bottom: 1px solid var(--border-color);
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
}

.dropdown a:hover {
    background: var(--light-gray);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: #3AB54B;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 14px;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 40px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    transition: background 0.2s ease;
}

.mobile-menu-toggle.active {
    background: #194342;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/2026/03/Vinx-Technician-in-Charleston-bg-min.webp') center center / cover no-repeat;
    z-index: -2;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17, 61, 60, 0.9) 0%, rgba(17, 61, 60, 0.7) 50%, transparent 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-text h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-form-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.form-header img {
    width: 50px;
    height: auto;
}

.form-header p {
    font-family: var(--font-primary);
    font-size: 32px;
    margin: 0;
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    background: rgba(17, 61, 60, 0.05);
}

.quote-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.quote-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quote-form button {
    width: 100%;
    margin-top: 10px;
}

.call-us {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.call-us a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.call-title {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
}

.call-subtitle {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

/* Quote Bar Section */
.quote-bar {
    background: linear-gradient(to bottom, transparent, var(--light-gray));
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.quote-bar-inner {
    background: var(--white);
    padding: 27px 30px;
    border-radius: 20px;
    border: 1px solid rgba(55, 178, 71, 0.25);
    box-shadow: 0 4px 15px rgba(57, 180, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.quote-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-bar-left img {
    width: 50px;
}

.quote-bar-left p {
    font-family: var(--font-primary);
    font-size: 24px;
    margin: 0;
}

.inline-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 600px;
}

.inline-form input {
    flex: 1;
    padding: 13px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
}

.inline-form button {
    border-radius: 50px;
    padding: 13px 25px;
}

.quote-bar-right a {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

.subtitle {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

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

.service-card {
    background: var(--white);
    padding: 45px 20px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    transition: var(--transition);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

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

.pricing-card {
    background: var(--white);
    border-radius: 35px;
    border: 7px solid var(--primary-color);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge img {
    width: 40%;
    margin-bottom: 20px;
}

.pricing-header {
    background: var(--primary-color);
    margin: 0 -30px;
    padding: 20px;
}

.pricing-header h4 {
    color: var(--white);
    font-size: 20px;
    margin: 0;
}

.pricing-tagline {
    font-style: italic;
    margin: 20px 0 10px;
}

.pricing-features {
    text-align: left;
    padding: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.pricing-features i {
    color: var(--primary-color);
}

.pricing-price {
    padding: 20px;
    border-top: 2px solid var(--border-color);
    margin-top: 20px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price .amount {
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price .period {
    font-size: 24px;
    color: var(--text-light);
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.why-us-section .subtitle,
.why-us-section h2 {
    color: var(--white);
}

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

.why-us-card {
    text-align: center;
    padding: 30px;
}

.why-us-card .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
}

.why-us-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.why-us-card p {
    opacity: 0.8;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #ffc107;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary-color);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 20px;
}

/* Footer */
.site-footer {
    background: #0f2a29;
    color: rgba(255,255,255,0.65);
    padding: 64px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1.1fr 1.1fr;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col p {
    color: rgba(255,255,255,0.60);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 0;
}

.footer-address {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-address li {
    font-size: 13.5px;
    margin-bottom: 5px;
    line-height: 1.55;
    color: rgba(255,255,255,0.60);
}
.footer-address a {
    color: #3AB54B;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-address a:hover {
    color: #fff;
}
.footer-h4-secondary {
    margin-top: 24px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 18px;
    display: block;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-col ul a:hover {
    color: #3AB54B;
    padding-left: 4px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-links a:hover {
    background: #3AB54B;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.40);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.40);
}

.footer-bottom ul {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom ul a {
    color: rgba(255,255,255,0.40);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-bottom ul a:hover {
    color: #3AB54B;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-form-box {
        max-width: 500px;
        margin: 0 auto;
    }

    .quote-bar-inner {
        flex-direction: column;
        gap: 20px;
    }

    .inline-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .quote-bar-left,
    .quote-bar-right {
        width: 100%;
        justify-content: center;
    }

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

    .pricing-card.featured {
        transform: none;
    }

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

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* ── Show hamburger button ── */
    .mobile-menu-toggle {
        display: flex !important;
    }

    /* ── Mobile drawer ── */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 280px !important;
        max-width: 85vw !important;
        height: 100% !important;
        background: #ffffff !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        box-shadow: 6px 0 30px rgba(0,0,0,0.22) !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        z-index: 1050 !important;
        visibility: visible !important;
        opacity: 1 !important;
        list-style: none !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
    }

    /* Nav items */
    .nav-menu > li {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }

    .nav-menu > li > a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: auto !important;
        padding: 15px 20px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #194342 !important;
        text-decoration: none !important;
        white-space: normal !important;
        box-sizing: border-box !important;
    }

    .nav-menu > li > a::after { display: none !important; }

    .nav-menu > li > a i.fa-chevron-down {
        font-size: 11px !important;
        flex-shrink: 0 !important;
        transition: transform 0.3s ease !important;
        color: #888 !important;
        margin-left: auto !important;
    }

    .nav-menu > li.active > a i.fa-chevron-down {
        transform: rotate(180deg) !important;
    }

    /* Standard dropdowns on mobile */
    .has-dropdown { position: static !important; }

    .dropdown {
        position: static !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.35s ease !important;
        background: #f8fdf8 !important;
        border-top: 1px solid #e8f5e9 !important;
        border-radius: 0 !important;
    }

    .has-dropdown.active .dropdown {
        max-height: 1200px !important;
    }

    .dropdown a {
        padding: 12px 20px 12px 36px !important;
        font-size: 14px !important;
        border-left: none !important;
    }

    .dropdown a:hover {
        padding-left: 36px !important;
    }

    /* Sub-dropdown (Charleston) on mobile */
    .subdropdown {
        position: static !important;
        right: auto !important;
        left: auto !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        border-top: none !important;
        border-radius: 0 !important;
        background: #edfaef !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        padding: 0 !important;
    }

    .dropdown li.has-subdrop.active .subdropdown {
        max-height: 500px !important;
    }

    .subdropdown a {
        padding: 11px 20px 11px 52px !important;
        font-size: 13px !important;
        border-left: none !important;
    }

    .subdropdown a:hover {
        padding-left: 52px !important;
    }

    .dropdown li.has-subdrop > a .subdrop-arrow { display: none !important; }

    /* Mega menus on mobile */
    .has-mega { position: static !important; }

    .mega-menu {
        position: static !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        border-top: 1px solid #e8f5e9 !important;
        background: #f8fdf8 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.35s ease !important;
    }

    .has-mega.active .mega-menu {
        max-height: 900px !important;
    }

    .mega-sidebar { display: none !important; }

    .mega-links {
        display: block !important;
        padding: 6px 0 !important;
    }

    .mega-link {
        padding: 12px 20px 12px 36px !important;
        border-radius: 0 !important;
        border-bottom: 1px solid #eef7ee !important;
        gap: 12px !important;
    }

    .mega-link:last-child { border-bottom: none !important; }

    .mega-link-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }

    /* Get Free Quote button */
    .nav-menu li:last-child { border-bottom: none !important; }
    .nav-menu .btn-nav-quote {
        display: flex !important;
        justify-content: center !important;
        margin: 14px 16px !important;
        padding: 13px 20px !important;
        border-radius: 8px !important;
        width: calc(100% - 32px) !important;
        box-sizing: border-box !important;
        height: auto !important;
    }

    /* Dark overlay behind drawer */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
    }
    .nav-overlay.active { display: block; }
}

/* Top bar compact on small screens */
@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .top-bar-links li:not(:last-child) { display: none; }
    .top-bar { text-align: center; }
    .top-bar .container { justify-content: center; }
}

@media (max-width: 480px) {
    .top-bar { display: none; }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-form-box {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Pests Section */
.pests-section {
    padding: 80px 0;
    background: var(--white);
}

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

.pest-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.pest-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.pest-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pest-icon img {
    max-width: 100%;
    max-height: 100%;
}

.pest-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.pest-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.learn-more:hover {
    color: var(--primary-dark);
}

.learn-more i {
    transition: var(--transition);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Updated Pricing Card Styles */
.pricing-badge {
    margin-bottom: 20px;
}

.plan-name {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
}

.popular-tag {
    display: block;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(57, 180, 74, 0.05);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Service Areas Section */
.service-areas-section {
    padding: 80px 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.area-column h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-column h4 i {
    color: var(--primary-color);
}

.area-column ul {
    padding-left: 28px;
}

.area-column li {
    margin-bottom: 8px;
}

.area-column a {
    color: var(--text-light);
    font-size: 15px;
}

.area-column a:hover {
    color: var(--primary-color);
}

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

/* Footer Locations */
.footer-locations {
    margin-top: 20px;
}

.footer-locations p {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Responsive Updates */
@media (max-width: 1200px) {
    .pests-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .pests-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    .service-area {
        display: none;
    }

    .top-bar .container {
        justify-content: flex-end;
    }
}

/* ── Service Pages ───────────────────────────────────────────────────────────── */

/* Industry icon grid (commercial page) */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}
.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
    transition: background 0.2s;
}
.industry-item:hover { background: #e6f4e8; }
.industry-item i { font-size: 28px; color: var(--primary-color); }
.industry-item span { font-size: 14px; font-weight: 600; }
a.industry-item { color: var(--text-color); text-decoration: none; }

/* Benefits 2-col grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.benefit-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}
.benefit-card i { font-size: 36px; color: var(--primary-color); margin-bottom: 15px; }
.benefit-card h4 { margin-bottom: 10px; }
.benefit-card p { margin: 0; font-size: 15px; }

@media (max-width: 992px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .industry-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
}



.page-hero {
    padding: 70px 0;
    text-align: center;
    color: var(--white);
}
.page-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}
.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}
.service-hero {
    background: linear-gradient(rgba(25, 67, 66, 0.9), rgba(25, 67, 66, 0.9)),
                url('../images/2025/11/DSC08865-1024x683.jpg') center/cover;
}

.service-content {
    padding: 80px 0;
}
.service-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}
.service-main h2 {
    margin-bottom: 20px;
}
.service-main h3 {
    margin: 40px 0 20px;
}
.service-main p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-list {
    margin: 20px 0 30px;
    padding-left: 0;
    list-style: none;
}
.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    line-height: 1.6;
}
.service-list li i {
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

/* Numbered treatment / process steps */
.treatment-steps,
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.step,
.process-step {
    background: var(--light-gray);
    padding: 25px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}
.step h4,
.step-content h4 {
    margin-bottom: 6px;
}
.step p,
.step-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Info / guarantee boxes */
.info-box,
.guarantee-box {
    display: flex;
    gap: 20px;
    background: rgba(58, 181, 75, 0.08);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
}
.info-box > i,
.guarantee-box > i {
    font-size: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
}
.info-box h4,
.guarantee-box h4 {
    margin-bottom: 8px;
}
.info-box p,
.guarantee-box p {
    margin: 0;
}

/* Service mini-cards (2-col grid) */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.service-card-sm {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
}
.service-card-sm i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.service-card-sm h4 {
    margin-bottom: 10px;
}
.service-card-sm p {
    margin: 0;
    font-size: 15px;
}

/* Sidebar */
.sidebar-cta {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
}
.sidebar-cta h3 {
    color: var(--white);
    margin-bottom: 15px;
}
.sidebar-cta p {
    opacity: 0.9;
    margin-bottom: 20px;
}
.sidebar-cta .btn {
    width: 100%;
    margin-bottom: 20px;
}
.sidebar-phone,
.sidebar-cta .phone-cta {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}
.sidebar-phone span,
.sidebar-cta .phone-cta span {
    display: block;
    opacity: 0.8;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--white);
}
.sidebar-phone a,
.sidebar-cta .phone-cta a {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
}
.sidebar-services,
.sidebar-areas {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.sidebar-services h4,
.sidebar-areas h4 {
    margin-bottom: 15px;
}
.sidebar-services ul,
.sidebar-areas ul {
    list-style: none;
    padding: 0;
}
.sidebar-services li,
.sidebar-areas li {
    margin-bottom: 8px;
}
.sidebar-services a {
    display: block;
    padding: 8px 12px;
    background: var(--white);
    border-radius: 5px;
    color: var(--text-color);
    transition: all 0.3s ease;
}
.sidebar-services a:hover,
.sidebar-services a.active {
    background: var(--primary-color);
    color: var(--white);
}

.sidebar-offer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e5554 100%);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--white);
}
.sidebar-offer-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: block;
    margin-bottom: 2px;
}
.sidebar-offer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}
.sidebar-offer p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 16px;
}
.sidebar-offer .btn {
    width: 100%;
}
.sidebar-offer-note {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 10px;
    margin-bottom: 0 !important;
}

.sidebar-reviews {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
.sidebar-reviews h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.review-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}
.review-badge:last-child {
    margin-bottom: 0;
}
.review-badge:hover {
    background: var(--light-gray);
}
.review-badge-icon {
    font-size: 26px;
    flex-shrink: 0;
}
.review-badge-google .review-badge-icon { color: #4285F4; }
.review-badge-facebook .review-badge-icon { color: #1877F2; }
.review-badge-body {
    display: flex;
    flex-direction: column;
}
.review-badge-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
}
.review-badge-stars {
    font-size: 12px;
    color: #f5a623;
    letter-spacing: 1px;
}
.review-badge-count {
    font-size: 11px;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-cards {
        grid-template-columns: 1fr;
    }
    .treatment-steps,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .treatment-steps,
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Learning Center & Blog Articles
   ========================================== */
.learning-center-section {
    padding: 60px 0;
    background: var(--white);
}
.lc-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}
.lc-intro p {
    color: var(--text-light);
    line-height: 1.8;
}
.lc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.lc-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.lc-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.lc-card-img {
    background: var(--secondary-color);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lc-card-img i {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.7;
}
.lc-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.lc-card-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}
.lc-card-meta .lc-date::after {
    content: ' · ';
}
.lc-card-title {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 12px;
}
.lc-card-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}
.lc-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.lc-card-link:hover {
    color: var(--secondary-color);
}

/* Blog Article Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    padding: 20px 0 40px;
}
.blog-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-meta i {
    color: var(--primary-color);
}
.blog-body h2 {
    margin-top: 40px;
    margin-bottom: 15px;
}
.blog-body h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--secondary-color);
}
.blog-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}
.blog-body ul,
.blog-body ol {
    margin-bottom: 20px;
    padding-left: 22px;
}
.blog-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.blog-sidebar .sidebar-cta {
    position: sticky;
    top: 100px;
}
.blog-related {
    margin-top: 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
}
.blog-related h4 {
    margin-bottom: 15px;
    font-size: 16px;
}
.blog-related ul {
    list-style: none;
    padding: 0;
}
.blog-related li {
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}
.blog-related li:last-child {
    border-bottom: none;
}
.blog-related a {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
    display: block;
}
.blog-related a:hover {
    color: var(--primary-color);
}

/* Charleston Locations Directory */
.locations-directory-section {
    padding: 60px 0;
    background: var(--white);
}
.locations-dir-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}
.locations-dir-intro p {
    color: var(--text-light);
    line-height: 1.8;
}
.locations-dir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.location-dir-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.location-dir-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}
.location-dir-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}
.location-dir-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}
.location-dir-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.location-dir-links a {
    font-size: 13px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 3px 10px;
    transition: all 0.2s;
}
.location-dir-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 992px) {
    .lc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .blog-sidebar .sidebar-cta {
        position: static;
    }
    .locations-dir-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .lc-grid {
        grid-template-columns: 1fr;
    }
    .locations-dir-grid {
        grid-template-columns: 1fr;
    }
}

/* UI state styles (formerly injected by main.js) */
@keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.notification .close-notification {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

input.error { border-color: #e74c3c !important; }

.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.15); }

.mobile-menu-toggle.active { background: #194342; }

/* Mobile drawer header (logo + close button) */
.mobile-nav-header {
    display: none !important;
}
.mobile-nav-logo { height: 34px; width: auto; }
.mobile-nav-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #194342;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1;
}
.mobile-nav-close:hover { color: #3AB54B; }

@media (max-width: 992px) {
    .nav-menu > li.mobile-nav-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 14px 16px !important;
        border-bottom: 2px solid #d6ead7 !important;
        background: #f8fdf8 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 2 !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }
}

/* ==========================================
   Mobile Title & Heading Centering
   ========================================== */
@media (max-width: 768px) {

    /* Section labels and headings (Charleston pages + any page using these classes) */
    .section-label,
    .section-heading {
        text-align: center !important;
    }

    /* Page hero h1 titles */
    .page-hero h1,
    .page-hero p {
        text-align: center;
    }

    /* Service page headings */
    .service-main h2,
    .service-main h3 {
        text-align: center;
    }

    /* Hero section on homepage / Charleston pages */
    .hero-eyebrow,
    .hero h1,
    .hero-sub,
    .hero-subtitle,
    .hero-text h1,
    .hero-text h2,
    .hero-text p {
        text-align: center;
    }

    /* Charleston location page hero */
    .hero-left {
        text-align: center;
    }
    .hero-left .hero-trust-pills {
        justify-content: center;
    }
    .hero-left .btn,
    .hero-left a {
        display: inline-block;
    }

    /* General content headings in sections */
    .section-intro,
    .section-header {
        text-align: center;
    }

    /* Process / steps headings */
    .step-content h3,
    .treatment-step h3,
    .benefit-item h3 {
        text-align: center;
    }

    /* Pricing section headings */
    .pricing-header h2,
    .pricing-header p {
        text-align: center;
    }

    /* About / team section headings */
    .team-header h2,
    .team-header p,
    .about-section h2,
    .about-section h3 {
        text-align: center;
    }

    /* Testimonial / review headings */
    .reviews-header h2,
    .testimonials-header h2 {
        text-align: center;
    }

    /* CTA section headings */
    .cta-section h2,
    .cta-content h2,
    .cta-content p {
        text-align: center;
    }

    /* FAQ section heading */
    .faq-section h2,
    .faq-header h2 {
        text-align: center;
    }
}

/* ══════════════════════════════════════════════════════
   Topical Map Section  (service pages)
══════════════════════════════════════════════════════ */
.topical-map-section {
    padding: 64px 0 48px;
    background: #f5f9f5;
    border-top: 1px solid #d6ead7;
}
.tm-block {
    margin-bottom: 48px;
}
.tm-block:last-child { margin-bottom: 0; }
.tm-heading {
    font-size: clamp(20px, 2.5vw, 26px);
    color: #194342;
    margin-bottom: 10px;
}
.tm-subtext {
    color: #555;
    margin-bottom: 24px;
    max-width: 700px;
    line-height: 1.65;
}
.tm-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 10px;
}
.tm-location-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #d6ead7;
    border-radius: 6px;
    color: #194342;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, color .2s;
}
.tm-location-card:hover {
    border-color: #3AB54B;
    box-shadow: 0 2px 8px rgba(58,181,75,.12);
    color: #3AB54B;
}
.tm-location-card i {
    color: #3AB54B;
    font-size: 11px;
    flex-shrink: 0;
}
.tm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
.tm-service-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #d6ead7;
    border-radius: 8px;
    color: #241F20;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s;
}
.tm-service-card:hover {
    border-color: #3AB54B;
    box-shadow: 0 2px 10px rgba(58,181,75,.15);
}
.tm-service-card i {
    color: #3AB54B;
    font-size: 22px;
}
.tm-service-card strong {
    font-size: 15px;
    color: #194342;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}
.tm-authority-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tm-authority-list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.tm-authority-list li::before {
    content: '↗';
    color: #3AB54B;
    font-weight: 700;
    flex-shrink: 0;
}
.tm-authority-list a {
    color: #194342;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.tm-authority-list a:hover { color: #3AB54B; }

/* ══════════════════════════════════════════════════════
   Service Back-link Section  (location pages)
══════════════════════════════════════════════════════ */
.service-backlink-section {
    padding: 44px 0;
    background: #fff;
    border-top: 1px solid #d6ead7;
}
.sbl-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3AB54B;
    margin-bottom: 10px;
}
.sbl-parent-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #194342;
    text-decoration: none;
    margin-bottom: 32px;
}
.sbl-parent-link i:first-child { color: #3AB54B; }
.sbl-parent-link .sbl-arrow { font-size: 14px; }
.sbl-parent-link:hover { color: #3AB54B; }
.sbl-sub-heading {
    font-size: 16px;
    color: #194342;
    margin-bottom: 14px;
    font-family: 'Oswald', sans-serif;
}
.sbl-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
.sbl-related-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f5f9f5;
    border: 1px solid #d6ead7;
    border-radius: 6px;
    color: #194342;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}
.sbl-related-link:hover {
    border-color: #3AB54B;
    color: #3AB54B;
}
.sbl-related-link i { color: #3AB54B; font-size: 12px; flex-shrink: 0; }
