/* =============================================
   ROBIN ARIEL TRANSPORT — Main Stylesheet
   ============================================= */

/* === VARIABLES === */
:root {
  --black:       #0A0A0A;
  --charcoal:    #1C1C1C;
  --gray-dark:   #2D2D2D;
  --gray-mid:    #4A4A4A;
  --gray:        #7A7A7A;
  --gray-light:  #C8C6C1;
  --border:      #E4E2DC;
  --yellow:      #F5B800;
  --yellow-dark: #D9A300;
  --yellow-pale: #FFF8E0;
  --white:       #FFFFFF;
  --off-white:   #F9F8F5;
  --section-gray:#F1F0EC;
  --text-dark:   #181818;
  --text-body:   #3A3A3A;
  --text-muted:  #6A6A6A;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.1);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.16);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; }

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === UTILITIES === */
.text-yellow { color: var(--yellow); }
.stars-lg { color: var(--yellow); font-size: 1.8rem; letter-spacing: 3px; line-height: 1; }
.stars-md { color: var(--yellow); font-size: 1.25rem; letter-spacing: 2px; line-height: 1; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.925rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s var(--ease),
              border-color 0.18s var(--ease),
              transform 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
  white-space: nowrap;
}
.btn--yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn--yellow:hover, .btn--yellow:focus-visible {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,184,0,0.38);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn--dark:hover, .btn--dark:focus-visible {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--fb {
  background: #1877F2;
  color: var(--white);
  border-color: #1877F2;
}
.btn--fb:hover, .btn--fb:focus-visible {
  background: #1469d9;
  border-color: #1469d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24,119,242,0.35);
}
.btn--lg { padding: 16px 30px; font-size: 1rem; }

/* === SECTION BASE === */
.section { padding: 88px 0; }
.section--gray { background: var(--section-gray); }
.section--dark { background: var(--charcoal); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.section-title--light { color: var(--white); }
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.section-desc--muted { color: rgba(255,255,255,0.6); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.header.scrolled {
  background: var(--black);
  box-shadow: 0 4px 28px rgba(0,0,0,0.45);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo__icon {
  width: 40px;
  height: 40px;
  background: rgba(245,184,0,0.1);
  border: 1px solid rgba(245,184,0,0.18);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__name {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
}
.logo__tagline { font-size: 0.675rem; color: rgba(255,255,255,0.42); font-weight: 400; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav__link {
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.header__cta { margin-left: 8px; padding: 10px 18px; font-size: 0.875rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  border-radius: 7px;
  transition: background 0.15s;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
  transform-origin: center;
}
.hamburger.open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(8,8,8,0.93) 0%,
    rgba(8,8,8,0.78) 55%,
    rgba(8,8,8,0.45) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 56px;
  padding-bottom: 80px;
  max-width: 780px;
}

/* Hero rating pill */
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 18px 8px 14px;
  margin-bottom: 22px;
}
.hero__rating-text { color: rgba(255,255,255,0.75); font-size: 0.875rem; font-weight: 500; }

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
  display: block;
}
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 26px;
  letter-spacing: -1px;
}
.hero__title em { font-style: normal; }
.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 38px;
}

/* Hero CTAs */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

/* Hero trust badges */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 17px;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}
.hero__badge:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,184,0,0.3);
}
.hero__badge-icon {
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  color: var(--yellow);
}
.hero__badge-info { display: flex; flex-direction: column; line-height: 1.2; }
.hero__badge-info strong { color: var(--white); font-size: 0.875rem; font-weight: 700; }
.hero__badge-info span  { color: rgba(255,255,255,0.48); font-size: 0.72rem; margin-top: 2px; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--yellow);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 36px;
}
.trust-bar__divider {
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,0.14);
  flex-shrink: 0;
}
.trust-bar__num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.trust-bar__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(0,0,0,0.65);
  max-width: 90px;
  line-height: 1.3;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.28s var(--ease),
              box-shadow 0.28s var(--ease),
              border-color 0.28s var(--ease);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.service-card__icon {
  width: 50px;
  height: 50px;
  background: var(--yellow-pale);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(245,184,0,0.2);
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--yellow-dark);
}
.service-card__title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 9px;
  line-height: 1.3;
}
.service-card__desc {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.68;
}

.services__cta {
  text-align: center;
  padding: 38px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.services__cta p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 20px;
}
.services__cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-content .section-title { margin-bottom: 12px; }
.why-content .section-desc  { margin-bottom: 0; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.why-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.why-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin-top: 1px;
}
.why-item div { display: flex; flex-direction: column; gap: 3px; }
.why-item strong { color: var(--white); font-size: 0.925rem; font-weight: 700; }
.why-item span   { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.55; }

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.why-image:hover img { transform: scale(1.03); }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.reviews-meta p { color: var(--text-muted); font-size: 0.95rem; }

