/* ==========================================================================
   PLUGS & PIXELS — REFRESHED WHITE & BLUE DESIGN SYSTEM
   Console Repairs, Custom Rigs & PC Hardware | Durban North
   ========================================================================== */

/* --- Clean Modern Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- Root Design Tokens (White & Blue Primary Palette) --- */
:root {
  /* Surfaces & Backgrounds */
  --bg-page: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #fcfdfe;
  --bg-nav: rgba(255, 255, 255, 0.95);
  --bg-blue-tint: #eff6ff;
  --bg-blue-soft: #dbeafe;

  /* Brand Blues (Directly from Logo) */
  --brand-blue: #1b61c1;
  --brand-blue-hover: #154fa0;
  --brand-navy: #0b257c;
  --brand-cyan: #0284c7;
  --brand-cyan-light: #e0f2fe;

  /* Text & Readability (High Contrast) */
  --text-dark: #0f172a;        /* Slate 900 - Headings & Primary Text */
  --text-body: #334155;        /* Slate 700 - Body & Paragraphs */
  --text-muted: #64748b;       /* Slate 500 - Subtitles & Meta */
  --text-light: #94a3b8;       /* Slate 400 - Secondary Meta */
  --text-white: #ffffff;

  /* Borders & Dividers */
  --border-light: #e2e8f0;      /* Slate 200 */
  --border-medium: #cbd5e1;     /* Slate 300 */
  --border-blue: #bfdbfe;       /* Blue 200 */
  --border-active: #1b61c1;

  /* Status Colors */
  --status-green: #059669;
  --status-green-bg: #ecfdf5;
  --status-green-border: #a7f3d0;
  --status-warning: #d97706;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Geometry & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 4px 16px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 16px 32px -6px rgba(27, 97, 193, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-blue: 0 6px 20px rgba(27, 97, 193, 0.25);

  --nav-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-page);
  color: var(--text-body);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* --- Clean Blue & White Interactive Cursor (Dead-Center Aligned) --- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--brand-blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.2s ease, width 0.15s ease, height 0.15s ease, background-color 0.15s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(27, 97, 193, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-dot {
  width: 9px;
  height: 9px;
  background-color: var(--brand-navy);
}

body.cursor-hover .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: var(--brand-blue);
  background-color: rgba(27, 97, 193, 0.06);
}

@media (hover: none) or (pointer: coarse) {
  .cursor-dot, .cursor-ring {
    display: none !important;
  }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

.text-blue {
  color: var(--brand-blue);
}

.text-navy {
  color: var(--brand-navy);
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 60%, var(--brand-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-spacing {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bg-subtle {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* Section Header Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-blue-tint);
  color: var(--brand-blue);
  border: 1px solid var(--border-blue);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.badge-pill-green {
  background-color: var(--status-green-bg);
  color: var(--status-green);
  border-color: var(--status-green-border);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: currentColor;
}

.section-title {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 800;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

/* --- Buttons & CTAs (>= 48px Touch Targets) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: #ffffff;
  border: 1px solid var(--brand-blue);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background-color: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 37, 124, 0.25);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--brand-navy);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-blue-tint);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  font-weight: 700;
  border: 1px solid #20ba5a;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #1fbe5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  color: #ffffff;
}

/* --- Top Operational Bar --- */
.top-bar {
  background-color: var(--brand-navy);
  color: #ffffff;
  padding: 9px 0;
  font-size: 0.82rem;
  font-weight: 500;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #34d399;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link {
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-link:hover {
  color: #ffffff;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff !important;
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-height);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.nav-container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 36px !important;
  padding-right: 36px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.top-bar-content {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 36px !important;
  padding-right: 36px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-logo {
  height: 44px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

.nav-brand-divider {
  width: 1px;
  height: 24px;
  background-color: var(--border-medium);
  display: inline-block;
}

.nav-brand-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 680px) {
  .nav-brand-divider,
  .nav-brand-tag {
    display: none;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  width: 46px;
  height: 46px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-around;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.25s ease;
}

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

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-nav-drawer.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  list-style: none;
  text-align: center;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 8px 16px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--brand-blue);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 70px 0 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.stat-item-num {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Hero Media Frame (Zero Stretched Images) */
.hero-media-wrapper {
  position: relative;
  width: 100%;
}

.hero-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-hover);
  background-color: var(--bg-subtle);
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-floating-spec {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.spec-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-navy);
}

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

.spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--status-green);
  background: var(--status-green-bg);
  border: 1px solid var(--status-green-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* --- Cards & Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Service & Shop Cards */
.shop-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-blue);
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-blue-tint);
  border: 1px solid var(--border-blue);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon-box svg {
  width: 26px;
  height: 26px;
}

.card-tag {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-blue);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.32rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.card-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-list li svg {
  width: 15px;
  height: 15px;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.card-link:hover {
  color: var(--brand-navy);
  gap: 9px;
}

/* --- Product Cards with Proper Aspect Ratio --- */
.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-blue);
}

.product-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
}

.product-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-media-wrapper img {
  transform: scale(1.04);
}

.product-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(11, 37, 124, 0.9);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-spec-table {
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.84rem;
}

.product-spec-row {
  display: flex;
  justify-content: space-between;
}

.product-spec-row span:first-child {
  color: var(--text-muted);
}

.product-spec-row span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}

.product-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-top: auto;
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.product-price-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.product-price-amount {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
}

/* --- Interactive Repair Estimator (Light Theme) --- */
.estimator-card {
  background: #ffffff;
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 12px 36px -4px rgba(27, 97, 193, 0.1);
}

.estimator-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-select, .form-input, .form-textarea {
  width: 100%;
  min-height: 48px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(27, 97, 193, 0.15);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.estimator-output {
  background-color: var(--bg-blue-tint);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}

.output-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.output-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.output-turnaround {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--status-green);
  margin-bottom: 20px;
}

.output-details {
  border-top: 1px solid var(--border-blue);
  padding-top: 16px;
  text-align: left;
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.output-detail-row {
  display: flex;
  justify-content: space-between;
}

.output-detail-row span:first-child {
  color: var(--text-muted);
}

.output-detail-row span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}

/* --- Filter Tabs (Light Theme) --- */
.tab-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 14px;
}

