/**
 * File: main.css
 * Purpose: Global styles for Clearline Field Systems site.
 * Author: Generated by OpenAI Codex on 2025-06-08
 * © 2025 Clearline Field Systems. All rights reserved.
 */
/* ========================================================================
   main.css for Clearline Field Systems
   Merged your original rules with the missing styles (hero, cards, buttons, etc.)
   ======================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400&display=swap");

/* 1. COLOR & FONT VARIABLES */
:root {
  --clr-primary: #3399ff;
  --clr-accent: #3399ff;
  --clr-bg: #000;
  --clr-text: #fff;
  --clr-subtle: #e0e0e0;
  --clr-surface: #000;
  --clr-card-bg: #000;
  --clr-badge: #2b78e4;
  --clr-yellow: #f6b93b;
  --clr-yellow-light: #ffd77a;
  --clr-yellow-dark: #fcd06c;
  --clr-green: #10ac84;
  --clr-green-light: #48e2b9;

  --header-height: 80px;
  font-family: 'Inter', system-ui, sans-serif;
}

/* Light mode overrides */
:root[data-theme='light'] {
    --clr-bg: #ffffff;
    --clr-text: #000000;
    --clr-surface: #ffffff;
    --clr-card-bg: #f7f7f7;
    --clr-subtle: #444444;
}

/* 2. RESPONSIVE HEADER HEIGHT ADJUSTMENT */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }
}

/* 3. GLOBAL RESET & BASE */
html,
body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: var(--header-height);
    color: var(--clr-text);
    background: var(--clr-bg);
    font-family: 'Inter', system-ui, sans-serif;
    scroll-padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}
:focus {
  outline: 3px solid var(--clr-primary);
  outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

#main-content {
    flex: 1;
}

/* Skip link - hidden off screen until focus */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  clip: auto;
  background: var(--clr-yellow);
  color: var(--clr-bg);
  padding: 8px 16px;
  z-index: 10000;
}

/* 4. HEADER / NAVBAR */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  --banner-offset: 0px;
  background: var(--clr-bg);
  color: var(--clr-text);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.site-header.hidden {
    transform: translateY(calc(-100% - var(--banner-offset)));
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
    height: calc(var(--header-height) - 20px);
    max-height: 100%;
}

/* HAMBURGER MENU */
#menu-toggle {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--clr-text);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  #main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: var(--clr-bg);
    padding: 16px;
  }
  #main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0 0 16px 0;
    padding: 0;
    list-style: none;
  }
}

/* Toggling mobile nav */
#menu-toggle:checked + .hamburger + #main-nav {
  display: flex;
}

/* Desktop nav always visible */
@media (min-width: 769px) {
  #main-nav {
    display: flex !important;
    align-items: center;
  }
  #main-nav ul {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .hamburger {
    display: none;
  }
}

/* NAV LINKS */
#main-nav ul li a {
    font-size: 0.9rem;
    white-space: nowrap;
    transition: opacity 0.2s ease-in-out;
}
#main-nav ul li a.active {
    text-decoration: underline;
    border-bottom: 3px solid var(--clr-accent);
}

@media (min-width: 769px) {
    #main-nav ul li a,
    .call-btn {
        display: inline-block;
        background: var(--clr-primary);
        color: var(--clr-text);
        padding: 8px 16px;
        border-radius: 4px;
        font-weight: 600;
        transition: transform 0.2s ease, filter 0.2s ease;
    }

    #main-nav ul li a:hover,
    .call-btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.1);
        text-decoration: none;
    }
}

@media (max-width: 768px) {
    #main-nav ul li a:hover {
        opacity: 0.75;
    }
}

/* Dropdown navigation */
#main-nav li.dropdown {
    position: relative;
}
#main-nav li.dropdown > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 200px;
    z-index: 1000;
}
#main-nav li.dropdown:hover > ul {
    display: block;
}
#main-nav li.dropdown > ul li a {
    display: block;
    padding: 8px 16px;
    white-space: nowrap;
}


/* CALL/SMS BUTTON */
.call-btn {
  font-size: 0.9rem;
  white-space: nowrap;
  transition: opacity 0.2s ease-in-out;
}

/* Theme toggle button */
.theme-toggle {
    background: none;
    border: none;
    color: var(--clr-text);
    font-size: 1rem;
    margin-left: 16px;
    cursor: pointer;
}

.theme-toggle:focus {
    outline: 3px solid var(--clr-primary);
    outline-offset: 2px;
}

.theme-toggle__icon--moon {
    display: none;
}

[data-theme='light'] .theme-toggle__icon--sun {
    display: none;
}

