/* =========================================
   GRAND STRAND OZONE — CLIENT OVERRIDES
   Built on forrest-master.css
   Brand: Sky Blue / Dark Navy / White
   Last updated: April 2026
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* === COLOR OVERRIDES === */
:root {
  --primary-red: #2979C2;
  --primary-red-dark: #1a5fa0;
  --black: #0d1b2e;
  --dark: #0d1b2e;
  --accent: #2979C2;
  --accent-deep: #1a5fa0;
  --brand: #0d1b2e;
  --button-bg: #2979C2;
  --button-hover: #1a5fa0;
}

/* === TYPOGRAPHY === */
body { font-family: 'DM Sans', system-ui, sans-serif; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

/* === ZONE 1: UTILITY BAR === */
.utility { background: #0d1b2e; color: #fff; font-size: 14px; }
.utility-pills { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; padding: 10px 20px; }
.pill { background: rgba(255,255,255,0.12); color: #fff; padding: 6px 20px; border-radius: 999px; font-size: 13px; text-decoration: none; white-space: nowrap; transition: background 0.25s; }
.pill:hover { background: #2979C2; }

/* === ZONE 2: HEADER === */
header { background: #fff; border-bottom: 1px solid #ddd; text-align: center; padding: 20px; }
.logo-wrap img { width: clamp(480px, 75vw, 880px); max-width: 100%; height: auto; margin: 0 auto; }

/* === ZONE 3: CTA BAR === */
.cta-bar { background: #0d1b2e; color: #fff; padding: 28px 20px 32px; text-align: center; }
.cta-bar h2 { font-family: 'DM Sans', system-ui, sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 18px; letter-spacing: 0.5px; color: #fff; }
.cta-bar .hero-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-bar .btn { background: #2979C2; color: #fff; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 15px; padding: 13px 30px; transition: all 0.25s ease; display: inline-block; }
.cta-bar .btn:hover { background: #1a5fa0; transform: translateY(-2px); }
.cta-bar .btn-white { background: #fff; color: #0d1b2e; }
.cta-bar .btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

/* === ZONE 4: NAVIGATION === */
.nav-bar { background: #0d1b2e; border-top: 1px solid rgba(255,255,255,0.08); }
.pill-nav ul { list-style: none; margin: 0; padding: 14px 20px 16px; display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.pill-nav a { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 999px; background: rgba(255,255,255,0.13); color: #fff; text-decoration: none; font-weight: 600; font-size: 14px; transition: background 0.25s; }
.pill-nav a:hover, .pill-nav a.active { background: #2979C2; }
.pill-nav a.nav-cta { background: #2979C2; color: #fff; }
.pill-nav a.nav-cta:hover { background: #1a5fa0; }

/* === ZONE 5: HERO === */
.hero { position: relative; background: url('images/hero.jpg') center/cover no-repeat; min-height: 540px; display: flex; align-items: center; color: #fff; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(13,27,46,0.72); }
.hero .wrap { position: relative; display: flex; justify-content: center; width: 100%; }
.hero-content { text-align: center; max-width: 740px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); color: #fff; line-height: 1.2; margin-bottom: 16px; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.88); margin-bottom: 28px; line-height: 1.6; }
.hero .hero-buttons { margin-top: 8px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero .btn { display: inline-block; background: #2979C2; color: #fff; padding: 13px 30px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 15px; transition: all 0.25s ease; }
.hero .btn:hover { background: #1a5fa0; transform: translateY(-2px); }
.hero .btn-white { background: #fff; color: #0d1b2e; }
.hero .btn-white:hover { background: #f0f0f0; }

/* === SHARED SECTION LABELS === */
.section-label { font-family: 'DM Sans', system-ui, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #2979C2; margin-bottom: 10px; display: block; }
.section-title { font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: #111; margin-bottom: 16px; line-height: 1.25; }
.section-body { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 14px; }

/* === ZONE 6: TWO COLUMN CONTENT === */
.zone-6 { padding: 70px 0; background: #fff; }
.content-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.content-two-col h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: #111; margin-bottom: 16px; line-height: 1.25; }
.content-two-col p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.checklist { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { font-size: 14px; color: #333; line-height: 1.6; padding-left: 32px; position: relative; }
.checklist li::before { content: '✓'; position: absolute; left: 0; top: 0; background: #2979C2; color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }
@media (max-width: 900px) { .content-two-col { grid-template-columns: 1fr; gap: 40px; } }

/* === SERVICE CARDS (Who Needs Ozone) === */
.specialty-cards { padding: 70px 0; background: #f4f8fd; }
.specialty-header { text-align: center; margin-bottom: 48px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spec-card { background: #fff; border-radius: 10px; padding: 30px 24px; border-top: 3px solid #2979C2; box-shadow: 0 4px 16px rgba(0,0,0,0.07); transition: transform 0.25s, box-shadow 0.25s; }
.spec-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.spec-icon { font-size: 2rem; margin-bottom: 14px; }
.spec-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #111; margin-bottom: 10px; }
.spec-desc { font-size: 14px; color: #555; line-height: 1.75; }
@media (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .cards-grid { grid-template-columns: 1fr; } }

/* === DARK BAND (How It Works) === */
.credentials-band { background: #0d1b2e; padding: 70px 0; }
.credentials-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.credentials-band .section-label { color: rgba(255,255,255,0.55); }
.credentials-band h2 { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 16px; line-height: 1.25; }
.credentials-band p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.75; margin-bottom: 20px; }
.cred-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.cred-item { display: flex; align-items: flex-start; gap: 14px; }
.cred-num { background: #2979C2; color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.cred-text { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.65; }
@media (max-width: 900px) { .credentials-inner { grid-template-columns: 1fr; gap: 40px; } }

/* === PRICING TABLE === */
.pricing-section { padding: 70px 0; background: #fff; }
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-table { max-width: 640px; margin: 0 auto; }
.pricing-category { font-family: 'DM Sans', system-ui, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #2979C2; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid #2979C2; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid #eee; font-size: 15px; }
.pricing-row:last-child { border-bottom: none; }
.pricing-size { color: #333; font-weight: 500; }
.pricing-price { color: #2979C2; font-weight: 700; font-size: 16px; }
.pricing-note { margin-top: 28px; font-size: 13px; color: #777; text-align: center; line-height: 1.7; }

/* === FAQ === */
.faq-section { padding: 70px 0; background: #f4f8fd; }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.faq-item { margin-bottom: 28px; }
.faq-item h3 { font-family: 'DM Sans', system-ui, sans-serif; font-size: 15px; font-weight: 700; color: #111; margin-bottom: 8px; padding-left: 16px; border-left: 3px solid #2979C2; }
.faq-item p { font-size: 14px; color: #555; line-height: 1.75; padding-left: 16px; margin-bottom: 0; }
@media (max-width: 900px) { .faq-cols { grid-template-columns: 1fr; } }

/* === DUAL MAP === */
.map-section { padding: 70px 0; background: #fff; }
.map-header { text-align: center; margin-bottom: 36px; }
.dual-map { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.map-box { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.map-box-label { background: #0d1b2e; color: #fff; text-align: center; padding: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.map-box iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-box img { width: 100%; height: 380px; object-fit: cover; display: block; }
@media (max-width: 900px) { .dual-map { grid-template-columns: 1fr; } }

/* === SERVICE AREA CITIES === */
.service-areas { padding: 70px 0; background: #f4f8fd; text-align: center; }
.service-areas h2 { margin-bottom: 12px; }
.service-areas p { color: #555; max-width: 600px; margin: 0 auto 36px; }
.service-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 800px; margin: 0 auto; }
.service-pill { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; background: #fff; border-radius: 8px; border: 2px solid #ddd; text-decoration: none; font-weight: 600; font-size: 15px; color: #222; transition: all 0.3s ease; }
.service-pill:hover { background: #0d1b2e; color: #fff; border-color: #0d1b2e; }
.service-pill.active { background: #2979C2; color: #fff; border-color: #2979C2; }

/* === CTA STRIP === */
.cta-strip { background: #2979C2; padding: 60px 20px; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; top: -80px; left: -80px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.cta-strip::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(0,0,0,0.08); }
.cta-strip-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-strip h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.82); font-size: 16px; margin-bottom: 32px; }
.cta-strip-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white-solid { display: inline-block; background: #fff; color: #2979C2; font-family: 'DM Sans', system-ui, sans-serif; font-size: 15px; font-weight: 700; padding: 13px 30px; border-radius: 999px; text-decoration: none; transition: background 0.25s, transform 0.25s; }
.btn-white-solid:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-outline-white { display: inline-block; background: transparent; color: #fff; font-family: 'DM Sans', system-ui, sans-serif; font-size: 15px; font-weight: 600; padding: 13px 30px; border-radius: 999px; border: 2px solid rgba(255,255,255,0.65); text-decoration: none; transition: border-color 0.25s, background 0.25s, transform 0.25s; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.10); transform: translateY(-2px); }

/* === ZONE 10: FOOTER === */
.site-footer { background: #0d1b2e; color: #fff; padding: 50px 20px 24px; text-align: center; }
.footer-inner-simple { max-width: 700px; margin: 0 auto; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-business-name { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-contact-line { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.footer-contact-line a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-contact-line a:hover { color: #fff; }
.footer-bottom { max-width: 700px; margin: 20px auto 0; font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* === FLOATING CALL BUTTON === */
.float-call { position: fixed; bottom: 24px; right: 24px; z-index: 999; background: #2979C2; color: #fff; display: inline-flex; align-items: center; gap: 9px; padding: 13px 22px; border-radius: 999px; font-family: 'DM Sans', system-ui, sans-serif; font-size: 14px; font-weight: 700; text-decoration: none; box-shadow: 0 6px 24px rgba(41,121,194,0.50); transition: background 0.25s, transform 0.25s, box-shadow 0.25s; letter-spacing: 0.02em; }
.float-call:hover { background: #1a5fa0; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(41,121,194,0.58); }

/* === BUTTONS === */
.btn-primary { display: inline-block; padding: 13px 28px; background: #2979C2; color: #fff; text-decoration: none; border-radius: 999px; font-weight: 600; font-family: 'DM Sans', system-ui, sans-serif; transition: background 0.25s, transform 0.25s; }
.btn-primary:hover { background: #1a5fa0; transform: translateY(-2px); }