.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 9px 20px;
  min-height: 46px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--brand-blue);
  background-color: var(--bg-blue-tint);
}

.tab-btn.active {
  background-color: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(27, 97, 193, 0.2);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  animation: fadeIn 0.25s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Reviews Showcase & Interactive Slider --- */
.reviews-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-controls-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews-nav-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  border: 1.5px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.review-arrow-btn:hover {
  background-color: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(27, 97, 193, 0.2);
  transform: translateY(-2px);
}

.review-arrow-btn svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.reviews-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 4px 20px;
  scrollbar-width: none;
}

.reviews-slider-track::-webkit-scrollbar {
  display: none;
}

.reviews-slider-track .review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 320px;
  scroll-snap-align: start;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reviews-slider-track .review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-body {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-blue-soft);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta h5 {
  font-size: 0.92rem;
  color: var(--text-dark);
}

.review-meta p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-medium);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.review-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--brand-blue);
}

@media (max-width: 1024px) {
  .reviews-slider-track .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: 290px;
  }
}

@media (max-width: 680px) {
  .reviews-slider-track .review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* --- Logistics Banner --- */
.logistics-bar {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
  color: #ffffff;
  padding: 56px 0;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  box-shadow: 0 16px 36px -8px rgba(11, 37, 124, 0.25);
}

.logistics-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 0 40px;
}

.logistics-h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  color: #ffffff;
  margin-bottom: 12px;
}

.logistics-p {
  color: #e0f2fe;
  font-size: 1rem;
}

/* --- FAQ Accordion (Light Theme) --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.active {
  border-color: var(--brand-blue);
  box-shadow: 0 4px 14px rgba(27, 97, 193, 0.08);
}

.faq-question {
  width: 100%;
  min-height: 52px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-blue);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 20px 20px 20px;
}

/* --- Master Footer (Clean White & Blue Sovereign Theme) --- */
.footer {
  background-color: #ffffff;
  color: var(--text-body);
  padding: 68px 0 36px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-brand {
  margin-bottom: 14px;
}

.footer-brand .nav-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-brand .nav-brand-tag {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand p {
  color: var(--text-body);
  font-size: 0.92rem;
  margin-top: 14px;
  line-height: 1.65;
  max-width: 320px;
}

.footer-brand-rating {
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--brand-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #475569;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-blue);
  padding-left: 3px;
}

.footer-contact-row {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 12px;
}

.footer-contact-row svg {
  color: var(--brand-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--brand-blue);
}

/* --- Full-Width Interactive Google Map Section (Edge-to-Edge) --- */
.map-fullwidth-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.map-embed-header-full {
  background-color: var(--bg-blue-tint);
  border-bottom: 1.5px solid var(--border-blue);
  padding: 14px 0;
  width: 100%;
}

.map-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 36px !important;
}

.map-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.map-rating-tag {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.map-pin-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand-blue);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background-color: #ffffff;
  border: 1.5px solid var(--border-blue);
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(27, 97, 193, 0.08);
}

.map-directions-btn:hover {
  background-color: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(27, 97, 193, 0.22);
  transform: translateY(-1px);
}

.map-iframe-fullwidth {
  position: relative;
  width: 100%;
  height: 480px;
  background-color: #f1f5f9;
}

.map-iframe-fullwidth iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero-grid,
  .estimator-layout,
  .logistics-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .top-bar { display: none; }
  .nav-menu, .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 30px; }
  .hero-h1 { font-size: 2.1rem; }
  .hero-stats-strip { grid-template-columns: 1fr; gap: 14px; }
  .estimator-card { padding: 22px 18px; }
  .logistics-grid { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Brand Partner Infinite Marquee (100% Stutter-Free 2-Track System) --- */
.brand-marquee-section {
  padding: 30px 0 34px;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}

.brand-marquee-header {
  text-align: center;
  margin-bottom: 18px;
}

.brand-marquee-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 28px;
  padding-right: 28px;
  animation: marqueeLoop 26s linear infinite;
  will-change: transform;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.brand-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  color: #334155;
  transition: all 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.brand-logo-item:hover {
  background-color: #ffffff;
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  box-shadow: 0 4px 14px rgba(27, 97, 193, 0.12);
  transform: translateY(-2px);
}

.brand-logo-item img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-logo-item .brand-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: inherit;
  white-space: nowrap;
}
