/* =============================================
   PRINTER GEEK PRO — Main Stylesheet
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  --primary: #1a8fff;
  --primary-dark: #0d72d4;
  --primary-light: #e8f4ff;
  --primary-glow: rgba(26, 143, 255, 0.15);
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-2: #f8fafc;
  --bg-3: #f1f5f9;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  --transition: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--text-muted); line-height: 1.75; }

/* --- Layout --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,143,255,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}
.navbar-logo svg {
  color: var(--primary);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* --- Page Header --- */
.page-header {
  background: var(--dark);
  color: #fff;
  padding: 72px 0 60px;
}
.page-header h1 { color: #fff; }
.page-header p { color: rgba(255,255,255,0.65); max-width: 600px; margin-top: 14px; font-size: 1.1rem; }

/* --- Cards --- */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.9rem; }

/* --- Grids --- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Section Titles --- */
.section-title { text-align: center; margin-bottom: 52px; }
.section-title .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title h2 { margin-bottom: 14px; }
.section-title p { max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--primary); }
.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer-col .contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   HOME PAGE
   ============================================= */

/* Hero */
.hero {
  background: var(--dark);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 110% 50%, rgba(26,143,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,143,255,0.12);
  border: 1px solid rgba(26,143,255,0.25);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 span { color: var(--primary); }
.hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-decoration {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(26,143,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-decoration::before {
  content: '';
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(26,143,255,0.12);
}

/* Stats Bar */
.stats-bar {
  background: var(--primary);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.2);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; }

/* Services Overview */
.services-overview { background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Brands Row */
.brands-row { background: var(--bg); }
.brands-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.brand-pill {
  padding: 10px 22px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-2);
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.brand-pill:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* Testimonials */
.testimonials { background: var(--bg-2); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; font-size: 0.95rem; margin-bottom: 18px; color: var(--text); }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.reviewer-title { font-size: 0.8rem; color: var(--text-muted); }

/* CTA Strip */
.cta-strip { background: var(--dark); padding: 72px 0; text-align: center; }
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 36px; font-size: 1rem; }
.cta-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   SERVICES PAGE
   ============================================= */

.section-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.section-intro-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.section-intro h2 { margin: 0; }

.repair-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.supply-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}
.service-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}
.service-item h4 { margin-bottom: 6px; color: var(--dark); font-size: 0.95rem; }
.service-item p { font-size: 0.85rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--primary);
  background: var(--dark);
}
.pricing-card.featured h3 { color: #fff; }
.pricing-card.featured .price { color: #fff; }
.pricing-card.featured .price-sub { color: rgba(255,255,255,0.6); }
.pricing-card.featured ul li { color: rgba(255,255,255,0.8); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .plan-desc { font-size: 0.88rem; margin-bottom: 24px; }
.price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.price span { font-size: 1.2rem; font-weight: 600; }
.price-sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; margin-bottom: 28px; }
.pricing-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-card ul li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a8fff'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

.info-box {
  background: var(--primary-light);
  border: 1px solid rgba(26,143,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.info-box-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.info-box h3 { margin-bottom: 8px; }
.info-box p { font-size: 0.9rem; }

.turnaround-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.turnaround-item {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
}
.turnaround-time {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}
.turnaround-item p { font-size: 0.85rem; }

/* =============================================
   PRODUCTS PAGE
   ============================================= */

.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.87rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: var(--bg);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  min-width: 260px;
  transition: border-color var(--transition);
}
.search-bar:focus-within { border-color: var(--primary); }
.search-bar svg { color: var(--text-light); flex-shrink: 0; }
.search-bar input {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  flex: 1;
  min-width: 0;
}
.search-bar input::placeholder { color: var(--text-light); }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card-header {
  background: var(--bg-2);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-bottom: 1px solid var(--border);
}
.product-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.product-category-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--bg-3);
  color: var(--text-muted);
  margin-bottom: 10px;
}
.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-compat {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
}
.product-card .btn { width: 100%; justify-content: center; }

.no-results {
  text-align: center;
  padding: 80px 20px;
  display: none;
}
.no-results.show { display: block; }
.no-results svg { color: var(--text-light); margin: 0 auto 16px; }
.no-results h3 { margin-bottom: 8px; }

.bulk-cta {
  background: var(--primary-light);
  border: 1px solid rgba(26,143,255,0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  margin-top: 56px;
}
.bulk-cta h3 { margin-bottom: 10px; }
.bulk-cta p { margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* =============================================
   BRANDS PAGE
   ============================================= */

.brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.brand-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.brand-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}
.brand-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.brand-name-tag {
  width: 64px;
  height: 64px;
  background: var(--dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.brand-card-header h3 { margin-bottom: 4px; }
.brand-card-header p { font-size: 0.85rem; }
.brand-card > p { font-size: 0.9rem; margin-bottom: 20px; }
.brand-tags-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}
.tag-service { background: var(--primary-light); color: var(--primary); }
.tag-supply { background: var(--bg-3); color: var(--dark-3); }
.brand-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.brand-col-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.extra-brands {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  margin-top: 40px;
}
.extra-brands h3 { color: #fff; margin-bottom: 10px; }
.extra-brands p { color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.extra-brands-list {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.extra-brands-list span {
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p { margin-bottom: 16px; font-size: 0.95rem; }

.mission-box {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #fff;
}
.mission-box svg { color: var(--primary); margin-bottom: 16px; }
.mission-box h3 { color: #fff; margin-bottom: 14px; }
.mission-box blockquote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  border-left: 3px solid var(--primary);
  padding-left: 18px;
}

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 16px;
}
.value-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { font-size: 0.85rem; }

.certs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.cert-badge svg { color: var(--primary); flex-shrink: 0; }

.team-area { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.service-area-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.service-area-card h3 { margin-bottom: 12px; }
.service-area-card p { margin-bottom: 20px; }
.area-map-placeholder {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.area-map-placeholder svg { color: var(--text-light); }

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.detail-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.detail-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.detail-value small { display: block; font-weight: 400; font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

.map-placeholder {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 24px;
}
.map-placeholder svg { color: var(--primary); }

/* Contact Form */
.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 { margin-bottom: 6px; }
.contact-form-card > p { font-size: 0.9rem; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.form-control::placeholder { color: var(--text-light); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 14px; font-size: 1rem; }

.success-message {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}
.success-message.show { display: block; }
.success-message h4 { color: #16a34a; margin-bottom: 6px; }
.success-message p { font-size: 0.88rem; color: #15803d; }

/* FAQ */
.faq-section { background: var(--bg-2); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  background: transparent;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question svg { flex-shrink: 0; transition: transform 0.3s ease; color: var(--text-muted); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.9rem; }

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .repair-grid { grid-template-columns: repeat(2, 1fr); }
  .turnaround-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .team-area { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 70vh; padding: 60px 0; }
  .hero-decoration { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:last-child, .stat-item:nth-child(even) { border-bottom: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { order: -1; }
  .repair-grid { grid-template-columns: 1fr 1fr; }
  .supply-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .turnaround-grid { grid-template-columns: repeat(2, 1fr); }
  .info-box { flex-direction: column; }
  .contact-form-card { padding: 24px; }
  .bulk-cta { padding: 32px 24px; }
  .extra-brands { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-strip-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
  .shop-controls { flex-direction: column; align-items: stretch; }
  .search-bar { width: 100%; }
}

@media (max-width: 480px) {
  .repair-grid { grid-template-columns: 1fr; }
  .supply-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .turnaround-grid { grid-template-columns: 1fr; }
}
