/* ================================
   BASIC RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

:root {
  --navbar-height: 90px;
  --navbar-height-mobile: 70px;
  --brand-blue: #003b6f;
  --brand-blue-dark: #002a4a;
  --brand-light: #0077b6;
  --accent: #4fc3f7;
}

body {
  color: #222;
}

/* ================================
   NAVBAR — transparent + scroll
================================ */
.navbar {
  background: transparent;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-link:hover { opacity: 0.88; }

.logo-img {
  height: 48px;
  width: auto;
  transition: opacity 0.35s ease;
}

.navbar.scrolled .logo-img { }

.logo-text {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  color: white;
  white-space: nowrap;
  transition: color 0.35s ease;
}

.navbar.scrolled .logo-text { color: var(--brand-blue); }

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-links li { padding: 8px 4px; }

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 8px 14px;
  transition: color 0.35s ease;
}

.navbar.scrolled .nav-links a { color: var(--brand-blue); }

.nav-links a:not(.quote-btn):hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.navbar.scrolled .nav-links a:not(.quote-btn):hover { color: var(--brand-light); }

.nav-links a.quote-btn {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 5px;
  color: white;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.navbar.scrolled .nav-links a.quote-btn {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
}

.nav-links a.quote-btn:hover { background: rgba(255,255,255,0.32); }
.navbar.scrolled .nav-links a.quote-btn:hover { background: var(--brand-blue-dark); }

/* ================================
   HAMBURGER
================================ */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s ease;
}

