/* =============================================================
   IServe Facilities – Static Site Styles
   Converted from Tailwind utility classes to real CSS
   ============================================================= */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── CSS Custom Properties ────────────────────────────────── */
:root {
  --primary:      #4068DF;
  --primary-dark: #3058cf;
  --navy:         #1e3a8a;
  --navy-mid:     #2d4a9a;
  --navy-card:    #2d4fa8;
  --teal:         #14b8a6;
  --white:        #ffffff;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-300:     #d1d5db;
  --gray-400:     #9ca3af;
  --gray-500:     #6b7280;
  --gray-600:     #4b5563;
  --gray-700:     #374151;
  --gray-800:     #1f2937;
  --green-50:     #f0fdf4;
  --green-100:    #dcfce7;
  --green-200:    #bbf7d0;
  --green-600:    #16a34a;
  --green-700:    #15803d;
  --green-900:    #14532d;
  --radius:       0.5rem;
  --shadow-sm:    0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow:       0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md:    0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:    0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl:   0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 80rem; /* 1280px = max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.container-sm {
  max-width: 56rem; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container-sm { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container-sm { padding-left: 2rem; padding-right: 2rem; }
}

.flex-grow { flex: 1 1 0%; }
.min-h-screen { min-height: 100vh; }
.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; background: var(--white); }

/* ─── Section Spacing ──────────────────────────────────────── */
.section-py     { padding-top: 3rem;  padding-bottom: 3rem; }
.section-py-lg  { padding-top: 5rem;  padding-bottom: 5rem; }
.section-py-xl  { padding-top: 5rem;  padding-bottom: 5rem; }
@media (min-width: 1024px) {
  .section-py-xl { padding-top: 7rem; padding-bottom: 7rem; }
}

/* ─── Grid Utilities ───────────────────────────────────────── */
.grid { display: grid; }
.grid-cols-2   { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-cols-4   { grid-template-columns: repeat(4, minmax(0,1fr)); }
.gap-3   { gap: 0.75rem; }
.gap-4   { gap: 1rem; }
.gap-6   { gap: 1.5rem; }
.gap-8   { gap: 2rem; }
.gap-10  { gap: 2.5rem; }
.gap-12  { gap: 3rem; }

/* ─── Flex Utilities ───────────────────────────────────────── */
.flex   { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col   { flex-direction: column; }
.flex-wrap  { flex-wrap: wrap; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.items-end      { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end    { justify-content: flex-end; }

/* ─── Text Utilities ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.italic      { font-style: italic; }
.underline   { text-decoration: underline; }

/* ─── Visibility / Display ─────────────────────────────────── */
.hidden  { display: none !important; }
.block   { display: block; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky   { position: sticky; }
.overflow-hidden { overflow: hidden; }

/* ─── Spacing Helpers ──────────────────────────────────────── */
.mb-1  { margin-bottom: 0.25rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-3  { margin-bottom: 0.75rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-5  { margin-bottom: 1.25rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-1  { margin-top: 0.25rem; }
.mt-3  { margin-top: 0.75rem; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mr-2  { margin-right: 0.5rem; }
.mr-3  { margin-right: 0.75rem; }
.mr-4  { margin-right: 1rem; }
.ml-1  { margin-left: 0.25rem; }
.ml-2  { margin-left: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-4  { padding: 1rem; }
.p-6  { padding: 1.5rem; }
.p-8  { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-4  { padding-top: 1rem; }
.pt-8  { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pb-12 { padding-bottom: 3rem; }
.pl-6  { padding-left: 1.5rem; }
.pr-4  { padding-right: 1rem; }

/* ─── Typography ───────────────────────────────────────────── */
.text-sm   { font-size: 0.875rem;  line-height: 1.25rem; }
.text-base { font-size: 1rem;      line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem;  line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem;   line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem;    line-height: 2rem; }
.text-3xl  { font-size: 1.875rem;  line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem;   line-height: 2.5rem; }
.text-5xl  { font-size: 3rem;      line-height: 1; }
.text-6xl  { font-size: 3.75rem;   line-height: 1; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-tight   { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide   { letter-spacing: 0.025em; }
.uppercase       { text-transform: uppercase; }
.whitespace-nowrap { white-space: nowrap; }

/* ─── Color Helpers ────────────────────────────────────────── */
.text-white      { color: var(--white); }
.text-navy       { color: var(--navy); }
.text-primary    { color: var(--primary); }
.text-teal       { color: var(--teal); }
.text-gray-300   { color: var(--gray-300); }
.text-gray-500   { color: var(--gray-500); }
.text-gray-600   { color: var(--gray-600); }
.text-gray-700   { color: var(--gray-700); }
.text-blue-200   { color: #bfdbfe; }
.text-yellow-300 { color: #fde047; }
.text-yellow-400 { color: #facc15; }
.text-green-600  { color: var(--green-600); }
.text-green-700  { color: var(--green-700); }
.text-green-900  { color: var(--green-900); }

.bg-white    { background-color: var(--white); }
.bg-gray-50  { background-color: var(--gray-50); }
.bg-navy     { background-color: var(--navy); }
.bg-primary  { background-color: var(--primary); }

/* ─── Borders ──────────────────────────────────────────────── */
.border        { border: 1px solid var(--gray-200); }
.border-t      { border-top: 1px solid var(--gray-200); }
.border-b      { border-bottom: 1px solid var(--gray-200); }
.border-gray-200 { border-color: var(--gray-200); }
.border-navy-mid { border-color: var(--navy-mid); }
.rounded     { border-radius: 0.25rem; }
.rounded-lg  { border-radius: 0.5rem; }
.rounded-xl  { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ─── Shadows ──────────────────────────────────────────────── */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow    { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* ─── Sizing ───────────────────────────────────────────────── */
.w-full   { width: 100%; }
.w-2      { width: 0.5rem; }
.w-8      { width: 2rem; }
.w-10     { width: 2.5rem; }
.w-12     { width: 3rem; }
.w-14     { width: 3.5rem; }
.w-16     { width: 4rem; }
.w-32     { width: 8rem; }
.h-2      { height: 0.5rem; }
.h-3      { height: 0.75rem; }
.h-4      { height: 1rem; }
.h-5      { height: 1.25rem; }
.h-6      { height: 1.5rem; }
.h-7      { height: 1.75rem; }
.h-8      { height: 2rem; }
.h-10     { height: 2.5rem; }
.h-12     { height: 3rem; }
.h-14     { height: 3.5rem; }
.h-16     { height: 4rem; }
.h-20     { height: 5rem; }
.h-24     { height: 6rem; }
.h-32     { height: 8rem; }
.h-48     { height: 12rem; }
.h-56     { height: 14rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-none { max-width: none; }
.flex-shrink-0 { flex-shrink: 0; }

/* ─── Object Fit ───────────────────────────────────────────── */
.object-cover  { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-top    { object-position: top; }
.object-center { object-position: center; }
.aspect-4-3    { aspect-ratio: 4/3; }

/* ─── Opacity ──────────────────────────────────────────────── */
.opacity-0  { opacity: 0; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }

/* ─── Z-Index ──────────────────────────────────────────────── */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* ─── Inset ────────────────────────────────────────────────── */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* ─── Transitions ──────────────────────────────────────────── */
.transition-all       { transition: all 0.2s ease; }
.transition-colors    { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-opacity   { transition: opacity 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }
.duration-300 { transition-duration: 0.3s; }
.duration-500 { transition-duration: 0.5s; }

/* ─── Transform ────────────────────────────────────────────── */
.scale-105 { transform: scale(1.05); }
.translate-x-1-2 { transform: translateX(-50%); }
.-translate-x-1-2 { transform: translateX(-50%); }

/* ─── Drop Shadow ──────────────────────────────────────────── */
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15)); }

/* ─── Brightness Filter ────────────────────────────────────── */
.brightness-0-invert { filter: brightness(0) invert(1); }

/* ─── Space Y ──────────────────────────────────────────────── */
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-8 > * + * { margin-left: 2rem; }

/* ─── Prose (Privacy Policy) ───────────────────────────────── */
.prose { max-width: 65ch; }
.prose h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-top: 2rem; margin-bottom: 1rem; }
.prose p  { color: var(--gray-600); line-height: 1.75; margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; }
.prose ul li { color: var(--gray-600); margin-bottom: 0.5rem; line-height: 1.75; }
.prose strong { font-weight: 600; color: var(--gray-700); }
.prose a  { color: var(--teal); }
.prose a:hover { text-decoration: underline; }
.prose-info-box {
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

/* ─── Scroll Reveal Animation ──────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Keyframes ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.anim-fade-up    { animation: fadeInUp 0.8s ease forwards; }
.anim-fade-in    { animation: fadeIn 0.8s ease forwards; }
.anim-slide-left { animation: slideInLeft 0.9s ease forwards; }
.anim-slide-right{ animation: slideInRight 0.9s ease forwards; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }

/* ─── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}
.header-logo img {
  height: 6rem;
  width: auto;
}

/* Desktop Nav */
.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .site-nav { display: flex; }
}
.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--primary); }
.site-nav button.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.site-nav button.nav-link:hover,
.site-nav button.nav-link.active { color: var(--primary); }

/* Locations Dropdown */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 14rem;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  padding: 0.5rem 0;
  z-index: 100;
}
.nav-dropdown.open { display: block; }
.nav-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--gray-50); color: var(--primary); }
.nav-dropdown-divider {
  border-top: 1px solid var(--gray-200);
  margin: 0.5rem 0;
}
.nav-dropdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  padding: 0.25rem 1rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

/* Hamburger / Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}
.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; color: var(--gray-700); }

/* Mobile Menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.mobile-nav.open { display: flex; }
.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
}
.mobile-nav a:hover,
.mobile-nav button:hover,
.mobile-nav a.active { color: var(--primary); }
.mobile-nav .mobile-locations-sub {
  padding-left: 1rem;
}
.mobile-nav .mobile-locations-sub a {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 0.4rem 0;
}
.mobile-nav .mobile-locations-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.mobile-nav .mobile-locations-toggle svg {
  transition: transform 0.2s;
}
.mobile-nav .mobile-locations-toggle.open svg {
  transform: rotate(180deg);
}
.mobile-locations-sub { display: none; }
.mobile-locations-sub.open { display: block; }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-lg);
  line-height: 1;
}
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-xl);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gray-100);
  box-shadow: var(--shadow-xl);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}
.btn-full { width: 100%; }

/* Grime button (secondary / Request a Quote variant) */
.btn-grime {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-300);
  z-index: 0;
}
.btn-grime-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 1;
}
.btn-grime-dirty { opacity: 0.35; }
.btn-grime-clean { opacity: 0; }
.btn-grime-content {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-grime:hover .btn-grime-dirty { opacity: 0; }
.btn-grime:hover .btn-grime-clean { opacity: 0.4; }
.btn-grime:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

/* ─── HERO SECTION ─────────────────────────────────────────── */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-desktop { display: none; }
.hero-bg-mobile  { display: block; }
@media (min-width: 768px) {
  .hero-bg-desktop { display: block; }
  .hero-bg-mobile  { display: none; }
}

/* Desktop hero layout */
.hero-inner-desktop {
  display: none;
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 3rem;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hero-inner-desktop {
    display: flex;
    padding: 5rem 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-inner-desktop { padding: 5rem 3rem; }
}
.hero-text { flex: 1; max-width: 55%; }
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.hero-image img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.3));
}
.hero-h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .hero-h1 { font-size: 3rem; }
}
@media (min-width: 1280px) {
  .hero-h1 { font-size: 3.75rem; }
}
.hero-sub {
  font-size: 1.125rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  line-height: 1.625;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Mobile hero layout */
.hero-inner-mobile {
  display: block;
  position: relative;
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) {
  .hero-inner-mobile { display: none; }
}
.hero-inner-mobile .hero-h1 { font-size: 2.25rem; }
.hero-inner-mobile .hero-btns { flex-direction: column; }

/* City Hero (location pages) */
.city-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
}
.city-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.city-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.city-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,0.85) 0%, rgba(45,74,154,0.85) 100%);
}
.city-hero-inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1rem;
}
@media (min-width: 640px) { .city-hero-inner { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .city-hero-inner { padding: 7rem 2rem; } }
.city-hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 48rem;
}
@media (min-width: 768px) { .city-hero h1 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .city-hero h1 { font-size: 3rem; } }
.city-hero p {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  line-height: 1.625;
  max-width: 36rem;
}
.city-hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .city-hero-btns { flex-direction: row; }
}

/* ─── TRUST SECTION ────────────────────────────────────────── */
.trust-section {
  padding: 2.5rem 0;
  background: var(--gray-50);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-card { text-align: center; }
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(64,104,223,0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.trust-icon svg { width: 2rem; height: 2rem; color: var(--primary); }
.trust-value { font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.trust-label { font-size: 0.875rem; color: var(--gray-600); font-weight: 500; }

/* ─── SERVICES HIGHLIGHT ───────────────────────────────────── */
.services-section {
  padding: 3rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
.service-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s, box-shadow 0.2s;
  height: 100%;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(64,104,223,0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.service-card:hover .service-card-icon {
  background: var(--primary);
}
.service-card-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); transition: color 0.2s; }
.service-card:hover .service-card-icon svg { color: var(--white); }
.service-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.875rem; color: var(--gray-600); }

/* ─── INDUSTRIES SECTION ───────────────────────────────────── */
.industries-section {
  padding: 3rem 0;
  background: var(--navy);
}
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
.industry-card {
  position: relative;
  overflow: hidden;
  background: var(--navy-card);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
  height: 100%;
}
.industry-card:hover { box-shadow: var(--shadow-md); }
.industry-card-bg {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.industry-card-content { position: relative; z-index: 10; }
.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.industry-icon svg { width: 1.75rem; height: 1.75rem; color: var(--white); }
.industry-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.industry-card p  { color: #bfdbfe; }

/* ─── WHY CHOOSE US ────────────────────────────────────────── */
.why-section {
  padding: 3rem 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.why-reason {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.why-reason-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(64,104,223,0.1);
  border-radius: 9999px;
}
.why-reason-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.why-reason h3 { font-size: 1.125rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.why-reason p  { color: var(--gray-600); }
.why-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.why-images img {
  border-radius: 0.75rem;
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
.why-images img:nth-child(3) { object-position: top; }

/* ─── PHOTO GALLERY ────────────────────────────────────────── */
.gallery-section {
  padding: 3rem 0;
  background: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media (min-width: 768px) {
  .gallery-item img { height: 14rem; }
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,58,138,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1rem;
}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
  padding: 3rem 0;
  background: var(--gray-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { display: flex; margin-bottom: 1rem; gap: 0.1rem; }
.stars svg { width: 1.25rem; height: 1.25rem; fill: var(--primary); color: var(--primary); }
.testimonial-text {
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.testimonial-divider { border-top: 1px solid var(--gray-200); padding-top: 1rem; }
.testimonial-name    { font-weight: 600; color: var(--navy); }
.testimonial-company { font-size: 0.875rem; color: var(--gray-500); }

/* ─── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(to right, var(--navy), var(--navy-mid));
  color: var(--white);
  text-align: center;
}
.cta-band h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 768px) { .cta-band h2 { font-size: 2.25rem; } }
.cta-band p  { font-size: 1.25rem; color: #e5e7eb; margin-bottom: 2rem; }
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .cta-btns { flex-direction: row; }
}

/* ─── TRUST BADGES ─────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}
.trust-badge {
  position: relative;
}
.trust-badge-ring {
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #eab308, #ca8a04, #a16207);
  padding: 0.25rem;
  box-shadow: var(--shadow-xl);
}
.trust-badge-inner {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.trust-badge-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0.3;
}
.trust-badge svg { width: 2rem; height: 2rem; color: #fde047; margin-bottom: 0.25rem; position: relative; z-index: 1; }
.trust-badge-text { text-align: center; position: relative; z-index: 1; }
.trust-badge-line1 { color: var(--white); font-weight: 700; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.025em; line-height: 1.2; }
.trust-badge-line2 { color: #fde047; font-weight: 800; font-size: 0.875rem; }
.trust-badge-ribbon {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #ca8a04, #a16207);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.125rem 0.75rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
/* Badge color variants */
.badge-yellow { background: linear-gradient(135deg, #ca8a04, #92400e); }
.badge-blue   { background: linear-gradient(135deg, #1e3a8a, #1e40af); }
.badge-green  { background: linear-gradient(135deg, #15803d, #166534); }
.badge-purple { background: linear-gradient(135deg, #7e22ce, #6b21a8); }

/* ─── SECTION HEADERS ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-header h2 { font-size: 2.25rem; }
}
.section-header p { font-size: 1.125rem; color: var(--gray-600); max-width: 42rem; margin: 0 auto; }
.section-header-white h2 { color: var(--white); }
.section-header-white p  { color: #bfdbfe; }

/* ─── CITY SERVICES LIST ───────────────────────────────────── */
.city-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .city-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .city-services-grid { grid-template-columns: repeat(3, 1fr); }
}
.city-service-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
  gap: 0.75rem;
}
.city-service-item svg { width: 1.5rem; height: 1.5rem; color: var(--primary); flex-shrink: 0; }
.city-service-item span { color: var(--gray-700); font-weight: 500; }

/* ─── INDUSTRY CARDS (Location pages — teal accent) ────────── */
.loc-industry-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.loc-industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(20,184,166,0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.loc-industry-icon svg { width: 1.5rem; height: 1.5rem; color: var(--teal); }
.loc-industry-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.loc-industry-card p  { font-size: 0.875rem; color: var(--gray-600); }

/* ─── WHY REASONS (Location pages — teal dot) ──────────────── */
.loc-reason {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
  gap: 1rem;
}
.loc-reason-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--teal);
  border-radius: 9999px;
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.loc-reason p { color: var(--gray-700); font-size: 1.125rem; }

/* ─── FAQ ACCORDION ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--gray-50);
  border-radius: 0.5rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-question span {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.5;
}
.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  line-height: 1.625;
}
.faq-item.open .faq-answer { display: block; }

/* ─── ABOUT PAGE ───────────────────────────────────────────── */
.about-hero {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}
.about-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .about-hero h1 { font-size: 3rem; } }
.about-hero p { font-size: 1.25rem; color: #bfdbfe; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--navy-card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
}
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.value-icon svg { width: 1.5rem; height: 1.5rem; color: var(--white); }
.value-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.875rem; color: #bfdbfe; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(64,104,223,0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.stat-icon svg { width: 2rem; height: 2rem; color: var(--primary); }
.stat-value { font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.stat-label { font-size: 0.875rem; color: var(--gray-600); font-weight: 500; }

/* ─── SERVICES PAGE ────────────────────────────────────────── */
.services-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 5rem 0;
}
.services-page-hero h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .services-page-hero h1 { font-size: 3rem; } }
.services-page-hero p  { font-size: 1.25rem; color: #e5e7eb; line-height: 1.625; }

.service-detail {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
@media (min-width: 1024px) {
  .service-detail { grid-template-columns: 1fr 1fr; }
  .service-detail.reverse .service-detail-text { order: 2; }
  .service-detail.reverse .service-detail-img  { order: 1; }
}
.service-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(64,104,223,0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.service-detail-icon svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }
.service-detail h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
@media (min-width: 768px) { .service-detail h3 { font-size: 1.875rem; } }
.service-detail-desc { color: var(--gray-600); line-height: 1.625; margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: 0.75rem; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-600);
}
.service-feature svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }
.service-detail img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

/* ─── CONTACT PAGE ─────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 5rem 0;
}
.contact-hero h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .contact-hero h1 { font-size: 3rem; } }
.contact-hero p  { font-size: 1.25rem; color: #e5e7eb; line-height: 1.625; }

.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(64,104,223,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.contact-info-label { font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.contact-info-value { color: var(--gray-600); }
.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: var(--primary); }
.contact-service-area {
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: 0.75rem;
}
.contact-service-area h3 { font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.contact-service-area p  { color: var(--gray-600); }

/* Contact Form */
.contact-form-group { margin-bottom: 1.5rem; }
.contact-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(64,104,223,0.1);
}
.contact-form-group textarea { resize: vertical; min-height: 7rem; }

/* Form success */
.form-success {
  display: none;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}
.form-success.show { display: block; }
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--green-100);
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.form-success-icon svg { width: 2rem; height: 2rem; color: var(--green-600); }
.form-success h3 { font-size: 1.5rem; font-weight: 700; color: var(--green-900); margin-bottom: 0.5rem; }
.form-success p  { color: var(--green-700); margin-bottom: 1.5rem; }

/* ─── LOCATIONS PAGE ───────────────────────────────────────── */
.locations-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.locations-hero h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .locations-hero h1 { font-size: 3rem; } }
.locations-hero p  { font-size: 1.25rem; color: #e5e7eb; max-width: 48rem; margin: 0 auto; }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }

.location-card {
  display: block;
  padding: 2rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
}
.location-card:hover {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
}
.location-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.location-card-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.location-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(20,184,166,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.location-card:hover .location-icon {
  background: var(--teal);
}
.location-icon svg { width: 1.25rem; height: 1.25rem; color: var(--teal); transition: color 0.2s; }
.location-card:hover .location-icon svg { color: var(--white); }
.location-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.location-card-arrow { width: 1.25rem; height: 1.25rem; color: var(--gray-400); transition: color 0.2s; }
.location-card:hover .location-card-arrow { color: var(--teal); }
.location-card p { color: var(--gray-600); }

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: var(--white);
  flex-shrink: 0;
}

/* Footer CTA Band */
.footer-cta {
  background: linear-gradient(to right, var(--navy), var(--navy-mid));
  border-bottom: 1px solid var(--navy-mid);
  padding: 4rem 0;
  text-align: center;
}
.footer-cta h2 { font-size: 1.875rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
@media (min-width: 768px) { .footer-cta h2 { font-size: 2.25rem; } }
.footer-cta p  { font-size: 1.25rem; color: #e5e7eb; margin-bottom: 2rem; }
.footer-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .footer-cta-btns { flex-direction: row; } }

.footer-body { padding: 3rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-logo { height: 6rem; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-tagline { color: var(--gray-300); font-size: 0.875rem; }
.footer-col h3 { font-weight: 600; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-300);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--primary); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-contact-item svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact-item a,
.footer-contact-item span { color: var(--gray-300); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--navy-mid);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--gray-300);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom a { color: var(--gray-300); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--primary); }

/* ─── PRIVACY POLICY ───────────────────────────────────────── */
.privacy-page { padding: 5rem 0; background: var(--white); }
.privacy-page h1 { font-size: 2.25rem; font-weight: 700; color: var(--navy); margin-bottom: 2rem; }
.privacy-date   { font-size: 0.875rem; color: var(--gray-500); }

/* ─── LOCATION SEO SECTION ─────────────────────────────────── */
.seo-content h2 { font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.seo-content p  { color: var(--gray-600); line-height: 1.75; margin-bottom: 1.5rem; }
.seo-content a  { color: var(--teal); text-decoration: none; }
.seo-content a:hover { text-decoration: underline; }

/* ─── LOCATION IMAGE SECTION ───────────────────────────────── */
.loc-image-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .loc-image-grid { grid-template-columns: 1fr 1fr; }
}
.loc-image-grid img {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 25rem;
  object-fit: cover;
}
.loc-image-grid h2 { font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.loc-image-grid p  { font-size: 1.125rem; color: var(--gray-600); line-height: 1.625; }

/* ─── RESPONSIVE TEXT ──────────────────────────────────────── */
@media (min-width: 768px) {
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:flex-row { flex-direction: row; }
  .md\:mt-0 { margin-top: 0; }
}
@media (min-width: 1024px) {
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}
