/* ============================================================
   assets/css/style.css — Mobile Plus Main Stylesheet
   Brand: Blue #1A5FAB + Orange #F07722 | Minimal & Clean
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --blue:        #1A5FAB;
  --blue-dark:   #134a8a;
  --blue-light:  #e8f0fb;
  --orange:      #F07722;
  --orange-light:#fff3ea;
  --black:       #111111;
  --gray-dark:   #333333;
  --gray:        #555555;
  --gray-light:  #f5f6f8;
  --border:      #e0e4ea;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.15);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --transition:  0.25s ease;
  --font:        'Poppins', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: var(--font); }

/* --- Utility --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  text-align: center;
  margin-bottom: 0.4rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 2.8rem;
}
.tag-pill {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--blue);
  color: var(--white);
  padding: 7px 0;
  font-size: 0.82rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--white); font-weight: 500; }
.top-bar a:hover { text-decoration: underline; }
.top-bar-phones { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-bar-phones span { display: flex; align-items: center; gap: 5px; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.wa-pill {
  background: #25D366;
  color: #fff !important;
  padding: 4px 14px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background var(--transition);
}
.wa-pill:hover { background: #1aab53; text-decoration: none !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 46px; width: 46px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
}
.nav-logo-text .brand-name span { color: var(--orange); }
.nav-logo-text .brand-tagline {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: #d6621a; transform: translateY(-1px); color: #fff; }
.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 0 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 20px;
  font-weight: 500;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover { color: var(--blue); background: var(--blue-light); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #f0f5ff 0%, #fff8f0 100%);
  padding: 70px 0 60px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(26,95,171,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(240,119,34,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-title .highlight { color: var(--blue); }
.hero-title .highlight-orange { color: var(--orange); }
.hero-subtitle {
  font-size: 1.02rem;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.65;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-dark);
  box-shadow: var(--shadow-sm);
}
.hero-pill .pill-icon { font-size: 1rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(26,95,171,0.3);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(26,95,171,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--blue);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { background: var(--blue-light); transform: translateY(-2px); }
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-phone-wrap {
  position: relative;
  width: 300px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, var(--blue-light), var(--orange-light));
  border-radius: 50%;
  opacity: 0.7;
}
.hero-logo-large {
  width: 200px;
  height: 200px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(26,95,171,0.25));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 400;
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands { padding: 60px 0; background: var(--white); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
  background: var(--white);
  user-select: none;
}
.brand-tile:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--blue-light);
}
.brand-tile.selected {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(26,95,171,0.15);
}
.brand-tile svg, .brand-tile .brand-icon { width: 38px; height: 38px; object-fit: contain; }
.brand-tile span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-dark);
  text-align: center;
}
.brand-tile.selected span { color: var(--blue); }
/* Brand color icons using SVG inline */
.brand-icon-wrap { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { padding: 70px 0; background: var(--gray-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  border: 1.5px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 4px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--blue); }
.service-card:hover .service-icon .s-icon { filter: brightness(10); }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}
.service-card p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: 70px 0; background: var(--white); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.67% + 12px);
  width: calc(66.66% - 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  border-radius: 2px;
  z-index: 0;
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px; height: 72px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(26,95,171,0.3);
  border: 4px solid var(--white);
  position: relative;
}
.step-card:nth-child(2) .step-number { background: var(--orange); box-shadow: 0 4px 16px rgba(240,119,34,0.3); }
.step-card:nth-child(3) .step-number { background: #22c55e; box-shadow: 0 4px 16px rgba(34,197,94,0.3); }
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--black); }
.step-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.55; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { padding: 70px 0; background: var(--blue); }
.why-us .section-title, .why-us .section-subtitle { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.75); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
}
.why-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.why-card-icon {
  font-size: 2rem;
  line-height: 1;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: #fff; }
.why-card p { font-size: 0.83rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking { padding: 70px 0; background: var(--gray-light); }
.booking-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.92rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,171,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(240,119,34,0.3);
}
.form-submit:hover { background: #d6621a; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(240,119,34,0.4); }
.form-submit:disabled { background: var(--gray); cursor: not-allowed; transform: none; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 12px;
}
/* Toast / Alert */
.form-alert {
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 18px;
  display: none;
}
.form-alert.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
.form-alert.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

/* ============================================================
   GOOGLE MAP
   ============================================================ */
.map-section { padding: 70px 0; background: var(--white); }
.map-label {
  text-align: center;
  font-size: 0.92rem;
  color: var(--gray);
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.map-frame-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  max-width: 860px;
  margin: 0 auto;
}
.map-frame-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 70px 0; background: var(--gray-light); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 10px; }
.testi-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.testi-info .testi-name { font-size: 0.9rem; font-weight: 700; color: var(--black); }
.testi-info .testi-loc { font-size: 0.75rem; color: var(--gray); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0d1b2e;
  color: #e2e8f0;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 48px; width: 48px; object-fit: contain; }
.footer-logo-text .brand-name { font-size: 1.15rem; font-weight: 800; color: #fff; }
.footer-logo-text .brand-name span { color: var(--orange); }
.footer-logo-text .brand-tagline { font-size: 0.7rem; color: #94a3b8; }
.footer-desc { font-size: 0.84rem; color: #94a3b8; line-height: 1.65; margin-bottom: 16px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: #e2e8f0;
  margin-bottom: 8px;
}
.footer-contact-item a { color: #e2e8f0; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; }
.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.84rem; color: #94a3b8; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: #64748b;
}
.footer-bottom a { color: var(--orange); }

/* Floating WhatsApp button */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 22px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.float-wa svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */
@media (max-width: 960px) {
  .brands-grid { grid-template-columns: repeat(5, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { order: -1; }
  .hero-phone-wrap { width: 220px; height: 220px; }
  .hero-logo-large { width: 160px; height: 160px; }
  .hero-phone-bg { width: 190px; height: 190px; }
  .steps-row::before { display: none; }
  .steps-row { grid-template-columns: 1fr; max-width: 380px; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .booking-wrap { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .map-frame-wrap iframe { height: 280px; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-stats { gap: 16px; }
  .top-bar .container { justify-content: center; }
  .top-bar-right { display: none; }
}

@media (max-width: 360px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
