/* ============================================
   WNCIL Site Styles — matching wncil.com
   ============================================ */

:root {
    --bg: #fbfbfd;
    --text: #1d1d1f;
    --text-secondary: #6e6e73;
    --accent: #0071e3;
    --accent-hover: #0077ed;
    --card-bg: #ffffff;
    --border: rgba(0,0,0,0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-pill: 980px;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.08);
    --nav-height: 52px;
    --container: 1200px;
    --transition: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION — 52px glassmorphic
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(251,251,253,0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav-brand:hover { text-decoration: none; }

.nav-logo {
    height: 32px;
    width: auto;
    filter: brightness(0);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}

.nav-links a:hover { background: rgba(0,0,0,0.04); text-decoration: none; }
.nav-links a.active { color: var(--accent); }

/* Services dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
    padding: 6px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(4px);
    list-style: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--text);
    border-radius: 8px;
}
.nav-dropdown-menu a:hover {
    background: rgba(0,113,227,0.06);
    color: var(--accent);
}

.nav-phone {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}
.nav-phone:hover { text-decoration: none; opacity: 0.85; }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1002;
    padding: 72px 24px 24px;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
}
.mobile-menu.open { right: 0; }

.mobile-menu a {
    display: block;
    padding: 14px 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
}
.mobile-menu a:hover { color: var(--accent); text-decoration: none; }

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.mobile-menu-close:hover { background: rgba(0,0,0,0.04); }

/* ============================================
   HERO — full viewport
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 100px 24px 80px;
    background: linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.38) 50%, rgba(0,0,0,0.55) 100%),
                url('/assets/images/hero-mountains.webp') center/cover no-repeat,
                linear-gradient(180deg, #007aff 0%, #34aadc 100%);
    background-size: cover, cover, cover;
    background-position: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.hero-tagline {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 12px;
}

.hero-desc {
    font-size: clamp(14px, 1.5vw, 17px);
    opacity: 0.75;
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    text-decoration: none;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); text-decoration: none; }

.btn-hero-primary {
    background: var(--accent);
    color: #fff;
}
.btn-hero-primary:hover { background: var(--accent-hover); }

.btn-hero-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); }

/* ============================================
   CERTIFICATIONS STRIP
   ============================================ */
.certs-strip {
    background: #f5f5f7;
    padding: 48px 24px;
    text-align: center;
}

.certs-strip-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.certs-strip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.cert-strip-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #fff;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.cert-strip-badge .cert-check {
    width: 16px;
    height: 16px;
    background: #34c759;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   SECTIONS — shared
   ============================================ */
.section { padding: 80px 0; }

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

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    line-height: 1.15;
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   SERVICES — card grid with icons
   ============================================ */
.services-section { background: #fff; }

.services-category {
    margin-bottom: 48px;
}
.services-category:last-child {
    margin-bottom: 0;
}
.services-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

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

.services-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 32px;
    font-style: italic;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px 28px 36px;
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    position: relative;
}

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

/* Service icon */
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon.icon-water { background: rgba(0,122,255,0.1); color: #007aff; }
.service-icon.icon-radon { background: rgba(255,59,48,0.1); color: #ff3b30; }
.service-icon.icon-well-inspection { background: rgba(52,199,89,0.1); color: #34c759; }
.service-icon.icon-well-repairs { background: rgba(52,199,89,0.1); color: #34c759; }
.service-icon.icon-well-chlorination { background: rgba(52,199,89,0.1); color: #34c759; }
.service-icon.icon-septic-inspection { background: rgba(255,149,0,0.1); color: #ff9500; }
.service-icon.icon-septic-pumping { background: rgba(255,149,0,0.1); color: #ff9500; }
.service-icon.icon-septic-repairs { background: rgba(255,149,0,0.1); color: #ff9500; }
.service-icon.icon-plumbing { background: rgba(88,86,214,0.1); color: #5856d6; }

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 12px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.service-price-badge {
    background: rgba(0,122,255,0.06);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
}

.service-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-features {
    list-style: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
    margin-bottom: 20px;
}

.service-features li {
    position: relative;
    padding: 8px 0 8px 18px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.4;
    display: flex;
    align-items: baseline;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

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

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.service-features .item-name {
    flex: 1;
}

.service-features li .feature-price {
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    margin-left: auto;
    text-align: right;
}

.service-features li.addon {
    color: var(--text-secondary);
    font-style: italic;
}

/* Service Item Tooltip */
.analyte-tooltip {
    position: fixed;
    z-index: 9999;
    background: var(--text-primary, #1d1d1f);
    color: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.6;
    max-width: 260px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s, transform 0.2s;
}

.analyte-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.analyte-tooltip h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

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

.analyte-tooltip li {
    padding: 2px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.analyte-tooltip li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 8px;
    vertical-align: middle;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}
.service-cta:hover { text-decoration: underline; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: #f5f5f7;
    padding: 80px 0;
}

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

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-photo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.about-photo:first-child img {
    height: 320px;
}

.about-details h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.about-details p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0 24px;
}

.about-stat {
    text-align: center;
    padding: 20px 12px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.about-stat .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    letter-spacing: -0.02em;
}

.about-stat .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.about-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.about-cert-tag {
    background: #f5f5f7;
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ============================================
   SERVICE AREA — county grid
   ============================================ */
.service-area-section { background: #fff; }

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.county-card {
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fff;
}

.county-card:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(0,113,227,0.08);
}

.county-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.county-info .county-cities {
    font-size: 13px;
    color: var(--text-secondary);
}

.county-fee {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(0,122,255,0.06);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.trip-fee-note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: #f5f5f7;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-methods {
    list-style: none;
    margin-bottom: 32px;
}

.contact-methods li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.contact-methods li strong {
    font-size: 13px;
    color: var(--text-secondary);
    min-width: 60px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-methods li a { font-weight: 600; }

.contact-form {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid .form-group.full { grid-column: 1 / -1; }

.contact-form .form-group { margin-bottom: 0; }

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,122,255,0.12);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}
.btn-submit:hover { background: var(--accent-hover); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success { text-align: center; padding: 40px 20px; }
.form-success h3 { font-size: 20px; margin-bottom: 8px; color: #34c759; }
.form-success p { color: var(--text-secondary); }

.form-error {
    background: #fef2f2;
    color: #b91c1c;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 16px;
}

/* Honeypot */
.ohnohoney { position: absolute; left: -9999px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text);
    color: #fff;
    padding: 60px 24px 40px;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-top: 12px;
    max-width: 280px;
}

.footer-brand .footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    padding: 4px 0;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-col a:hover { color: #fff; text-decoration: none; }

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

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-social a:hover { color: #fff; }

.footer-legal-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
}

/* ============================================
   STATIC PAGES — FAQ, Policies, Terms, Privacy
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #007aff 0%, #5ac8fa 50%, #34aadc 100%);
    padding: 120px 24px 60px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.page-hero p {
    font-size: 17px;
    opacity: 0.85;
    margin-top: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.page-section {
    padding: 60px 0 80px;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.page-content h2:first-child { margin-top: 0; }

.page-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.page-content ul, .page-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.page-content li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 6px;
}

.page-content strong { color: var(--text); }

.page-content em { font-style: italic; }

/* FAQ Accordions */
.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0,0,0,0.06);
    color: var(--text);
    letter-spacing: -0.02em;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--accent);
    transition: transform 0.2s;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq-item.open .faq-question::after {
    content: '\2212';
}

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

.faq-answer-inner {
    padding: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
}

.chat-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(0,113,227,0.3);
    transition: transform 0.15s, box-shadow 0.15s;
}
.chat-trigger:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(0,113,227,0.4); }

.chat-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    max-height: 480px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(0,0,0,0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    overflow: hidden;
}

.chat-popup.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-popup-header {
    background: var(--accent);
    color: #fff;
    padding: 20px;
}
.chat-popup-header h4 { font-size: 17px; font-weight: 600; }
.chat-popup-header p { font-size: 13px; opacity: 0.85; margin-top: 4px; }

.chat-popup-body { padding: 16px; }

.chat-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-quick-actions a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #f5f5f7;
    border-radius: var(--radius);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s;
}
.chat-quick-actions a:hover { background: #eee; text-decoration: none; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    box-shadow: var(--shadow);
    z-index: 899;
}
.scroll-top.visible { opacity: 1; visibility: visible; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-phone { display: none; }
    .nav-toggle { display: flex; }

    .hero { min-height: 90vh; padding: 80px 20px 60px; }
    .hero h1 { font-size: 36px; }
    .hero-tagline { font-size: 16px; }

    .services-grid { grid-template-columns: 1fr; }
    .counties-grid { grid-template-columns: 1fr; }

    .about-visual { min-height: 280px; padding: 40px 24px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .about-stat .stat-number { font-size: 28px; }
    .about-stat .stat-label { font-size: 11px; }

    .form-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .chat-popup { width: 300px; right: -12px; }

    .certs-strip-list { gap: 8px; }
    .cert-strip-badge { font-size: 12px; padding: 8px 14px; }

    .page-hero { padding: 100px 20px 48px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .about-stats { grid-template-columns: 1fr 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}
