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

:root {
  --red: #C8102E;
  --red-dark: #a00d24;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gray: #888;
  --light: #f5f5f5;
  --white: #ffffff;
  --font-main: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: 0.3s ease;
  --shadow: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn.full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 12px 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 6px; text-decoration: none; }
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  transition: height 0.4s ease;
}
#navbar.scrolled .logo-img { height: 34px; }
.footer-logo .logo-img { height: 56px; margin-bottom: 8px; }
.logo-vastam {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--white);
}
.logo-garage {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--red);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-cta:hover { background: var(--red-dark); }

.ig-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 14px 22px 14px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  transition: all var(--transition);
  text-decoration: none;
}
.ig-cta:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,16,46,0.35);
}
.ig-cta-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  transition: all var(--transition);
}
.ig-cta-icon svg { width: 18px; height: 18px; }
.ig-cta:hover .ig-cta-icon { border-color: var(--white); color: var(--white); }

.ig-cta-text { display: flex; flex-direction: column; gap: 2px; }
.ig-cta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.ig-cta-handle {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}
.ig-cta:hover .ig-cta-label { color: rgba(255,255,255,0.85); }

.ig-cta-arrow {
  width: 18px; height: 18px;
  color: rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.ig-cta:hover .ig-cta-arrow {
  color: var(--white);
  transform: translateX(4px);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

/* ===== HERO ===== */
#hero { position: relative; min-height: 100vh; }
.hero-bg {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  background-color: #0a0a0a;
  background-image: url("images/bmw-red.jpg");
  background-size: cover;
  background-position: center 75%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg .hero-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.3) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}
.hero-overlay { position: absolute; inset: 0; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(200,16,46,0.4);
  border-radius: 2px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--red);
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 40px;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.1);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  gap: 4px;
}
.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: #e0e0e0;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.section-title.white { color: var(--white); }
.section-title em { font-style: italic; color: var(--red); }
.title-bar {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 20px auto 0;
  border-radius: 2px;
}
.title-bar.red { background: var(--red); margin: 20px 0 0; }

/* ===== SERVICES ===== */
#services { padding: 100px 0; background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(30px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
  border-bottom-color: var(--red);
  transform: translateY(-6px);
}
.service-card.featured {
  background: var(--dark);
  border-bottom-color: var(--red);
}
.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-list li { color: rgba(255,255,255,0.85); }
.service-card.featured .service-icon { color: var(--red); }
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.service-icon {
  width: 56px;
  height: 56px;
  color: var(--red);
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}
.service-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 24px;
}
.service-list li {
  font-size: 13px;
  color: var(--gray);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card.featured .service-list li { border-bottom-color: rgba(255,255,255,0.08); }
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-list li:last-child { border-bottom: none; }

/* ===== WHY US ===== */
#why { padding: 0; }
.why-bg {
  background: var(--dark);
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  margin-top: 20px;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
}
.feat-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.why-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #1e1e1e;
}
.why-img-wrap img { border-radius: 4px; }
.why-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  z-index: 0;
}
.why-img-wrap img { position: relative; z-index: 1; }
.why-badge-box {
  position: absolute;
  bottom: 28px; left: -20px;
  background: var(--red);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(200,16,46,0.4);
}
.why-badge-num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.why-badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ===== GALLERY ===== */
#gallery { padding: 100px 0 0; background: var(--white); }
#gallery .container { margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
  aspect-ratio: 3/4;
  border-radius: 4px;
}
.gallery-item:nth-child(13),
.gallery-item:nth-child(14) {
  grid-column: span 2;
  aspect-ratio: 3/2;
}
.gallery-item img {
  transition: transform 0.6s ease;
  object-position: center 65%;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-make {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.gallery-model {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

/* ===== BRANDS ===== */
#brands { padding: 80px 0; background: var(--light); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.brand-item {
  background: var(--white);
  padding: 24px 18px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  min-height: 110px;
  filter: grayscale(1);
  opacity: 0.65;
}
.brand-item:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transform: translateY(-6px);
  filter: grayscale(0);
  opacity: 1;
}
.brand-svg {
  width: 100%;
  max-width: 90px;
  height: 60px;
  color: #1a1a1a;
  transition: all var(--transition);
}
.brand-img {
  width: 100%;
  height: 60px;
  max-width: 110px;
  object-fit: contain;
  display: block;
  transition: all var(--transition);
}

/* ===== CONTACT ===== */
#contact { padding: 100px 0; background: var(--white); }
.map-wrap {
  margin-bottom: 60px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  border: 1px solid #eee;
}
.map-wrap iframe { display: block; width: 100%; filter: grayscale(0.3) contrast(1.05); transition: filter var(--transition); }
.map-wrap:hover iframe { filter: grayscale(0) contrast(1); }
.map-cta { margin-top: 28px; align-self: flex-start; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 40px;
}
.info-items { display: flex; flex-direction: column; gap: 28px; }
.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  background: rgba(200,16,46,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.info-icon svg { width: 20px; height: 20px; }
.info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.info-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--light);
  padding: 44px;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}
