/*
Theme Name: EliteWaves
Theme URI: https://elitewaves.co.za
Author: EliteWaves Air Conditioning & Refrigeration
Author URI: https://elitewaves.co.za
Description: A premium WordPress theme for EliteWaves Air Conditioning & Refrigeration — clean, modern, and built for trust. Features full-width hero sections, service showcases, testimonials, and WhatsApp integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elitewaves
Tags: air-conditioning, hvac, services, full-width-template, custom-header, custom-logo, featured-images

*/

/* ─────────────────────────────────────────
   ELITEWAVES THEME — PRIMARY STYLESHEET
   All component styles live here.
   ───────────────────────────────────────── */

:root {
  --navy:        #0d2b4e;
  --navy-deep:   #091e38;
  --teal:        #1fb8d4;
  --teal-light:  #4fd1e8;
  --teal-dark:   #0e8fa5;
  --white:       #ffffff;
  --off-white:   #f4f8fb;
  --gray:        #6b7a8d;
  --gray-light:  #e8edf2;
  --text:        #1a2a3a;
  --accent:      #ff6b35;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── SKIP LINK ─────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
  background: var(--teal); color: #fff;
  padding: 8px 16px; z-index: 9999;
}
.skip-link:focus { left: 0; top: 0; width: auto; height: auto; }

/* ─── NAV ────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(9, 30, 56, 0.97);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 40px;
  height: 72px;
  border-bottom: 1px solid rgba(31,184,212,0.15);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(9,30,56,1); }

.header-logo { display: flex; align-items: center; }
.header-logo img { height: 48px; object-fit: contain; }
.custom-logo-link img { height: 48px; object-fit: contain; }

/* Primary Nav — centered */
#site-navigation {
  display: flex; justify-content: center; align-items: center;
}
.main-navigation { display: flex; align-items: center; }
.main-navigation ul {
  display: flex; gap: 36px; list-style: none; align-items: center;
  margin: 0; padding: 0;
}
.main-navigation li { position: relative; }
.main-navigation a {
  color: rgba(255,255,255,0.72);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative; padding: 4px 0;
}
.main-navigation a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--teal);
  transition: width 0.25s;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--white); }
.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after { width: 100%; }

/* Dropdown */
.main-navigation .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--navy-deep); min-width: 200px;
  border: 1px solid rgba(31,184,212,0.2);
  border-top: 2px solid var(--teal);
  padding: 8px 0; list-style: none;
}
.main-navigation li:hover > .sub-menu { display: block; }
.main-navigation .sub-menu a {
  display: block; padding: 10px 20px; font-size: 13px;
}
.main-navigation .sub-menu a::after { display: none; }

/* Right action group */
.header-actions {
  display: flex; align-items: center; gap: 12px;
  justify-content: flex-end;
}

/* Call button */
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.82);
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(31,184,212,0.35);
  padding: 9px 16px; border-radius: 6px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-call svg {
  width: 15px; height: 15px; stroke: var(--teal);
  flex-shrink: 0;
}
.btn-call:hover {
  border-color: var(--teal);
  color: var(--white);
  background: rgba(31,184,212,0.08);
}

/* Nav CTA */
.btn-nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 10px 22px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block; white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* Mobile toggle */
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ────────────────────────────────── */
.hero-section {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(13,43,78,0.92) 0%,
    rgba(13,43,78,0.68) 50%,
    rgba(13,43,78,0.18) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; margin-left: 10%;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.hero-section h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.92; color: var(--white);
  margin-bottom: 24px;
}
.hero-section h1 span { color: var(--teal); }
.hero-sub {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.82); line-height: 1.65;
  max-width: 480px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  position: absolute; bottom: 48px; right: 10%;
  background: rgba(13,43,78,0.9); border: 1px solid rgba(31,184,212,0.3);
  padding: 20px 28px; border-radius: 8px;
  backdrop-filter: blur(8px);
  animation: fadeUp 1s 0.4s ease both;
  z-index: 2;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 52px; color: var(--teal); line-height: 1;
}
.hero-badge-label {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
}