[data-theme='light'] .theme-toggle__icon--moon {
    display: inline-block;
}

@media (min-width: 769px) {
  .call-btn {
    margin-left: 24px;
  }
}

.cta-btn:hover {
  filter: brightness(1.1);
}

/* 5. SECTION WRAPPER */
.section-wrapper {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Breadcrumb Navigation */
.breadcrumbs {
    font-size: 0.875rem;
    margin: 2rem 0 1rem;
}
.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumbs li+li:before {
    content: "\203A";
    padding: 0 0.5rem;
    color: var(--clr-subtle);
}
.breadcrumbs a {
    color: var(--clr-accent);
}
.breadcrumbs li[aria-current="page"] {
    color: var(--clr-text);
}

/* 6. HERO SECTION */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--clr-bg);
  color: var(--clr-text);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Pricing preview teaser inside hero */
.hero__pricing-preview {
    font-size: 15px;
    color: #aaaaaa;
    max-width: 512px;
    line-height: 1.5;
    margin: 1rem auto 0;
}

/* CTA BUTTON IN HERO */
.cta-btn {
    display: inline-block;
    padding: 0.75em 1.5em;
    background-color: var(--clr-primary);
    color: var(--clr-text);
    font-size: 1.05rem;
    font-weight: bold;
    border-radius: 8px;
    transition: filter 0.3s ease, transform 0.2s ease;
}

.cta-btn.secondary {
    background-color: var(--clr-text);
    color: var(--clr-primary);
}

.cta-btn:hover {
  filter: brightness(1.15);
  transform: scale(1.03);
}

/* Mobile vs Desktop CTA visibility */
.cta-btn--desktop {
    display: none;
}

.cta-btn--mobile {
    display: inline-block;
}

@media (min-width: 768px) {
    .cta-btn--desktop {
        display: inline-block;
    }

    .cta-btn--mobile {
        display: none;
    }
}
.hero-cta {
    background-color: var(--clr-accent);
}
.hero-cta:hover {
    filter: brightness(1.2);
}

/* HERO FOOTER LINE (under CTA) */
.footer-line {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  color: var(--clr-text);
}

.hero-testimonial {
  margin-top: 1rem;
  font-style: italic;
  color: var(--clr-subtle);
}

/* Prevent large shifts on mobile */
@media (max-width: 480px) {
  .hero {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* 7. ABOUT SECTION */
.about {
  background: var(--clr-bg);
  color: var(--clr-text);
}

.about .section-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--clr-accent);
}

.about p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-subtle);
  max-width: 700px;
  margin: 0 auto;
}

/* ABOUT PAGE ADDITIONS */
.hero--about {
    min-height: 60vh;
}

.mission,
.founder,
.results,
.get-started {
    background: var(--clr-bg);
    color: var(--clr-text);
}

.mission .section-wrapper,
.founder .section-wrapper,
.results .section-wrapper,
.get-started .section-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
}

.review {
    font-style: italic;
    color: var(--clr-subtle);
    margin: 1rem auto;
    max-width: 600px;
}

/* 8. SERVICES SECTION */
.services {
  background: var(--clr-surface);
  color: var(--clr-text);
}

.services .section-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--clr-accent);
}

/* GRID OF SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

/* INDIVIDUAL SERVICE CARD */
.service-card {
  background: var(--clr-card-bg);
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.15);
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--clr-accent);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--clr-subtle);
  margin: 0.5rem 0 1rem 0;
}

.service-card a {
  font-weight: 600;
  color: var(--clr-accent);
}

.service-card a:hover {
  text-decoration: underline;
}

/* 9. RESOURCES SECTION */
.resources {
  background: var(--clr-bg);
  color: var(--clr-text);
}

.resources .section-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.resources h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--clr-accent);
}

.resources p {
  font-size: 1.05rem;
  color: var(--clr-subtle);
  margin-bottom: 1.5rem;
}

/* VENDOR DOC BUTTONS */
.doc-btn {
  background: var(--clr-accent);
  padding: 12px 20px;
  border-radius: 8px;
  color: var(--clr-text);
  font-weight: bold;
  display: block;
  max-width: 350px;
  margin: 10px auto;
  transition: all 0.2s ease-in-out;
}

.doc-btn:hover {
  transform: scale(1.04);
  background: linear-gradient(135deg, #66b3ff, #3399ff);
}

/* YELLOW VARIANT */
.doc-btn.yellow {
  background: var(--clr-yellow);
  color: #000;
}

.doc-btn.yellow:hover {
  background: linear-gradient(135deg, var(--clr-yellow-light), var(--clr-yellow-dark));
}

/* GREEN VARIANT */
.doc-btn.green {
  background: var(--clr-green);
}

.doc-btn.green:hover {
  background: linear-gradient(135deg, var(--clr-green-light), var(--clr-green));
}

/* 10. CONTACT SECTION */
.contact {
  background: var(--clr-bg);
  color: var(--clr-text);
}

.contact .section-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--clr-accent);
}

