/* ============================================
   GOING YOUR WAY TRANSPORTATION
   Main Stylesheet — Mobile-First Design
   Color Palette:
     Navy:   #0a2342
     Teal:   #0e9f8e
     Gold:   #f5a623
     White:  #ffffff
     Light:  #f8fafc
     Gray:   #64748b
============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy:       #0a2342;
  --navy-dark:  #061528;
  --navy-mid:   #0d2f5a;
  --teal:       #1a6fd4;
  --teal-dark:  #1455a8;
  --teal-light: #e6f0fb;
  --gold:       #f5a623;
  --gold-dark:  #d4891a;
  --white:      #ffffff;
  --light:      #f8fafc;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-500:   #64748b;
  --gray-700:   #334155;
  --text:       #1e293b;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 20px rgba(10,35,66,0.10);
  --shadow-lg:  0 8px 40px rgba(10,35,66,0.15);
  --transition: all 0.3s ease;
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 80px 0;
}

.bg-light { background: var(--light); }

.accent { color: var(--teal); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px; /* Accessibility: minimum touch target */
}

.btn i { font-size: 0.95em; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(26,111,212,0.35);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,212,0.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white-solid {
  background: var(--white);
  color: var(--teal);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white-solid:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-xl { padding: 18px 36px; font-size: 1.1rem; }
.btn-lg  { padding: 16px 30px; font-size: 1rem; }
.btn-sm  { padding: 10px 20px; font-size: 0.875rem; }

.btn-block-mobile { width: 100%; justify-content: center; margin-top: 12px; }

/* Pulse animation for main CTA buttons */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(26,111,212,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(26,111,212,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,111,212,0); }
}
.pulse-btn { animation: pulse-ring 2.5s infinite; }
.pulse-btn:hover { animation: none; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  max-width: 620px;
  margin: 0 auto;
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== STICKY CALL BAR ===== */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-call-bar.visible {
  transform: translateY(0);
}

.sticky-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  background: var(--teal);
  width: 100%;
  letter-spacing: 0.3px;
  transition: background 0.3s;
}

.sticky-call-link:hover, .sticky-call-link:active {
  background: var(--teal-dark);
}

.sticky-call-link i {
  font-size: 1.1rem;
  animation: ring 2s infinite;
}

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,35,66,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.logo-icon-sm {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.2px;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Desktop Nav */
.main-nav { display: none; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav ul li a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.main-nav ul li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.header-call-btn { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy-dark);
  z-index: 2000;
  padding: 80px 30px 40px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul li a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--teal); }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  padding: 8px;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--white); }

.mobile-call-big {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 18px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #0d3060 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Decorative background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(26,111,212,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,111,212,0.2);
  border: 1px solid rgba(26,111,212,0.4);
  color: var(--teal);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-slogan {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-style: italic;
}
.hero-slogan strong { color: var(--gold); font-style: normal; }

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
  width: 100%;
}

/* On very small phones, make hero CTA buttons full width */
@media (max-width: 480px) {
  .hero-cta-group .btn {
    width: 100%;
    white-space: normal;
  }
  .btn-xl { padding: 16px 20px; font-size: 1rem; }
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item i { color: var(--teal); font-size: 1rem; }

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ===== CALL BANNER ===== */
.call-banner {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  padding: 20px 0;
}

.call-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.call-banner-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1rem;
}
.call-banner-text i {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--teal-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--teal);
  color: var(--white);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.service-call-link:hover { color: var(--teal-dark); gap: 12px; }

.service-card-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--navy);
}
.service-card-cta::before { background: var(--gold); }
.service-card-cta .service-icon {
  background: rgba(245,166,35,0.15);
  color: var(--gold);
}
.service-card-cta h3 { color: var(--white); }
.service-card-cta p { color: rgba(255,255,255,0.7); }

/* ===== CTA DARK SECTION ===== */
.cta-section {
  padding: 72px 0;
}
.cta-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at right, rgba(26,111,212,0.15) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.cta-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* ===== WHY US ===== */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  background: var(--teal-light);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--teal);
  color: var(--white);
}

