:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #1a1a1a;
  --yellow: #ff6600;
  --yellow-bright: #ff8533;
  --yellow-dark: #cc5200;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #cccccc;
  --border: #2a2a2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
}

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

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

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--yellow);
  color: var(--white);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background-color: var(--yellow-bright);
  border-color: var(--yellow-bright);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ===================== LAYOUT ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease;
  overflow: visible;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  padding: 0 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

/* ---- Logo ---- */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--light-gray);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
}

.nav-cta {
  display: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

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

.nav-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--dark);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 1rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--yellow);
}

.mobile-menu .mobile-cta {
  margin-top: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .nav-hamburger {
    display: none;
  }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://assets.cdn.filesafe.space/sWzztohoFuV0ArQ8uyO7/media/69e6a4f492b8c1ad711528db.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark overlay — heavier on the left so text is readable, fades right toward the car */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.72) 35%,
    rgba(0, 0, 0, 0.58) 60%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 102, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 102, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.35);
  color: var(--yellow);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  margin-bottom: 0.5rem;
}

.hero h1 .accent {
  color: var(--yellow);
  display: block;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--light-gray);
  margin: 1rem 0 1.5rem;
  font-weight: 400;
}

.hero-tagline strong {
  color: var(--white);
}

.hero-desc {
  color: var(--gray);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item .stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ===================== SERVICES GRID ===================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================== HOW IT WORKS ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--yellow);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }
  .step-item {
    flex-direction: column;
    align-items: center;
  }
}

/* ===================== AREAS GRID ===================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.area-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: border-color 0.2s;
}

.area-card:hover {
  border-color: var(--yellow);
}

.area-icon {
  color: var(--yellow);
  font-size: 1.1rem;
}

.area-card strong {
  display: block;
  font-weight: 700;
}

.area-card span {
  font-size: 0.8rem;
  color: var(--gray);
}

@media (min-width: 600px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, #1a0800, #2a1200);
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,102,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,102,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-banner h2 {
  margin-bottom: 1rem;
  position: relative;
  color: var(--yellow);
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--light-gray);
  margin-bottom: 2rem;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ===================== CONTACT FORM ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.info-text span {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-form {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--light-gray);
  margin-bottom: 0.5rem;
}

input, select, textarea {
  width: 100%;
  background-color: var(--black);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--yellow);
}

select option {
  background-color: var(--dark);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success {
  display: none;
  background-color: rgba(0, 180, 80, 0.1);
  border: 1px solid rgba(0, 180, 80, 0.3);
  color: #00cc55;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

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

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--card), var(--dark));
  border: 1px solid var(--border);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  gap: 1rem;
}

.about-img-placeholder p {
  font-size: 1rem;
  color: var(--gray);
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--yellow);
  color: var(--white);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  text-align: center;
}

.about-badge .num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge .lbl {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.values-list {
  list-style: none;
  margin-top: 1.5rem;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list .check {
  color: var(--yellow);
  font-size: 1.1rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===================== MAP SECTION ===================== */
.map-section {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder {
  text-align: center;
  color: var(--gray);
  padding: 2rem;
}

.map-placeholder .map-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* ===================== FOOTER ===================== */
.footer {
  background-color: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand svg,
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 260px;
}

.footer-tagline {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--light-gray);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--light-gray);
}

.footer-contact-item .icon {
  color: var(--yellow);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.85rem;
}

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

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===================== PAGE HEADER ===================== */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #0a0a0a, #1a0800);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 102, 0, 0.12) 0%, transparent 60%);
}

.page-header .container {
  position: relative;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
}

.stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-location {
  color: var(--gray);
  font-size: 0.8rem;
}

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

/* ===================== PHOTO GALLERY ===================== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}

.photo-grid a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.photo-grid a:hover img {
  transform: scale(1.06);
  opacity: 0.88;
}

/* Six-up preview (homepage) */
.photo-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

.about-main-img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Lightbox overlay */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lb-overlay.open {
  display: flex;
}

.lb-overlay img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 6px;
  display: block;
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lb-close:hover {
  opacity: 1;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.4);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.lb-nav:hover {
  background: rgba(255, 102, 0, 0.35);
}

.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

@media (max-width: 768px) {
  .photo-grid,
  .photo-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid img { height: 160px; }
  .lb-nav { display: none; }
}

@media (max-width: 480px) {
  .photo-grid img { height: 130px; }
  .photo-grid { gap: 0.4rem; }
}

/* ===================== MAP EMBED ===================== */
.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}

.map-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  height: 420px;
}

@media (max-width: 600px) {
  .map-embed iframe { height: 280px; }
}

/* ===================== SHOP INFO GRID ===================== */
.shop-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .shop-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== PARTNERS ===================== */
.partners-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--dark);
}