/* ─── BUTTONS ─────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--teal); color: var(--white);
  padding: 16px 36px; border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(31,184,212,0.4);
}
.btn-primary:hover {
  background: var(--teal-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(31,184,212,0.5); color: #fff;
}
.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 14px 32px; border-radius: 4px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--teal); background: rgba(31,184,212,0.1); color: #fff; }
.btn-navy {
  display: inline-block;
  background: var(--navy); color: var(--white);
  padding: 14px 32px; border-radius: 4px;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  transition: background 0.2s, transform 0.2s;
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); color: #fff; }
.btn-teal-lg {
  display: inline-block;
  background: var(--teal); color: var(--white);
  padding: 20px 48px; border-radius: 4px;
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-teal-lg:hover { background: var(--teal-dark); transform: translateY(-2px); color: #fff; }

/* ─── SERVICES STRIP ──────────────────────── */
.services-strip {
  background: var(--navy);
  display: flex; align-items: stretch;
  border-bottom: 3px solid var(--teal);
}
.strip-item {
  flex: 1; display: flex; align-items: center; gap: 16px;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(31,184,212,0.08); }
.strip-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(31,184,212,0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.strip-icon svg { width: 22px; height: 22px; fill: var(--teal); }
.strip-label {
  font-family: var(--font-cond);
  font-size: 15px; font-weight: 700;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.5px;
}
.strip-desc { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ─── SECTION COMMONS ─────────────────────── */
.section-label {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--navy); line-height: 1.05;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 16px; color: var(--gray); max-width: 540px; margin: 0 auto;
}

/* ─── ABOUT ───────────────────────────────── */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-image {
  position: relative; overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-accent {
  position: absolute; bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--teal); opacity: 0.6;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.about-content {
  background: var(--off-white);
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  color: var(--navy); line-height: 1.05;
  margin-bottom: 20px;
}
.about-content h2 em { color: var(--teal); font-style: normal; }
.about-content p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.about-list { list-style: none; margin-bottom: 36px; }
.about-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 8px 0; border-bottom: 1px solid var(--gray-light);
}
.about-list .check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--teal); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}

/* ─── STATS ───────────────────────────────── */
.stats-section {
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  padding: 0;
}
.stat-item {
  flex: 1; min-width: 200px;
  text-align: center;
  padding: 56px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 90px);
  color: var(--white); line-height: 1; display: block;
}
.stat-plus { color: var(--teal); }
.stat-label {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* ─── SERVICES GRID ───────────────────────── */
.services-section { padding: 100px 48px; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--teal);
  transition: height 0.3s;
}
.service-card:hover { box-shadow: 0 16px 40px rgba(13,43,78,0.12); transform: translateY(-4px); border-color: rgba(31,184,212,0.3); }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(31,184,212,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--teal); }
.service-card h3 {
  font-family: var(--font-cond);
  font-size: 20px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.5px;
  margin-bottom: 10px; text-transform: uppercase;
}
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ─── OUTDOOR ─────────────────────────────── */
.outdoor-section {
  position: relative; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.outdoor-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.outdoor-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,43,78,0.95) 0%, rgba(13,43,78,0.7) 60%, rgba(13,43,78,0.1) 100%);
}
.outdoor-content {
  position: relative; z-index: 2;
  max-width: 600px; padding: 80px 10%;
}
.outdoor-content h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white); line-height: 1.0;
  margin-bottom: 24px;
}
.outdoor-content h2 em { color: var(--teal); font-style: normal; }
.outdoor-content p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.75; margin-bottom: 32px; }
.outdoor-features {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
.outdoor-feature {
  background: rgba(31,184,212,0.15);
  border: 1px solid rgba(31,184,212,0.35);
  color: var(--teal-light); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 4px;
}

/* ─── TECHNICIAN ──────────────────────────── */
.tech-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 600px;
}
.tech-content {
  padding: 80px 64px;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.tech-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--navy); line-height: 1.05;
  margin-bottom: 16px;
}
.tech-content > p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 36px; }
.checklist { list-style: none; margin-bottom: 40px; }
.checklist li {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--gray-light);
}
.checklist-num {
  font-family: var(--font-display);
  font-size: 28px; color: var(--teal); line-height: 1;
  flex-shrink: 0; min-width: 36px;
}
.checklist li strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.checklist li div { font-size: 14px; color: var(--gray); }
.tech-image { position: relative; overflow: hidden; }
.tech-image img { width: 100%; height: 100%; object-fit: cover; }
.tech-image-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--teal); color: var(--white);
  padding: 8px 18px; border-radius: 4px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
}

