:root {
  --color-primary: #0b5fa5;
  --color-primary-dark: #08406f;
  --color-primary-light: #2e86de;
  --color-accent: #ffb703;
  --color-accent-2: #14b8a6;
  --color-accent-3: #ff6584;
  --color-text: #1c2430;
  --color-muted: #5b6675;
  --color-bg-alt: #f4f7fb;
  --color-dark: #071b2e;
  --color-dark-alt: #0c2c46;
  --max-width: 1120px;
  --header-h: 76px;
  --shadow-sm: 0 2px 10px rgba(15, 35, 60, 0.06);
  --shadow-md: 0 14px 34px rgba(15, 35, 60, 0.14);
  --shadow-glow: 0 10px 30px rgba(11, 95, 165, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
  color-scheme: light;
}

body {
  margin: 0;
  background: #fff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.01em;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

section[id] {
  scroll-margin-top: var(--header-h);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-highlights .reveal:nth-child(2) { transition-delay: 0.08s; }
.about-highlights .reveal:nth-child(3) { transition-delay: 0.16s; }
.about-highlights .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.stats-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* Header */

.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 233, 238, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  min-height: var(--header-h);
}

.logo {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

.logo span {
  font-weight: 400;
  color: var(--color-muted);
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  margin-left: 24px;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  transition: color 0.15s ease;
}

.main-nav a:not(.btn-nav)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-2));
  transition: width 0.25s var(--ease);
}

.main-nav a:not(.btn-nav):hover {
  color: var(--color-primary);
}

.main-nav a:not(.btn-nav):hover::after {
  width: 100%;
}

.btn-nav {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 6px 16px rgba(11, 95, 165, 0.28);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(11, 95, 165, 0.36);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary-dark) 45%, var(--color-primary) 100%);
  color: #fff;
  padding: clamp(64px, 11vw, 108px) 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
  animation: blobFloat 14s ease-in-out infinite;
}

.hero-blob-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--color-accent-2), transparent 70%);
  top: -120px;
  left: -80px;
}

.hero-blob-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--color-accent-3), transparent 70%);
  bottom: -140px;
  right: -60px;
  animation-delay: -4s;
}

.hero-blob-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--color-accent), transparent 70%);
  top: 40%;
  left: 60%;
  animation-delay: -8s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.08); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.1rem);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.15;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 34px;
  opacity: 0.92;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), #ff8a3d);
  color: #1a1a1a;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  margin-top: 16px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Stats strip */

.stats-strip {
  background: linear-gradient(120deg, var(--color-dark), var(--color-dark-alt));
  color: #fff;
  padding: 40px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 16px;
  text-align: center;
}

.stat-divider {
  display: none;
}

.stat-number {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--color-accent);
}

.stat-suffix {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--color-accent);
}

.stat p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Sections */

.section {
  padding: clamp(56px, 8vw, 88px) 0;
  background: #fff;
  position: relative;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: linear-gradient(160deg, var(--color-dark-alt), var(--color-dark));
  color: #fff;
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .testimonials-intro {
  color: rgba(255, 255, 255, 0.75);
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 44px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
}

.about-text p {
  color: var(--color-muted);
}

.about-highlights {
  display: grid;
  gap: 20px;
}

.highlight-card {
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.highlight-card h3 {
  margin: 0 0 8px;
  color: var(--color-primary-dark);
  font-size: 1.05rem;
}

.highlight-card p {
  color: var(--color-muted);
  margin: 0;
}

.services-grid,
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card,
.location-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 95, 165, 0.06), rgba(20, 184, 166, 0.06));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-card:hover,
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card h3,
.location-card h3 {
  margin-top: 0;
  color: var(--color-primary-dark);
  position: relative;
}

.service-card p,
.location-card p {
  color: var(--color-muted);
  position: relative;
}

.hours-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid #e6e9ee;
  display: grid;
  gap: 8px;
  position: relative;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--color-text);
}

.hours-list li span:first-child {
  font-weight: 600;
  color: var(--color-primary-dark);
}

.hours-list li span.closed {
  color: var(--color-accent-3);
  font-weight: 600;
}

.hours-note {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--color-muted);
  font-style: italic;
}

.brands-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.brands-list li {
  background: var(--color-bg-alt);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--color-primary-dark);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease), box-shadow 0.2s ease;
  cursor: default;
}

.brands-list li:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-2));
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 20px rgba(11, 95, 165, 0.25);
}

.testimonials-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--color-muted);
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--color-accent-2);
  border-radius: 10px;
  padding: 32px 36px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: "Poppins", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent-2);
  opacity: 0.5;
  display: block;
  margin-bottom: -12px;
}

.testimonial p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  font-weight: 600;
  font-style: normal;
  color: var(--color-accent);
}

.contact-inner {
  max-width: 760px;
  text-align: center;
}

.section-cta {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.section-cta .hero-blob-1 {
  top: -100px;
  right: -80px;
  left: auto;
}

.section-cta .hero-blob-2 {
  bottom: -100px;
  left: -60px;
  right: auto;
}

.section-cta .section-title {
  color: #fff;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.contact-info-item a {
  color: #fff;
  transition: color 0.15s ease;
}

.contact-info-item a:hover {
  color: var(--color-accent);
}

.contact-info-email {
  font-size: 0.9rem;
  font-weight: 500;
  word-break: break-word;
}

.contact-info-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
}

.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 26px 0;
}

/* Focus visibility for keyboard users */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-blob {
    animation: none;
  }
  .reveal {
    transition: none;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid #e6e9ee;
    box-shadow: var(--shadow-md);
    padding: 8px 24px 20px;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .main-nav a {
    margin-left: 0;
    padding: 12px 4px;
    border-bottom: 1px solid #f0f2f5;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .main-nav a:not(.btn-nav)::after {
    display: none;
  }

  .btn-nav {
    text-align: center;
    margin-top: 8px;
    justify-content: center;
  }

  .services-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 52px 0;
  }

  .btn-primary {
    width: 100%;
  }

  .testimonial {
    padding: 26px 22px;
  }

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