/* ============================================================
   ALAMO SERVICE PROS – Global Stylesheet
   Color Palette (from logo):
     Steel Blue:  #1C3148  (primary dark)
     Mid Blue:    #2D4F72  (primary mid)
     Red Accent:  #8B2232  (accent / CTA — matches logo "Alamo" text)
     Light BG:    #F2F4F8  (cool off-white)
     Alt BG:      #E8ECF2  (cool blue-gray)
     Dark Text:   #1A2332  (slate)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1A2332;
  background: #fff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Oswald', 'Inter', sans-serif;
  line-height: 1.15;
  color: #1C3148;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.5px; }

p { color: #4A5567; line-height: 1.75; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #8B2232;
  color: #fff;
  border-color: #8B2232;
}
.btn-primary:hover { background: #6E1A28; border-color: #6E1A28; }

.btn-secondary {
  background: #1C3148;
  color: #fff;
  border-color: #1C3148;
}
.btn-secondary:hover { background: #2D4F72; border-color: #2D4F72; }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-outline-navy {
  background: transparent;
  color: #1C3148;
  border-color: #1C3148;
}
.btn-outline-navy:hover { background: #1C3148; color: #fff; }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── Section Utilities ────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: #E8ECF2; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8B2232;
  margin-bottom: 10px;
}

.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.section-cta { text-align: center; margin-top: 40px; }

/* ═══════════════════════════════════════════════════════════
   HEADER & NAV
   ═══════════════════════════════════════════════════════════ */
.site-header { position: sticky; top: 0; z-index: 1000; }