.navbar.scrolled .hamburger span { background: var(--brand-blue); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ================================
   HERO
================================ */
.hero {
  background: linear-gradient(135deg, #001f3f 0%, #003b6f 50%, #0077b6 100%);
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px; /* FIX: clears the stats strip height */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(0,150,214,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 85%, rgba(0,10,40,0.45) 0%, transparent 55%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 60px,
    rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 30px 0; /* top padding clears the fixed navbar */
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 7px 18px;
  border-radius: 30px;
  animation: fadeUp 0.8s 0.1s ease both;
}


/* Hero location keyword tag */
.hero-location-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  margin-top: -10px;
}

.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-content h1 span { color: var(--accent); }

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto 36px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-button {
  background: white;
  color: var(--brand-blue);
  padding: 15px 32px;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-button:hover {
  background: #e2eef8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.hero-button-secondary {
  background: transparent;
  color: white;
  padding: 15px 32px;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s ease;
}

.hero-button-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,20,50,0.55);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 18px 40px;
  z-index: 3;
  animation: fadeUp 0.8s 0.5s ease both;
}

.hero-stat { text-align: center; }

.hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 12px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================
   BEFORE & AFTER
================================ */
.before-after {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.ba-header { margin-bottom: 50px; }

.ba-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 12px;
}

.ba-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.ba-sub {
  font-size: 17px;
  color: #666;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

.ba-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 36px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.ba-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.ba-label {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

.before-label {
  background: rgba(0,0,0,0.55);
  color: #ffcccc;
  border: 1px solid rgba(255,100,100,0.4);
}

.after-label {
  background: rgba(0,40,80,0.65);
  color: #a8e6ff;
  border: 1px solid rgba(79,195,247,0.4);
}

.ba-image {
  flex: 1;
  overflow: hidden;
}

.ba-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ba-side:hover .ba-image img { transform: scale(1.03); }

.ba-caption {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.ba-side:first-child .ba-caption { background: #fff5f5; color: #9b2226; }
.ba-side:first-child .ba-caption i { color: #e05050; }
.ba-side:last-child .ba-caption { background: #f0f8ff; color: var(--brand-blue); }
.ba-side:last-child .ba-caption i { color: var(--brand-light); }

.ba-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue);
  width: 48px;
  flex-shrink: 0;
  gap: 10px;
  padding: 20px 0;
}

.ba-divider-line { width: 2px; flex: 1; background: rgba(255,255,255,0.2); }

.ba-divider-icon {
  color: white;
  font-size: 18px;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ba-details {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.ba-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f5fb;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-blue);
}

.ba-detail-item i { color: var(--brand-light); font-size: 14px; }

.ba-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--brand-blue);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ba-btn:hover { background: var(--brand-blue-dark); transform: translateY(-2px); }

/* ================================
   SERVICES
================================ */
.services {
  padding: 80px 40px;
  text-align: center;
  background-color: #f9f9f9;
}

.services h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.services-intro {
  font-size: 17px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.services-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: white;
  border-radius: 12px;
  width: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img { transform: scale(1.04); }

.service-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.service-card-content h3 { font-size: 22px; color: var(--brand-blue); }

.service-card-content p {
  flex: 1;
  line-height: 1.5;
  font-size: 16px;
  color: #333;
}

.service-card-content a {
  color: var(--brand-blue);
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  margin-top: auto;
  transition: color 0.2s ease;
}

.service-card-content a:hover { color: var(--brand-light); text-decoration: underline; }

/* ================================
   WHY CHOOSE US ICONS
================================ */
.why-choose-us-icons {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.why-choose-us-icons h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--brand-blue);
  letter-spacing: -0.5px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.icon-card:hover { background: #f0f5fb; transform: translateY(-4px); }

.icon-card i { font-size: 2rem; color: var(--brand-blue); margin-bottom: 15px; }

.icon-card h3 { font-size: 1.1rem; font-weight: 600; color: #333; }

.icon-license {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

/* ================================
   BUTTONS
================================ */
.primary-btn {
  display: inline-block;
  padding: 14px 34px;
  background-color: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.primary-btn:hover { background-color: var(--brand-blue-dark); transform: translateY(-2px); }

.areas-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--brand-blue);
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  font-size: 17px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.areas-btn:hover { background: var(--brand-blue-dark); transform: translateY(-2px); }

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 34px;
  background-color: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-btn:hover { background-color: var(--brand-blue-dark); transform: translateY(-2px); }

/* ================================
   SERVICE AREAS
================================ */
.service-areas {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.service-areas-container { max-width: 900px; margin: 0 auto; }

.service-areas h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.service-areas p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ================================
   CTA BANNER
================================ */
.cta-banner {
  background: #ffffff;
  color: var(--brand-blue);
  padding: 70px 20px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

/* ================================
   FOOTER
================================ */
.site-footer {
  background: #001f3f;
  color: white;
  padding: 60px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.footer-license-badge i { color: var(--accent); }

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-info a,
.footer-contact-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-info a:hover { color: var(--accent); }
.footer-contact-info i { width: 16px; color: var(--accent); font-size: 14px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

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

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

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ================================
   FOOTER SOCIAL
================================ */
.footer-social {
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: rgba(0, 119, 182, 0.2);
  border-color: rgba(0, 119, 182, 0.5);
  color: #4fc3f7;
}

.footer-social i {
  font-size: 18px;
  color: #4fc3f7;
}


/* ================================
   LICENSE BADGE (floating)
================================ */
.license-badge {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,59,111,0.92);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  animation: popIn 0.4s 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.license-badge i { font-size: 11px; color: var(--accent); }

/* ================================
   STICKY CALL BUTTON
================================ */
.sticky-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-blue);
  color: white;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,59,111,0.45);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  animation: popIn 0.4s 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.6) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.sticky-call:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,59,111,0.55);
}

.sticky-call i {
  font-size: 17px;
  animation: ring 2.5s 2s ease infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%       { transform: rotate(-15deg); }
  20%       { transform: rotate(15deg); }
  30%       { transform: rotate(-10deg); }
  40%       { transform: rotate(10deg); }
  50%       { transform: rotate(0deg); }
}

.sticky-call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: var(--brand-blue);
  z-index: -1;
  animation: pulse 2.5s 2s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ================================
   MOBILE/TABLET NAV
================================ */
@media (max-width: 992px) {
  .navbar { padding: 15px 20px; }
  .logo-text { font-size: 24px; }

  .hamburger {
    display: flex;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active { display: flex; }
  .nav-links li { width: 100%; text-align: center; padding: 14px; }
  .nav-links a { color: var(--brand-blue) !important; }

  .nav-links a.quote-btn {
    background: var(--brand-blue) !important;
    color: white !important;
    border-color: var(--brand-blue) !important;
    display: inline-block;
    padding: 10px 24px;
  }
}

@media (min-width: 993px) {
  .hamburger { display: none !important; }
  .nav-links { display: flex !important; }
}

/* ================================
   SMALL SCREENS
================================ */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 80px 20px 140px; } /* extra bottom for stats strip */
  .hero-content h1 { font-size: 34px; }
  .hero-sub { font-size: 15px; }
  .hero-button, .hero-button-secondary { width: 100%; text-align: center; }
  .hero-stats { gap: 12px; padding: 12px 16px; flex-wrap: nowrap; overflow-x: auto; }
  .hero-stat strong { font-size: 16px; }
  .hero-stat span { font-size: 10px; letter-spacing: 0.5px; }

  .ba-card { flex-direction: column; border-radius: 12px; }
  .ba-divider { flex-direction: row; width: 100%; height: 44px; padding: 0 20px; }
  .ba-divider-line { width: auto; height: 2px; flex: 1; }
  .ba-image img { min-height: 220px; }
  .ba-header h2 { font-size: 28px; }
  .ba-btn { width: 100%; text-align: center; }

  .services { padding: 60px 20px; }
  .services h2 { font-size: 28px; }
  .service-card { width: 100%; max-width: 500px; }

  .why-choose-us-icons h2 { font-size: 28px; margin-bottom: 40px; }

  .service-areas h2 { font-size: 28px; }
  .service-areas p { font-size: 16px; }

  .cta-banner h2 { font-size: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sticky-call { bottom: 20px; right: 16px; padding: 13px 18px; }
  .sticky-call .call-label { display: none; }
  .license-badge { bottom: 80px; right: 16px; }
}

@media (max-width: 480px) {
  .primary-btn, .cta-btn, .areas-btn { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
}