/* ========================================
   DX Carwash — style.css
   Mobile-first, clean, Navy/Sky Blue theme
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
  --primary: #0a1f44;        /* Navy blue */
  --primary-dark: #061430;   /* Darker navy */
  --secondary: #38b6ff;      /* Sky blue */
  --secondary-light: #cce8ff;/* Light sky blue */
  --white: #ffffff;
  --light: #f4f7fb;          /* Light gray background */
  --border: #dde4ef;         /* Card border */
  --dark: #0d1b3e;           /* Dark navy */
  --text: #1a2340;           /* Dark text */
  --muted: #6b7a99;          /* Muted text */
  --whatsapp: #25d366;       /* WhatsApp green */
  --whatsapp-dark: #1da851;  /* Hover WhatsApp */

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 31, 68, 0.13);
  --transition: 0.25s ease;

  --container: 1120px;
  --header-h: 68px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

a:hover { color: var(--primary); }

ul { list-style: none; }

/* ========== TYPOGRAPHY ========== */
h1 { font-size: clamp(1.75rem, 5vw, 2.8rem); line-height: 1.2; font-weight: 800; }
h2 { font-size: clamp(1.4rem, 4vw, 2rem); line-height: 1.3; font-weight: 700; }
h3 { font-size: clamp(1rem, 3vw, 1.2rem); line-height: 1.4; font-weight: 600; }

.text-muted { color: var(--muted); }
.small { font-size: 0.875rem; }

/* ========== CONTAINER ========== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  min-height: 48px; /* tap target */
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  min-height: 44px;
}

/* ========== SECTION BASE ========== */
.section {
  padding: 64px 20px;
}

.bg-light { background: var(--light); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 { color: var(--primary); margin-bottom: 12px; }
.section-header p { color: var(--muted); max-width: 600px; margin: 0 auto 8px; }

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

/* ========== BADGE LABEL ========== */
.badge-label {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ================================================
   HEADER / NAVBAR
   ================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(10, 31, 68, 0.07);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  gap: 4px;
}
.nav-desktop a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.nav-desktop a:hover,
.nav-desktop a.active {
  background: var(--secondary-light);
  color: var(--primary);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--light); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

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

/* Mobile nav dropdown */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px 20px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  transition: background var(--transition);
}
.nav-mobile .nav-link:hover { background: var(--light); color: var(--primary); }
.nav-mobile .btn-whatsapp { margin-top: 8px; justify-content: center; }

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #133272 60%, #1a4080 100%);
  color: var(--white);
  padding: 60px 20px 48px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Text */
.hero-text { display: flex; flex-direction: column; gap: 16px; }
.hero-headline { color: var(--white); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-desc { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.hero-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero-cta .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}

/* Info highlights */
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.hero-highlights span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* Image */
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1); /* fallback if image missing */
}

/* Stat Cards */
.hero-stats {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.stat-card {
  flex: 1;
  min-width: 90px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.stat-icon { display: block; font-size: 1.3rem; margin-bottom: 4px; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.85); font-weight: 500; }

/* ================================================
   TENTANG
   ================================================ */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-image-wrap { border-radius: var(--radius); overflow: hidden; }
.about-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: var(--border); /* fallback */
}

.about-desc { color: var(--muted); margin-bottom: 20px; line-height: 1.8; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.about-list li { color: var(--text); font-size: 0.95rem; }

.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
}
.vm-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.vm-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ================================================
   LAYANAN
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-img-wrap {
  height: 200px;
  background: var(--light); /* fallback */
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.04); }

.service-body { padding: 20px 24px 24px; }
.service-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.service-body h3 { color: var(--primary); margin-bottom: 10px; }
.service-body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 8px; }
.service-fit { margin-bottom: 16px !important; }

/* ================================================
   PAKET HARGA
   ================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Featured / Recommended */