.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
}

.why-cta {
  text-align: center;
  padding: 40px;
  background: var(--light);
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--gray-200);
}
.why-cta p {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 20px;
}

/* ===== SERVICE AREA ===== */
.area-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: var(--transition);
}
.area-item:hover {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal-dark);
}
.area-item i { color: var(--teal); font-size: 0.85rem; }

.area-item-more {
  grid-column: 1 / -1;
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.area-cta-box {
  background: var(--navy);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.area-cta-box p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.area-map-placeholder { width: 100%; }

.map-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.map-box i {
  font-size: 3.5rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.map-box p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0;
}
.map-box span {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.about-icon-wrap {
  width: 260px;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.about-icon-wrap .about-logo-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.35));
}

.about-stat-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  min-width: 120px;
  box-shadow: var(--shadow);
}

.stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content { max-width: 600px; margin: 0 auto; }
.about-content .section-label { display: inline-block; margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; text-align: left; }
.about-content p {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-content p strong { color: var(--navy); }
.about-cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  color: var(--teal-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.stars i { color: var(--gold); font-size: 1rem; }

.testimonial-text {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 12px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  letter-spacing: 0.3px;
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--white); }

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.contact-card-phone:hover { border-color: var(--teal); background: var(--teal-light); }
.contact-card-email:hover { border-color: var(--gold); background: #fef9ee; }
.contact-card-address:hover { border-color: var(--navy); background: #f0f4f8; }

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card-email .contact-card-icon { background: var(--gold); }
.contact-card-address .contact-card-icon { background: var(--navy); }

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
}
.contact-card-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.4;
}
.contact-card-sub {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
}

.contact-big-cta { display: flex; justify-content: center; }

.big-cta-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
}
.big-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(26,111,212,0.2) 0%, transparent 70%);
}
.big-cta-icon {
  font-size: 3rem;
  color: var(--teal);
  position: relative;
  z-index: 1;
}
.big-cta-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
.big-cta-box p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}
.big-cta-box .btn { position: relative; z-index: 1; width: 100%; justify-content: center; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo .logo-name { font-size: 1.1rem; }
.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.footer-links ul li,
.footer-services ul li {
  padding: 6px 0;
  font-size: 0.9rem;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--white); }