/* EMAIL BUTTON */
.email-btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--clr-primary);
  color: var(--clr-text);
  padding: 0.75em 1.5em;
  border-radius: 8px;
  font-weight: bold;
  transition: filter 0.2s ease-in-out;
}

.email-btn:hover {
  filter: brightness(1.1);
}

/* CONTACT FORM */
.contact-form {
    margin-top: 20px;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-form__field {
    margin-bottom: 0.75rem;
}

.contact-form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-form__input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.email-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.option-btn {
    background: var(--clr-primary);
    color: var(--clr-text);
    padding: 0.5em 1em;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: filter 0.2s ease-in-out;
}

.cta-wrapper {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.option-btn:hover {
    filter: brightness(1.1);
}

.form-note {
    margin-top: 8px;
    font-size: 0.9rem;
}

/* SUCCESS MODAL */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal--open {
    display: flex;
}
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.modal__box {
    position: relative;
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    max-width: 24rem;
    width: 90%;
    text-align: center;
    z-index: 1;
}
.modal__title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}
.modal__btn {
    margin-top: 1rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

/* SERVICE AREA */
.service-area {
    background: var(--clr-bg);
    color: var(--clr-text);
}

.service-area .section-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}

.service-area__list {
    list-style: disc;
    margin: 0 0 1rem 1.25rem;
    text-align: left;
    display: inline-block;
}

.service-area__map {
    width: 100%;
    height: 320px;
    margin: 1rem 0;
}

.service-area__note {
    font-size: 0.9rem;
    font-style: italic;
}

/* GENERAL POLICIES */
.policies__list {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

/* 11. FOOTER */
.site-footer {
    background: var(--clr-surface);
    color: var(--clr-text);
    padding: 2rem 1rem;
    border-top: 1px solid var(--clr-card-bg);
    font-size: 0.875rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

.footer-links a {
    color: var(--clr-text);
    font-size: 0.875rem;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 0.5rem;
}

.social-links a {
    margin-right: 0.5rem;
}

.back-to-top {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-copy {
    text-align: center;
    margin-top: 1rem;
}

/* 12. RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
  }

  .footer-col {
      flex: 1 1 100%;
  }


  .doc-btn {
    max-width: 90%;
  }
}

/* QUOTE PAGE */
.quote__form {
    background: var(--clr-surface);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.quote__form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.quote__form select,
.quote__form input[type="number"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.quote__table {
    width: 100%;
    border-collapse: collapse;
}

.quote__table th,
.quote__table td {
    border: 1px solid var(--border-color);
    padding: 8px;
}

.quote__table th {
    background: var(--secondary-color);
}

/* QUOTE WIZARD PROGRESS */
.progress {
    height: 8px;
    background: var(--secondary-color);
    margin: 0 0 20px 0;
}

.progress__bar {
    height: 100%;
    background: var(--primary-color);
    width: 0;
}

/* 13. SERVICE DETAIL PAGES */
.service-detail {
  background: var(--clr-surface);
  color: var(--clr-text);
}

.service-detail .section-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
}

.service-detail h1 {
  color: var(--clr-accent);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-detail .lead {
  font-size: 1.1rem;
  color: var(--clr-subtle);
  margin-bottom: 1.5rem;
}

.service-detail h2 {
  color: var(--clr-accent);
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

.service-detail ul,
.service-detail ol {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.service-detail li {
  margin-bottom: 0.5rem;
}

.service-detail .cta-btn {
  margin-top: 2rem;
  display: inline-block;
}

/* Generic helper for static dark backgrounds */
.has-dark-bg {
    background: #111;
    color: var(--clr-text);
}

:root[data-theme='light'] .has-dark-bg {
    color: #ffffff;
}

:root[data-theme='light'] .has-dark-bg p,
:root[data-theme='light'] .has-dark-bg li {
    color: #dddddd;
}

/* Micro-Retainer info section */
.micro-retainer {
  border-top: 1px solid var(--clr-subtle);
  border-bottom: 1px solid var(--clr-subtle);
}
.micro-retainer .section-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
}
.micro-retainer h2 {
  color: var(--clr-accent);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}
.micro-retainer p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-subtle);
  max-width: 700px;
  margin: 0 auto 1rem;
}
.micro-retainer ul {
  margin: 1rem auto;
  max-width: 700px;
  padding-left: 0;
  list-style-position: inside;
}
.micro-retainer ul li {
  margin-bottom: 0.5rem;
}
@media (min-width: 700px) {
  .micro-retainer ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
  }
  .micro-retainer ul li {
    padding-left: 1rem;
  }
}
.micro-retainer .cta-btn {
    margin: 1.5rem auto 0;
    display: block;
    width: fit-content;
}

/* FAQ */
.faq {
  background: var(--clr-bg);
  color: var(--clr-text);
}

.faq .section-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.faq dt {
  font-weight: 600;
  margin-top: 1rem;
}

.faq dd {
  margin-left: 0;
  margin-bottom: 1rem;
}

/* Footer Base */
.site-footer {
  background: #111;
  color: #f7f7f7;
  padding: 2rem 1rem;
}
.site-footer__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.site-footer__col {
  flex: 1 1 200px;
}
.site-footer__col--brand {
  flex: 1 1 300px;
}
.site-footer__col--links {
  flex: 1 1 200px;
}
.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}
.footer-contact {
  font-style: normal;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer-social a {
  margin-right: 0.5rem;
}
.footer-back-to-top {
  display: block;
  margin-top: 1rem;
  color: var(--secondary-color);
  text-decoration: none;
}

/* Quick Links */
.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.footer-links {
  list-style: disc inside;
  margin: 0;
  padding: 0;
  column-count: 2;
  column-gap: 1rem;
}
.footer-links li {
  margin-bottom: 0.25rem;
}
.footer-links a {
  color: #f7f7f7;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom-logo {
  width: 24px;
  height: auto;
  margin-right: 0.5rem;
  
}
.site-footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer__bottom-right {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-info {
  font-size: 0.875rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .site-footer__container {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Footer Base */
.site-footer {
  background: #111;
  color: #f7f7f7;
  padding: 2rem 1rem;
}
.site-footer__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer__col {
  flex: 1 1 200px;
}
.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}
.footer-contact {
  font-style: normal;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer-social a {
  margin-right: 0.5rem;
}

/* Quick Links */
.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.footer-links {
  list-style: disc inside;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.25rem;
}
.footer-links a {
  color: #f7f7f7;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom-logo {
  width: 24px;
  height: auto;
  margin-right: 0.5rem;
}
.site-footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer__bottom-right {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-info {
  font-size: 0.875rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .site-footer__container {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
/* Modern footer */
.site-footer {
    background: #111;
    color: #f7f7f7;
    padding: 2rem 1rem;
    font-size: 0.875rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.footer-col {
    flex: 1 1 160px;
}

.footer-col h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 1rem auto 0;
}

.footer-bottom-logo {
    width: 24px;
    height: auto;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cage-uei {
  white-space: nowrap;
}

.social-link {
    color: #f7f7f7;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    .footer-col {
        flex: 1 1 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Live banner */
.live-banner {
    background: #ffcc66;
    color: #000;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 16px;
    position: fixed;
    top: 1rem;
    right: 1rem;
    left: auto;
    max-width: 320px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    transition: opacity 0.4s ease;
}
.live-banner.hide {
    opacity: 0;
}
.banner-close {
    position: absolute;
    right: 0.5rem;
    top: 0.25rem;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Plans CTA Section */
.plans-cta {
    background: var(--clr-bg);
    color: var(--clr-text);
    text-align: center;
}
.plans-cta .section-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}
.pricing-table th,
.pricing-table td {
    border: 1px solid var(--clr-subtle);
    padding: 0.75rem;
}
.pricing-table th {
    background: var(--clr-surface);
}
.pricing-table td {
    text-align: center;
}

/* Sticky Action Bar removed */
/* On-Site Services Page */
.urgency-banner {
  background:#0056b3;
  color:#fff;
  padding:0.5rem;
  text-align:center;
  margin-top:1rem;
  border-radius:4px;
}
.badge.sla {
  background:#0056b3;
  color:#fff;
  font-size:0.75rem;
  padding:0.1rem 0.4rem;
  border-radius:4px;
  margin-left:0.25rem;
}
.btn {
  display:inline-block;
  padding:0.75rem 1.5rem;
  font-weight:600;
  border-radius:6px;
  text-decoration:none;
  text-align:center;
}
.btn-primary {
  background:var(--clr-primary);
  color:var(--clr-text);
}
.service-card details {
  margin-top:0.5rem;
}
.service-card details summary {
  cursor:pointer;
  color:var(--clr-accent);
}
.service-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.trust-badge {
    background: var(--clr-badge);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.service-faq {
    margin-top: 1.5rem;
}
