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

:root {
  color-scheme: light;
  --bg: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-input: #f8fafc;
  --bg-section: #e2e8f0;
  --bg-icons: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-icons: #334155;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --header-bg: rgba(255, 255, 255, 0.95);
  --icon-bg: #f1f5f9;
  --icon-border: #e2e8f0;
  --placeholder: #94a3b8;
  --primary: #c41e2d;
  --primary-dark: #a01825;
  --primary-light: #e83344;
  --gradient: linear-gradient(135deg, #c41e2d 0%, #e83344 50%, #c41e2d 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --accent-glow: rgba(196, 30, 45, 0.15);
  --accent-border: rgba(196, 30, 45, 0.3);
  --accent-hover: rgba(196, 30, 45, 0.4);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  --bg-input: #0f172a;
  --bg-section: rgba(30, 41, 59, 0.4);
  --bg-icons: #1e293b;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-icons: #e2e8f0;
  --border: #334155;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --header-bg: rgba(15, 23, 42, 0.95);
  --icon-bg: #334155;
  --icon-border: #475569;
  --placeholder: #64748b;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-input: #f8fafc;
  --bg-section: #e2e8f0;
  --bg-icons: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-icons: #334155;
  --border: #cbd5e1;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --header-bg: rgba(255, 255, 255, 0.95);
  --icon-bg: #ffffff;
  --icon-border: #e2e8f0;
  --placeholder: #94a3b8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s, border-color 0.3s;
}

.header.scrolled { box-shadow: var(--shadow); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  display: block;
}

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

.about-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 1rem;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--gradient) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600 !important;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: border-color 0.2s, background-color 0.3s;
}

.theme-toggle:hover {
  border-color: var(--primary);
}

[data-theme="dark"] .theme-icon-light { display: inline; }
[data-theme="dark"] .theme-icon-dark { display: none; }
[data-theme="light"] .theme-icon-light { display: none; }
[data-theme="light"] .theme-icon-dark { display: inline; }

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.btn:hover { transform: translateY(-2px); }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 30, 45, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(196, 30, 45, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(196, 30, 45, 0.06), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(196, 30, 45, 0.15);
  color: var(--primary-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(196, 30, 45, 0.3);
}

.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: 0.9rem;
  color: var(--primary-light);
  font-style: italic;
}

.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s;
}

.trust-card:hover { border-color: rgba(196, 30, 45, 0.4); }

.trust-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Service Icons Grid (Cashify-style) */
.service-icons {
  padding: 4rem 0;
  background: var(--bg-icons);
  color: var(--text);
  transition: background-color 0.3s;
}

.service-icons .section-header h2 {
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.service-icons .section-header p {
  color: var(--text-muted);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  transition: transform 0.2s;
}

.icon-item:hover { transform: translateY(-4px); }

.icon-circle {
  width: 72px;
  height: 72px;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s, background-color 0.3s;
}

.icon-item:hover .icon-circle {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(196, 30, 45, 0.2);
}

.icon-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-icons);
  line-height: 1.3;
}

/* Brands */
.brands {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.section-header-sm { margin-bottom: 2rem; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  transition: transform 0.2s;
}

.brand-item:hover {
  transform: translateY(-4px);
}

.brand-circle {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 1px solid var(--icon-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}

.brand-item:hover .brand-circle {
  border-color: var(--primary);
}

.brand-circle img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.brand-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-icons);
  line-height: 1.3;
}

/* Steps */
.steps {
  padding: 4rem 0;
  background: var(--bg-section);
  transition: background-color 0.3s;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Section */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Why Us */
.why-us { padding: 5rem 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 30, 45, 0.4);
}

.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Booking */
.booking {
  padding: 5rem 0;
  background: var(--bg-section);
  transition: background-color 0.3s;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.booking-intro h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.booking-intro > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.booking-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(196, 30, 45, 0.2);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-form,
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--placeholder); }

/* Advanced Services */
.advanced-services {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 30, 45, 0.4);
}

.service-card.featured {
  border-color: rgba(196, 30, 45, 0.25);
  background: linear-gradient(135deg, var(--bg-card), rgba(196, 30, 45, 0.05));
}

.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Works */
.works { padding: 5rem 0; background: var(--bg-section); transition: background-color 0.3s; }

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s;
}

.work-card:hover { transform: translateY(-3px); }

.work-placeholder {
  background: linear-gradient(135deg, var(--bg-card-hover), rgba(196, 30, 45, 0.08));
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.work-placeholder span { font-size: 2.5rem; }
.work-placeholder p { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }

.work-info { padding: 1.25rem; }

.work-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.work-info p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.6rem; }

.work-tag {
  display: inline-block;
  background: rgba(196, 30, 45, 0.15);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.works-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 1.25rem;
  background: rgba(196, 30, 45, 0.08);
  border: 1px dashed rgba(196, 30, 45, 0.3);
  border-radius: var(--radius);
}