.partners-label {
  text-align: center;
  margin-bottom: 1.5rem;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 80px;
  flex-shrink: 0;
}

.partner-card img {
  max-height: 52px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 600px) {
  .partner-card { width: 160px; height: 64px; padding: 0.75rem 1.25rem; }
  .partner-card img { max-height: 40px; max-width: 120px; }
}

/* ===================== GALLERY GRID ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.06);
  opacity: 0.88;
}

@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid img { height: 200px; }
}

/* ===================== SCROLL STRIP ===================== */
.scroll-strip-section {
  padding: 3.5rem 0;
  background-color: var(--dark);
  overflow: hidden;
  position: relative;
}

.scroll-strip-label {
  text-align: center;
  margin-bottom: 1.5rem;
}

.scroll-strip-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.scroll-strip-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: stripScroll 45s linear infinite;
  will-change: transform;
}

.scroll-strip-track:hover {
  animation-play-state: paused;
}

.scroll-strip-track img {
  height: 250px;
  width: auto;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: block;
}

.scroll-strip-track img:hover {
  border-color: var(--yellow);
  transform: scale(1.03);
}

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes stripScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.scroll-strip-track--reverse {
  animation-name: stripScrollReverse;
  animation-duration: 38s;
  margin-top: 0.75rem;
}

@media (max-width: 600px) {
  .scroll-strip-track img { height: 170px; }
  .scroll-strip-section { padding: 2.5rem 0; }
}

/* ===================== UTILITIES ===================== */
.text-yellow { color: var(--yellow); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }

.divider {
  width: 60px;
  height: 4px;
  background-color: var(--yellow);
  border-radius: 2px;
  margin: 1rem auto;
}

.badge {
  display: inline-block;
  background-color: rgba(255, 102, 0, 0.12);
  border: 1px solid rgba(255, 102, 0, 0.3);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

/* ===================== MOBILE OVERRIDES ===================== */

/* Prevent any element from causing horizontal scroll */
html, body {
  overflow-x: hidden;
}

/* Grid children: prevent content from overflowing column */
.services-grid > *,
.steps-grid > *,
.testimonials-grid > *,
.areas-grid > *,
.footer-grid > *,
.contact-grid > *,
.about-grid > * {
  min-width: 0;
}

@media (max-width: 767px) {
  /* Nav: shrink logo so it fits the 96px bar */
  .nav-logo img {
    height: 70px;
  }

  /* Hero: tighten vertical padding */
  .hero-content {
    padding: 2.5rem 0;
  }

  /* Hero badge: allow wrapping on very small screens */
  .hero-badge {
    white-space: normal;
    text-align: center;
    justify-content: center;
    font-size: 0.72rem;
  }

  /* Hero actions: stack buttons vertically */
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Page header: reduce top padding */
  .page-header {
    padding: 6rem 0 2.5rem;
  }

  /* Section padding: tighten on mobile */
  .section {
    padding: 3.5rem 0;
  }

  /* Section header: reduce bottom margin */
  .section-header {
    margin-bottom: 2rem;
  }

  /* About: un-pin badge so it doesn't bleed off-screen */
  .about-visual {
    overflow: visible;
  }

  .about-badge {
    position: static;
    display: inline-block;
    margin-top: 1rem;
  }

  /* About grid: ensure stacked layout has breathing room */
  .about-grid {
    gap: 2rem;
  }

  /* Steps: tighten gaps */
  .steps-grid {
    gap: 1.5rem;
  }

  /* Map: remove fixed aspect ratio on mobile so it doesn't collapse too small */
  .map-section {
    aspect-ratio: auto;
    min-height: 180px;
  }

  /* CTA banner: tighten padding */
  .cta-banner {
    padding: 2.5rem 0;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer: tighten section */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  /* Shop info grid: stack on small screens */
  .shop-info-grid {
    grid-template-columns: 1fr;
  }

  /* Contact form: stack form rows */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Step numbers with emoji: keep circle shape */
  .step-num {
    flex-shrink: 0;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  /* Extra small screens: tighten container padding */
  .container {
    padding: 0 1rem;
  }

  /* Nav inner: slightly reduce height */
  .nav-inner {
    height: 72px;
  }

  .hero {
    padding-top: 72px;
  }

  .nav-logo img {
    height: 56px;
  }

  /* Hero: more compact */
  .hero-content {
    padding: 2rem 0;
  }

  /* Section: tighten further */
  .section {
    padding: 2.5rem 0;
  }

  /* Page header */
  .page-header {
    padding: 5rem 0 2rem;
  }

  /* Buttons: full width */
  .btn-large {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  /* Hero stats: reduce gap */
  .hero-stats {
    gap: 1.5rem;
  }

  /* Footer grid: single column on tiny screens */
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