.form-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.form-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-header p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.6;
}
.form-header strong { color: var(--red); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 3px;
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

/* ===== FOOTER ===== */
#footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  padding: 5px 0;
  transition: color var(--transition);
  cursor: default;
}
.footer-col ul li a { color: inherit; transition: color var(--transition); }
.footer-col ul li a:hover,
.footer-col ul li:hover { color: rgba(255,255,255,0.8); }

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.closed { color: rgba(200,16,46,0.7) !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200,16,46,0.6) !important;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ===== RESPONSIVE ===== */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); padding: 0 20px; }
  .gallery-item:nth-child(13),
  .gallery-item:nth-child(14) { grid-column: span 1; aspect-ratio: 3/4; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { gap: 40px; }
  .why-grid { gap: 48px; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  /* Nav */
  #navbar { padding: 14px 0; }
  #navbar.scrolled { padding: 10px 0; }
  .logo-img { height: 34px; }
  #navbar.scrolled .logo-img { height: 30px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
    padding: 80px 24px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
  .hamburger {
    display: block;
    position: relative;
    z-index: 1001;
    color: var(--white);
    font-size: 24px;
  }

  /* Hero */
  #hero { min-height: auto; }
  .hero-bg {
    background-position: 65% 50%;
    min-height: 600px;
    height: auto;
  }
  .hero-content { padding: 100px 20px 80px; min-height: 600px; }
  .hero-tag { font-size: 10px; letter-spacing: 3px; padding: 5px 12px; }
  .hero-title { font-size: 44px; line-height: 1.1; margin-bottom: 18px; }
  .hero-sub { font-size: 13px; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 13px 24px; }

  /* Sections */
  #services, #brands, #contact { padding: 48px 0; }
  #gallery { padding: 48px 0 0; }
  .why-bg { padding: 56px 0; }
  .section-header { margin-bottom: 28px; }
  .section-title { font-size: 30px; }
  .section-tag { font-size: 10px; letter-spacing: 3px; margin-bottom: 8px; }
  .title-bar { margin-top: 14px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 36px 28px; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { order: -1; max-width: 340px; margin: 0 auto; width: 100%; }
  .why-features { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-feat { font-size: 12px; }
  .why-badge-box { left: 12px; bottom: 16px; padding: 14px 20px; }
  .why-badge-num { font-size: 28px; }
  .why-badge-text { font-size: 9px; }
  .why-desc { font-size: 14px; }
  .ig-cta {
    margin-top: 24px;
    width: 100%;
    padding: 12px 16px 12px 14px;
    gap: 12px;
  }
  .ig-cta-handle { font-size: 14px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 0 12px;
  }
  .gallery-item { aspect-ratio: 3/4; }
  .gallery-item:nth-child(13),
  .gallery-item:nth-child(14) { grid-column: span 1; aspect-ratio: 3/4; }
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
    padding: 14px 14px;
  }
  .gallery-make { font-size: 9px; letter-spacing: 1.5px; }
  .gallery-model { font-size: 13px; }

  /* Brands */
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .brand-item { padding: 18px 12px; min-height: 88px; }
  .brand-img { height: 44px; max-width: 80px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info h3 { font-size: 26px; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-header h3 { font-size: 18px; }
  .form-header p { font-size: 12px; }

  /* Footer */
  #footer { padding: 56px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer-logo .logo-img { height: 48px; }
  .footer-brand p { font-size: 13px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 0;
  }

  /* WhatsApp float */
  .whatsapp-float {
    bottom: 20px; right: 20px;
    width: 50px; height: 50px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 12.5px; }
  .section-title { font-size: 26px; }
  .why-features { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-item { min-height: 80px; padding: 16px 10px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 0 8px; }
  .service-card { padding: 32px 24px; }
  .service-card h3 { font-size: 18px; }
  .stat-num { font-size: 28px; }
  .info-item { gap: 14px; }
  .info-icon { width: 38px; height: 38px; }
  .info-icon svg { width: 18px; height: 18px; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