/* ─── TESTIMONIALS ────────────────────────── */
.testimonials { padding: 100px 48px; background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 12px 32px rgba(13,43,78,0.1); }
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: 14px; color: var(--gray); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
  border-left: 3px solid var(--teal); padding-left: 14px;
}
.testimonial-author { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-rating { font-size: 12px; color: var(--teal); margin-top: 4px; font-weight: 600; }

/* ─── CTA BANNER ──────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-top: 3px solid var(--teal);
  padding: 80px 10%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white); line-height: 1.0;
}
.cta-banner h2 span { color: var(--teal); }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 15px; max-width: 480px; margin-top: 12px; }

/* ─── CONTACT BAR ─────────────────────────── */
.contact-bar {
  background: var(--navy-deep);
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 0;
}
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 32px 48px;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex: 1; min-width: 220px;
}
.contact-item:last-child { border-right: none; }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(31,184,212,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--teal); stroke-width: 1.8; }
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); }
.contact-value { font-size: 15px; font-weight: 600; color: var(--white); }
.contact-sub { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ─── FOOTER ──────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 72px 10% 0;
  border-top: 1px solid rgba(31,184,212,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; }
.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--white); margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 8px;
}

/* ─── WHATSAPP FLOAT ──────────────────────── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 60px; height: 60px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ─── WORDPRESS PAGE CONTENT ──────────────── */
.site-main { padding-top: 72px; }
.entry-content { max-width: 840px; margin: 60px auto; padding: 0 32px; line-height: 1.8; }
.entry-content h1, .entry-content h2, .entry-content h3 { color: var(--navy); margin: 1.5em 0 0.5em; }
.entry-content p { margin-bottom: 1.2em; color: var(--text); }
.entry-content a { color: var(--teal); text-decoration: underline; }
.entry-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--navy); margin-bottom: 40px;
  text-align: center; padding-top: 60px;
}
.page-inner { max-width: 960px; margin: 0 auto; padding: 60px 32px 80px; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .about-image { height: 380px; }
  .tech-section { grid-template-columns: 1fr; }
  .tech-image { height: 400px; }
  .services-strip { flex-wrap: wrap; }
  .strip-item { flex: 0 0 50%; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; grid-template-columns: auto 1fr auto; }
  #site-navigation { display: none; }
  #site-navigation.open { display: flex; position: absolute; top: 72px; left: 0; width: 100%; background: var(--navy-deep); padding: 16px 24px 24px; border-top: 1px solid rgba(31,184,212,0.15); }
  #site-navigation.open .main-navigation { width: 100%; }
  #site-navigation.open ul { flex-direction: column; gap: 16px; width: 100%; }
  .header-actions .btn-call span { display: none; }
  .header-actions .btn-call { padding: 9px 12px; }
  .menu-toggle { display: block; }
  .hero-content { margin-left: 6%; margin-right: 6%; }
  .hero-badge { display: none; }
  .cta-banner { text-align: center; justify-content: center; }
  .about-content { padding: 48px 32px; }
  .tech-content { padding: 48px 32px; }
  .services-section { padding: 64px 24px; }
  .testimonials { padding: 64px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-item { padding: 24px 32px; }
  .strip-item { flex: 0 0 100%; }
}

@media (max-width: 480px) {
  .btn-teal-lg { width: 100%; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}