/* ── Carousel shell ── */
.reviews-carousel__inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviews-carousel__viewport {
  flex: 1;
  overflow: hidden;
}
.reviews-carousel__track {
  display: flex;
  gap: 18px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.reviews-carousel__track .review-card {
  flex: 0 0 calc(33.333% - 12px); /* 3 visible; (gap×2)/3 = 12 */
  min-width: 0;
}

/* ── Arrow buttons ── */
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.18s var(--ease),
              border-color 0.18s var(--ease),
              color 0.18s var(--ease),
              transform 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
}
.carousel-btn:hover:not(:disabled) {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(245,184,0,0.32);
  transform: scale(1.08);
}
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── Dots ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.25s, border-radius 0.25s;
}
.carousel-dot.active {
  background: var(--yellow);
  width: 24px;
  border-radius: 4px;
}
.carousel-dot:hover:not(.active) { background: var(--gray-light); }

/* ── Review cards (slightly enhanced) ── */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
  border: 1.5px solid #E0DED8;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease);
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.review-card__stars {
  color: var(--yellow);
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.review-card__quote {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.72rem;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.review-card__author div { display: flex; flex-direction: column; gap: 2px; }
.review-card__author strong { font-size: 0.85rem; color: var(--text-dark); font-weight: 700; }
.review-card__author span  { font-size: 0.72rem; color: var(--text-muted); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section { padding: 88px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact-section {
  position: relative;
  padding: 108px 0;
  overflow: hidden;
}
.contact-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.85) 100%);
}
.contact-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.contact-section__content .section-eyebrow { display: block; margin-bottom: 14px; }
.contact-section__content .section-title   { margin-bottom: 18px; }
.contact-section__desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 26px;
  color: var(--white);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
  min-width: 210px;
}
.contact-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,255,255,0.2);
}
.contact-card--primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.contact-card--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}
.contact-card__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card div { display: flex; flex-direction: column; gap: 3px; text-align: left; }
.contact-card strong { font-size: 0.95rem; font-weight: 700; }
.contact-card span   { font-size: 0.8rem; opacity: 0.72; }

.contact-section__hours {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo { margin-bottom: 18px; }
.footer__desc {
  color: rgba(255,255,255,0.42);
  font-size: 0.855rem;
  line-height: 1.72;
}
.footer__links h4,
.footer__hours h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer__link {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer__link:hover { color: var(--yellow); }
.footer__hours p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 6px;
}
.footer__bottom {
  padding: 22px 0;
}
.footer__bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  text-align: center;
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Hero fade-up on load */
.afu {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.72s var(--ease) forwards;
}
.hero__rating  { animation-delay: 0.05s; }
.hero__eyebrow { animation-delay: 0.15s; }
.hero__title   { animation-delay: 0.25s; }
.hero__desc    { animation-delay: 0.35s; }
.hero__actions { animation-delay: 0.45s; }
.hero__badges  { animation-delay: 0.55s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered fade-up */
.aos {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.62s var(--ease), transform 0.62s var(--ease);
}
.aos.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-carousel__track .review-card {
    flex-basis: calc(50% - 9px); /* 2 visible on tablet */
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-image {
    order: -1;
  }
  .why-image img {
    height: 320px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ============================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Mobile nav */
  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 190;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .nav.open { display: flex; }
  .nav__link {
    padding: 13px 16px;
    font-size: 1rem;
    border-radius: 9px;
  }

  .hamburger { display: flex; }
  .header__cta { display: none; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  /* Services — compact 2-column grid on mobile */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-card { padding: 16px 14px; }
  .service-card__icon { width: 36px; height: 36px; margin-bottom: 10px; border-radius: 8px; }
  .service-card__icon svg { width: 18px; height: 18px; }
  .service-card__title { font-size: 0.825rem; margin-bottom: 6px; }
  .service-card__desc { font-size: 0.76rem; line-height: 1.5; }

  /* Reviews carousel — 1 card on mobile */
  .reviews-carousel__track .review-card { flex-basis: 100%; }
  .reviews-carousel__inner { gap: 10px; }
  .carousel-btn { width: 38px; height: 38px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Trust bar — compact 3-up row + solo Kamloops row */
  .trust-bar { padding: 12px 0; }
  .trust-bar__divider { display: none; }
  .trust-bar__inner { gap: 0; padding: 0; }
  .trust-bar__item {
    flex: 0 0 33.333%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 4px;
    text-align: center;
  }
  .trust-bar__num { font-size: 1.1rem; }
  .trust-bar__label { font-size: 0.68rem; max-width: none; }
  .trust-bar__item:last-child {
    flex: 0 0 100%;
    flex-direction: row;
    gap: 8px;
    padding: 7px 4px 5px;
    margin-top: 4px;
    border-top: 1px solid rgba(0,0,0,0.1);
    justify-content: center;
  }
  .trust-bar__item:last-child .trust-bar__num { font-size: 1.3rem; }
  .trust-bar__item:last-child .trust-bar__label { font-size: 0.8rem; max-width: none; }

  /* Hero */
  .hero__badges { gap: 8px; justify-content: center; }
  .hero__badge  { padding: 10px 14px; }

  /* Contact */
  .contact-cards { flex-direction: column; align-items: center; }
  .contact-card  { width: 100%; max-width: 380px; }
  .contact-section__hours { align-items: flex-start; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer__brand { grid-column: auto; }
}

/* ============================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .hero { min-height: 100svh; }
  .hero__title { font-size: 2.1rem; letter-spacing: -0.5px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .services__cta-btns { flex-direction: column; }
  .services__cta-btns .btn { width: 100%; justify-content: center; }

  .gallery-section { padding: 52px 0; }
}