.pricing-featured {
  border-color: var(--secondary);
  background: linear-gradient(145deg, #f0f8ff 0%, #e6f3ff 100%);
  box-shadow: 0 8px 32px rgba(56, 182, 255, 0.15);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-top { text-align: center; margin-bottom: 20px; padding-top: 8px; }
.pricing-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.pricing-top h3 { color: var(--primary); margin-bottom: 10px; }
.pricing-price { font-size: 0.9rem; color: var(--muted); }
.pricing-price strong { font-size: 1.5rem; color: var(--primary); font-weight: 800; }

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  flex-grow: 1;
}
.pricing-list li { color: var(--text); font-size: 0.92rem; padding-left: 4px; }

.pricing-duration {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-align: center;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ================================================
   HOME SERVICE
   ================================================ */
.hs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.hs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.hs-card h3 { color: var(--primary); margin-bottom: 16px; font-size: 1.05rem; }

.hs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.hs-list li { color: var(--text); font-size: 0.93rem; }

.hs-cta { text-align: center; }
.hs-cta p { color: var(--muted); margin-bottom: 16px; }

/* ================================================
   CARA BOOKING (STEPS)
   ================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;  /* nomor di atas, teks di bawah */
  align-items: flex-start;
  gap: 14px;
}

.step-number {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}
.step-card h3 { color: var(--primary); margin-bottom: 6px; font-size: 1rem; }
.step-card p { color: var(--muted); font-size: 0.92rem; }

/* ================================================
   KEUNGGULAN
   ================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.feature-card h3 { color: var(--primary); margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* ================================================
   GALERI
   ================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border); /* fallback */
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,68,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ================================================
   TESTIMONI
   ================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

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

.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author div { display: flex; flex-direction: column; }
.testimonial-author strong { color: var(--primary); font-size: 0.95rem; }
.testimonial-author span { color: var(--muted); font-size: 0.82rem; }

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  gap: 12px;
  min-height: 56px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light); }

.faq-icon {
  font-size: 1.3rem;
  color: var(--secondary);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-style: normal;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 20px 18px;
}
.faq-answer.open { display: block; }
.faq-answer p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* ================================================
   LOKASI & KONTAK
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.contact-card h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.2rem; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-list div { display: flex; flex-direction: column; }
.contact-list strong { color: var(--text); font-size: 0.85rem; margin-bottom: 2px; }
.contact-list span, .contact-list a { color: var(--muted); font-size: 0.93rem; }
.contact-list a:hover { color: var(--primary); }

/* Map placeholder */
.map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.map-placeholder {
  height: 100%;
  min-height: 260px;
  background: linear-gradient(135deg, var(--secondary-light) 0%, #d6eeff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px;
  text-align: center;
}
.map-pin { font-size: 3rem; }
.map-placeholder strong { font-size: 1.1rem; color: var(--primary); }
.map-placeholder span { color: var(--muted); font-size: 0.9rem; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 20px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-logo { color: var(--white) !important; }
.footer-brand p { font-size: 0.9rem; margin: 12px 0 20px; line-height: 1.6; }

.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links nav a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer-contact a {
  color: rgba(255,255,255,0.65);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* ================================================
   FLOATING WHATSAPP BUTTON
   ================================================ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: all var(--transition);
}
.float-wa:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ================================================
   BACK TO TOP BUTTON
   ================================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ================================================
   RESPONSIVE — TABLET (≥600px)
   ================================================ */
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hs-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================
   RESPONSIVE — DESKTOP (≥900px)
   ================================================ */
@media (min-width: 900px) {
  /* Header */
  .nav-desktop { display: flex; }
  .hamburger { display: none; }
  .nav-mobile { display: none !important; }

  /* Section padding */
  .section { padding: 88px 24px; }

  /* Hero */
  .hero { padding: 88px 24px; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .hero-text { flex: 1; }
  .hero-image-wrap { flex: 1; }
  .hero-img { height: 420px; }

  /* About */
  .about-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
  .about-image-wrap { flex: 1; }
  .about-img { height: 400px; }
  .about-content { flex: 1; }

  /* Services */
  .services-grid { grid-template-columns: repeat(4, 1fr); }

  /* Pricing */
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }

  /* Features */
  .features-grid { grid-template-columns: repeat(3, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  /* Steps */
  .steps-grid { grid-template-columns: repeat(4, 1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

/* ================================================
   RESPONSIVE — LARGE DESKTOP (≥1200px)
   ================================================ */
@media (min-width: 1200px) {
  .container { padding: 0 24px; }
}

/* ================================================
   IMAGE FALLBACK
   Images not available → gray placeholder shown
   ================================================ */
img {
  background-color: var(--light);
}

/* ================================================
   ACCESSIBILITY — Focus styles
   ================================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}