.footer-services ul li { color: rgba(255,255,255,0.5); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item i { color: var(--teal); flex-shrink: 0; margin-top: 3px; }

.footer-call-btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
}
.footer-bottom-inner {
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  line-height: 1.7;
}
.footer-seo-text {
  font-size: 0.75rem !important;
  margin-top: 6px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

/* ===== MOBILE BASE FIXES (all phones under 768px) ===== */
@media (max-width: 767px) {

  /* --- General spacing --- */
  .section-pad { padding: 56px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: 1.75rem; }
  .section-desc { font-size: 0.95rem; }

  /* --- Header --- */
  .header-inner { height: 64px; gap: 12px; }
  .logo-name { font-size: 0.9rem; }
  .logo-sub { font-size: 0.6rem; letter-spacing: 1px; }
  .logo-icon { width: 38px; height: 38px; font-size: 1rem; }

  /* --- Hero --- */
  .hero { padding: 100px 0 70px; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); letter-spacing: -0.5px; margin-bottom: 16px; }
  .hero-slogan { font-size: 1rem; margin-bottom: 16px; }
  .hero-desc { font-size: 0.9rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.78rem; padding: 6px 14px; }
  .hero-cta-group { margin-bottom: 32px; gap: 12px; }
  .hero-trust-bar { gap: 14px 20px; padding-top: 24px; }
  .trust-item { font-size: 0.82rem; }
  .hero-wave svg { height: 36px; }

  /* --- Buttons: full width on mobile --- */
  .hero-cta-group .btn {
    width: 100%;
    white-space: normal;
    justify-content: center;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-xl { padding: 15px 20px; font-size: 0.95rem; }
  .btn-lg  { padding: 13px 20px; font-size: 0.9rem; }

  /* --- Call banner --- */
  .call-banner { padding: 16px 0; }
  .call-banner-text { font-size: 0.9rem; }
  .call-banner-text i { font-size: 1.1rem; }

  /* --- Service cards --- */
  .services-grid { gap: 16px; }
  .service-card { padding: 24px 20px; }
  .service-icon { width: 50px; height: 50px; font-size: 1.3rem; margin-bottom: 14px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.88rem; }

  /* --- CTA dark section --- */
  .cta-section { padding: 52px 0; }
  .cta-text h2 { font-size: 1.5rem; }
  .cta-text p { font-size: 0.9rem; }

  /* --- Why us cards --- */
  .why-grid { gap: 12px; margin-bottom: 32px; }
  .why-card { padding: 20px 16px; gap: 14px; }
  .why-icon { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 12px; }
  .why-card h3 { font-size: 0.95rem; }
  .why-card p { font-size: 0.85rem; }
  .why-cta { padding: 28px 20px; }
  .why-cta p { font-size: 0.95rem; }

  /* --- Area section --- */
  .area-list { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
  .area-item { padding: 10px 12px; font-size: 0.82rem; gap: 8px; }
  .area-cta-box { padding: 22px 18px; }
  .map-box { padding: 36px 20px; }
  .map-box i { font-size: 2.5rem; }
  .map-box p { font-size: 1.1rem; }

  /* --- About section --- */
  .about-icon-wrap { width: 120px; height: 120px; font-size: 3rem; }
  .about-stat-cards { gap: 10px; }
  .stat-card { padding: 16px 18px; min-width: 90px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.65rem; }
  .about-content p { font-size: 0.92rem; }
  /* about-cta-row now uses .cta-btn-group — handled globally above */

  /* --- Testimonials --- */
  .testimonials-grid { gap: 16px; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-text { font-size: 0.88rem; }

  /* --- Contact section --- */
  .contact-info-cards { gap: 12px; }
  .contact-card { padding: 18px 20px; gap: 14px; }
  .contact-card-icon { width: 46px; height: 46px; font-size: 1.1rem; border-radius: 12px; }
  .contact-card-value { font-size: 0.9rem; }
  .big-cta-box { padding: 36px 24px; }
  .big-cta-box h3 { font-size: 1.25rem; }
  .big-cta-box .btn { width: 100%; }

  /* --- FAQ section --- */
  .faq-grid { gap: 8px; }
  .faq-item summary { padding: 16px 18px; font-size: 0.9rem; }
  .faq-item p { padding: 0 18px 16px; font-size: 0.875rem; padding-top: 12px; }

  /* --- Footer --- */
  .footer-inner { gap: 28px; padding-bottom: 36px; }
  .footer-call-btn { width: 100%; justify-content: center; }
  .footer-tagline { font-size: 0.82rem; }
  .footer-bottom p { font-size: 0.72rem; }

  /* --- Sticky bar text size --- */
  .sticky-call-link,
  .sticky-sms-link { font-size: 0.85rem; padding: 14px 8px; gap: 6px; }

  /* --- Back to top button position above sticky bar --- */
  .back-to-top { bottom: 72px; right: 14px; width: 40px; height: 40px; font-size: 0.85rem; }
}

/* ===== SMALL MOBILE FIXES (max 390px — iPhone SE, Galaxy A series) ===== */
@media (max-width: 390px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 1.85rem; }
  .hero-badge { font-size: 0.72rem; padding: 5px 12px; }
  .logo-name { font-size: 0.82rem; }
  .sticky-call-link span,
  .sticky-sms-link span { font-size: 0.78rem; }
  .stat-card { min-width: 80px; padding: 14px 12px; }
  .area-item { font-size: 0.78rem; padding: 8px 10px; }
}

/* ===== RESPONSIVE — TABLET (768px+) ===== */
@media (min-width: 768px) {

  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .call-banner-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

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

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-list { grid-template-columns: repeat(3, 1fr); }

  .area-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .area-list-wrap { flex: 1; }
  .area-map-placeholder { flex: 0 0 340px; }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-cards {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
  .contact-card { flex-direction: column; text-align: center; }
  .contact-card-icon { margin: 0 auto 8px; }

  .about-cta-row {
    flex-direction: row;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
  }

  /* Tablet: keep contact cards stacked for readability */
  .contact-card-value {
    font-size: 0.9rem;
    word-break: break-word;
  }

  /* Tablet: area layout stack fix */
  .area-list-wrap { min-width: 0; }
}

/* ===== RESPONSIVE — DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {

  /* Show desktop nav */
  .main-nav { display: block; }
  .header-call-btn { display: inline-flex; }
  .hamburger { display: none; }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .about-layout {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
  .about-visual { flex: 0 0 auto; }
  .about-content { max-width: none; margin: 0; flex: 1; }
  .about-content .section-title { text-align: left; }

  .contact-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
  .contact-info-cards { flex: 1; grid-template-columns: 1fr; }
  .contact-card {
    flex-direction: row;
    text-align: left;
  }
  .contact-card-icon { margin: 0; }
  .contact-big-cta { flex: 0 0 360px; }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  /* Sticky bar only on mobile — hide on desktop */
  .sticky-call-bar { display: none; }
  .back-to-top { bottom: 30px; }

  /* Desktop: body needs no bottom padding since sticky bar is hidden */
  body { padding-bottom: 0 !important; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge { animation: fadeInUp 0.6s ease both; animation-delay: 0.1s; }
.hero-title { animation: fadeInUp 0.6s ease both; animation-delay: 0.2s; }
.hero-slogan { animation: fadeInUp 0.6s ease both; animation-delay: 0.3s; }
.hero-desc { animation: fadeInUp 0.6s ease both; animation-delay: 0.4s; }
.hero-cta-group { animation: fadeInUp 0.6s ease both; animation-delay: 0.5s; }
.hero-trust-bar { animation: fadeInUp 0.6s ease both; animation-delay: 0.6s; }

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== BODY PADDING FOR STICKY MOBILE BAR ===== */
/* Prevent content from hiding behind sticky call bar on mobile */
@media (max-width: 1023px) {
  body {
    padding-bottom: 60px;
  }
}

/* ===== UNIFIED CTA BUTTON GROUP ===== */
/* Used everywhere we have 2-3 stacked buttons */
.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cta-btn-group--center {
  justify-content: center;
}

@media (max-width: 767px) {
  .cta-btn-group {
    flex-direction: column;
    width: 100%;
  }
  .cta-btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .cta-btn-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ===== SMS BUTTON ===== */
/* Legacy .sms-btn-row kept for any remaining references */
.sms-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.btn-sms {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(245,166,35,0.35);
}
.btn-sms:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.45);
}

/* ===== STICKY BAR - SPLIT CALL & SMS ===== */
.sticky-call-bar {
  display: flex;
}
.sticky-call-link,
.sticky-sms-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  transition: background 0.3s;
}
.sticky-call-link {
  background: var(--teal);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.sticky-sms-link {
  background: var(--gold);
  color: var(--navy);
}
.sticky-call-link:hover, .sticky-call-link:active { background: var(--teal-dark); }
.sticky-sms-link:hover, .sticky-sms-link:active { background: var(--gold-dark); color: var(--white); }

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
}
.faq-item[open] summary { color: var(--teal); }

.faq-item p {
  padding: 0 24px 20px;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.75;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}
.faq-item p a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MINIMUM TOUCH TARGETS FOR ALL INTERACTIVE ELEMENTS ===== */
.service-call-link,
.footer-contact-item {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ===== PRINT STYLES ===== */
@media print {
  .site-header, .sticky-call-bar, .back-to-top,
  .mobile-menu, .mobile-overlay, .hero-wave { display: none !important; }
  body { padding: 0; color: #000; }
  a { color: #000; }
  .btn { border: 2px solid #000 !important; background: none !important; color: #000 !important; }
}

/* ── Logo Image Styles ─────────────────────────────── */
.site-logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

/* ── About Section Logo ─────────────────────────────── */
.about-logo-display {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.about-logo-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}

/* ── Big CTA Logo ─────────────────────────────── */
.big-cta-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.3));
}