/* Top bar */
.top-bar {
  background: #0F1E30;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 6px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-phone {
  color: #E8725A;
  font-weight: 600;
  transition: color 0.2s;
}
.top-phone:hover { color: #fff; }

/* Navbar */
.navbar {
  background: #F8F9FC;
  border-bottom: 3px solid #8B2232;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

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

.logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1C3148;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: #8B2232;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A5567;
  transition: color 0.2s, background 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #1C3148;
  background: #E8ECF2;
}

.nav-cta {
  background: #8B2232 !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #6E1A28 !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #1C3148;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.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); }

/* ═══════════════════════════════════════════════════════════
   HERO (default / inner pages can use)
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0F1E30 0%, #1C3148 55%, #2D4F72 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(139,34,50,0.10) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,30,48,0.35);
}

/* Two-column hero layout */
.hero-two-col {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 72px 24px;
  width: 100%;
}

.hero-content {
  color: #fff;
  max-width: 620px;
}

.hero-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-logo {
  width: 230px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.55));
  animation: badge-float 4s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.hero-badge {
  display: inline-block;
  background: rgba(139,34,50,0.18);
  border: 1px solid rgba(139,34,50,0.5);
  color: #f0c8c8;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-content h1 { color: #fff; margin-bottom: 18px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust { display: flex; gap: 12px; flex-wrap: wrap; }

.trust-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAND
   ═══════════════════════════════════════════════════════════ */
.trust-band {
  background: #1C3148;
  padding: 32px 0;
}

.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.trust-icon { font-size: 2rem; flex-shrink: 0; }

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* ═══════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(28,49,72,0.12);
  border-color: #2D4F72;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 18px;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #8B2232;
  transition: gap 0.2s;
}

.service-card:hover .card-link { letter-spacing: 0.5px; }

/* ═══════════════════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════════════════ */
.why-us { background: #E8ECF2; }

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-us-text .section-label { text-align: left; }
.why-us-text h2 { margin-bottom: 28px; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }

.why-list strong {
  display: block;
  font-weight: 600;
  color: #1C3148;
  margin-bottom: 4px;
}

.why-list p { font-size: 0.9rem; margin: 0; }

/* Image placeholder */
.why-us-image {
  position: relative;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1C3148, #0F1E30);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,0.6);
  padding: 20px;
}

.image-placeholder-inner p {
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  font-size: 0.9rem;
}

.stat-badge {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(28,49,72,0.15);
  text-align: center;
}

.stat-badge strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #8B2232;
  font-family: 'Oswald', sans-serif;
}

.stat-badge span {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

.stat-badge-1 { bottom: -20px; left: -20px; }
.stat-badge-2 { top: -20px; right: -20px; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 12px;
  padding: 28px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  color: #2D4F72;
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  color: #D4A017;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1C3148;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1C3148;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* ═══════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #8B2232 0%, #6E1A28 100%);
  padding: 64px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #0F1E30;
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}

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

.logo-footer .logo-name { color: #fff; }
.logo-footer .logo-sub { color: #8B2232; }

.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-license {
  margin-top: 12px;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(139,34,50,0.15);
  border: 1px solid rgba(139,34,50,0.3);
  color: #E8725A;
  padding: 4px 12px;
  border-radius: 20px;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #E8725A; }

.footer-col address p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.footer-col address a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col address a:hover { color: #E8725A; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #0F1E30 0%, #1C3148 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: #E8725A; }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════ */
.service-detail {
  padding: 80px 0;
}

.service-detail:nth-child(even) { background: #E8ECF2; }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail-text { direction: ltr; }
.service-detail:nth-child(even) .service-detail-visual { direction: ltr; }

.service-detail-text h2 { margin-bottom: 16px; }
.service-detail-text p { margin-bottom: 20px; }

.service-detail-list {
  list-style: none;
  margin-bottom: 28px;
}

.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e8ecf2;
  font-size: 0.92rem;
  color: #4A5567;
}

.service-detail-list li::before {
  content: '\2713';
  color: #8B2232;
  font-weight: 700;
  flex-shrink: 0;
}

.service-visual-block {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1C3148, #2D4F72);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
}

.service-visual-icon { font-size: 4rem; }
.service-visual-block h3 { color: #fff; text-align: center; }
.service-visual-block p { color: rgba(255,255,255,0.65); text-align: center; font-size: 0.88rem; }

/* Service price badge */
.price-badge {
  display: inline-block;
  background: #8B2232;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-intro-text .section-label { text-align: left; }
.about-intro-text h2 { margin-bottom: 20px; }
.about-intro-text p { margin-bottom: 16px; }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.credential-badge {
  background: #E8ECF2;
  border-left: 4px solid #8B2232;
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
}

.credential-badge strong {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: #1C3148;
  margin-bottom: 2px;
}

.credential-badge span {
  font-size: 0.78rem;
  color: #6b7280;
}

.values-section { background: #E8ECF2; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e0e4ea;
}

.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; }

.team-photo {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1C3148, #2D4F72);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
}

.team-photo span { font-size: 5rem; }
.team-photo p { color: rgba(255,255,255,0.7); text-align: center; font-size: 0.88rem; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-section { padding: 80px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 24px; }

.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #E8ECF2;
  padding: 18px 20px;
  border-radius: 10px;
  border-left: 4px solid #8B2232;
}

.contact-method-icon { font-size: 1.6rem; flex-shrink: 0; }

.contact-method strong {
  display: block;
  font-weight: 600;
  color: #1C3148;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.contact-method p, .contact-method a {
  font-size: 0.92rem;
  color: #4A5567;
  margin: 0;
  font-weight: 500;
}

.contact-method a:hover { color: #8B2232; }

.service-areas h3 { font-size: 1rem; margin-bottom: 12px; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  background: #1C3148;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(28,49,72,0.08);
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4A5567;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: #1A2332;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2D4F72;
  box-shadow: 0 0 0 3px rgba(45,79,114,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 14px; }

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS PAGE
   ═══════════════════════════════════════════════════════════ */
.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card-lg {
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}

.testimonial-card-lg::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 5rem;
  color: #2D4F72;
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  background: #E8ECF2;
  padding: 3px 10px;
  border-radius: 20px;
}

.review-stats { background: #1C3148; padding: 60px 0; text-align: center; }

.review-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.review-stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #E8725A;
  margin-bottom: 4px;
}

.review-stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════
   LOGO IMAGES — nav & footer
   ═══════════════════════════════════════════════════════════ */

/* Navbar logo */
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.15));
}

/* Footer logo */
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
  margin-bottom: 12px;
}

/* Why-Us photo */
.why-us-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .trust-band-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-page-grid { grid-template-columns: repeat(2, 1fr); }
  .review-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-two-col { grid-template-columns: 1fr; }
  .hero-logo-col { display: none; }
  .hero-content { max-width: 100%; }
}

@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid #e0e4ea;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .nav-links.open { max-height: 500px; }

  .nav-links li a {
    display: block;
    padding: 14px 20px;
    border-radius: 0;
    border-bottom: 1px solid #f0f2f5;
    font-size: 1rem;
  }

  .nav-cta {
    margin: 12px 16px !important;
    border-radius: 8px !important;
    text-align: center;
  }

  .navbar { position: relative; }

  /* Layouts */
  .services-grid { grid-template-columns: 1fr; }
  .why-us-inner { grid-template-columns: 1fr; }
  .stat-badge-1, .stat-badge-2 { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-band-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; direction: ltr !important; }
  .about-intro-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .testimonials-page-grid { grid-template-columns: 1fr; }
  .review-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .trust-band-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px 20px; }
}