/* Testimonials */
.testimonials { padding: 5rem 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

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

.quote {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background: var(--bg-section);
  transition: background-color 0.3s;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* About */
.about { padding: 5rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-content > p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-visual { display: flex; justify-content: center; }

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 320px;
  box-shadow: var(--shadow);
}

.about-card-icon { font-size: 3.5rem; color: var(--primary); margin-bottom: 0.75rem; }
.about-card h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.about-card p { color: var(--text-muted); }
.about-card-sub { margin-top: 0.4rem; color: var(--primary) !important; font-weight: 600; font-size: 0.9rem; }

/* Contact */
.contact { padding: 5rem 0; }

.contact-tagline {
  color: var(--primary-light) !important;
  font-style: italic;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stores-grid .store-card { margin-bottom: 0; }

.store-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.store-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.store-address,
.store-hours,
.store-phone {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.store-phone a { color: var(--primary); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon { font-size: 1.35rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; }
.contact-item a { color: var(--primary); }

.contact-form h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.footer-links ul li { margin-bottom: 0.4rem; }
.footer-links a { color: var(--text); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.4rem; }
.footer-contact a { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.footer-bottom p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.trust-card,
.why-card,
.service-card,
.work-card,
.testimonial-card,
.faq-item,
.booking-form,
.contact-form,
.about-card,
.store-card {
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero-grid,
  .booking-wrapper,
  .about-grid,
  .contact-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust { margin-top: 1rem; }

  .stores-grid {
    grid-template-columns: 1fr;
  }

  .store-card {
    flex-direction: column;
    text-align: center;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .logo { justify-content: center; }

  .icon-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
    gap: 1rem;
  }

  .brand-circle {
    width: 56px;
    height: 56px;
  }

  .brand-circle img {
    width: 24px;
    height: 24px;
  }
}

/* Repair brand pages */
.repair-page {
  padding-top: 72px;
}

.repair-hero {
  padding: 2rem 0 2.5rem;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--primary);
  transition: opacity 0.2s;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.repair-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.repair-brand-logo {
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem;
  border: 1px solid var(--border);
}

.repair-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
}

.repair-hero p {
  color: var(--text-muted);
  font-size: 1rem;
}

.model-section {
  padding: 3rem 0;
}

.other-brands-section {
  padding: 2rem 0 4rem;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.model-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.model-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.model-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.model-image {
  width: 72px;
  height: 72px;
  background: var(--bg-input);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
}

.model-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.brands-grid-compact {
  max-width: 100%;
}

.brands-grid-compact .brand-circle {
  width: 52px;
  height: 52px;
}

.brands-grid-compact .brand-circle img {
  width: 22px;
  height: 22px;
}

.empty-state {
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}

.empty-state a {
  color: var(--primary);
}

@media (max-width: 768px) {
  .model-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.75rem;
  }

  .model-image {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

/* Quote / model repair page */
.quote-page {
  padding: 88px 0 4rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.device-card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.device-image {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.device-info h1 {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 800;
  margin: 0.35rem 0 0.25rem;
  line-height: 1.3;
}

.device-brand-logo {
  background: #fff;
  border-radius: 6px;
  padding: 2px;
}

.device-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.quote-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.quote-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.quote-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 0.65rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  font-family: inherit;
  color: inherit;
}

.quote-service-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.quote-service-card.selected {
  border-color: var(--primary);
  background: rgba(196, 30, 45, 0.06);
  box-shadow: 0 0 0 1px var(--primary);
}

.quote-service-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.quote-service-name {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.quote-service-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.quote-service-warranty {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.quote-service-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}

.quote-service-card.selected .quote-service-check {
  opacity: 1;
  transform: scale(1);
}

.quote-other-service {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.quote-other-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.quote-other-service h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.quote-other-service p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.quote-sidebar {
  position: sticky;
  top: 88px;
}

.price-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.price-summary-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.price-summary-list {
  min-height: 60px;
  margin-bottom: 1rem;
}

.price-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem 0;
}

.price-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.price-summary-item span:last-child {
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.price-total-row strong {
  font-size: 1.25rem;
  color: var(--primary);
}

.quote-customer-fields {
  margin-bottom: 1rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.quote-customer-fields .form-group {
  margin-bottom: 0.85rem;
}

.quote-customer-fields .form-group:last-child {
  margin-bottom: 0;
}

.quote-customer-fields label {
  font-size: 0.8rem;
}

.quote-customer-fields input {
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  cursor: pointer;
}

.terms-check input {
  margin-top: 2px;
  accent-color: var(--primary);
}

.terms-check a {
  color: var(--primary);
}

.quote-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.quote-trust-item {
  text-align: center;
}

.quote-trust-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
}

.quote-trust-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .device-card {
    flex-direction: column;
    text-align: center;
  }

  .quote-service-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}
