/* ==========================================================================
   FATUMUJURA - EYES ON THEM
   Clean Modern White & Blue E-Commerce Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* Brand Blue Color Palette */
  --color-primary: #2563eb;          /* Royal Blue */
  --color-primary-dark: #1d4ed8;     /* Deep Navy Blue */
  --color-primary-light: #3b82f6;    /* Bright Blue */
  --color-primary-soft: #eff6ff;     /* Blue Tint 50 */
  --color-primary-glow: rgba(37, 99, 235, 0.25);
  
  --color-tech-blue: #0284c7;        /* Tech Sky Blue */
  --color-tech-soft: #f0f9ff;        /* Sky Tint 50 */
  
  --color-accent-amber: #f59e0b;     /* Gold / Rating Amber */
  --color-accent-emerald: #10b981;   /* In-Stock Green */
  --color-danger: #ef4444;           /* Alert Red */
  
  /* Background & Surface Palette (Clean White Theme) */
  --bg-white: #ffffff;
  --bg-page: #f8fafc;                /* Slate 50 */
  --bg-subtle: #f1f5f9;              /* Slate 100 */
  --bg-card: #ffffff;
  
  /* Borders */
  --border-light: #e2e8f0;           /* Slate 200 */
  --border-medium: #cbd5e1;          /* Slate 300 */
  --border-blue: #bfdbfe;            /* Blue 200 */
  
  /* Typography Colors */
  --text-heading: #0f172a;           /* Slate 900 */
  --text-body: #334155;              /* Slate 700 */
  --text-muted: #64748b;             /* Slate 500 */
  --text-dim: #94a3b8;              /* Slate 400 */
  --text-white: #ffffff;
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Elevations & Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 16px 32px -4px rgba(37, 99, 235, 0.12), 0 6px 12px -2px rgba(15, 23, 42, 0.06);
  --shadow-drawer: -10px 0 40px rgba(15, 23, 42, 0.15);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* Section Header Styling */
.section-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border: 1px solid var(--border-blue);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   Top Notification Strip & Language Switcher
   ========================================================================== */
.top-notice-strip {
  background: linear-gradient(90deg, #070e22 0%, #0f1c3f 50%, #070e22 100%);
  color: #e2e8f0;
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 101;
}

.top-notice-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-notice-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pulse-badge {
  background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
  color: #fff;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
  flex-shrink: 0;
}

.status-dot-pulse-mini {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.4s infinite;
}

.top-notice-text {
  font-size: 0.78rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-notice-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.top-hotline-link, .top-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #94a3b8;
  transition: var(--transition-fast);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.top-hotline-link:hover {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
}

.top-wa-link {
  color: #86efac;
}

.top-wa-link:hover {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.4; }
}

.lang-selector-wrap {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  border: none;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.5);
}

/* ==========================================================================
   Header & Main Navigation Bar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1rem;
}

/* Brand Logo Styling */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-glow-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-logo-link:hover .brand-logo-glow-wrap {
  transform: scale(1.05);
  box-shadow: 0 4px 16px var(--color-primary-glow);
  border-color: var(--border-blue);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.42rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0b152d;
  line-height: 1.1;
}

.brand-rw-badge {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--color-tech-blue);
  background: var(--color-tech-soft);
  border: 1px solid #bae6fd;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* In-Header Quick Search Bar */
.nav-search-container {
  flex: 0 1 240px;
  position: relative;
  transition: flex 0.3s ease;
}

.nav-search-pill {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  padding: 0.38rem 0.8rem;
  gap: 0.45rem;
  transition: all 0.25s ease;
}

.nav-search-pill:focus-within {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-search-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.nav-search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.82rem;
  font-family: var(--font-body);
  color: var(--text-heading);
  outline: none;
}

.nav-search-input::placeholder {
  color: var(--text-dim);
}

.nav-search-clear-btn {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: none;
  padding: 0 2px;
}

.nav-search-clear-btn:hover {
  color: var(--color-danger);
}

/* Desktop Navigation Menu Links */
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-links-desktop li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: var(--text-body);
  padding: 0.4rem 0.68rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border-color: #dbeafe;
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--color-primary-dark);
  background: #dbeafe;
  border-color: #bfdbfe;
  font-weight: 700;
}

/* Micro-Badges on Nav items */
.nav-badge-hot {
  font-size: 0.54rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #f97316);
  padding: 0.08rem 0.35rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  line-height: 1;
  box-shadow: 0 2px 5px rgba(239, 68, 68, 0.3);
  animation: hotBadgeGlow 2s infinite ease-in-out;
}

@keyframes hotBadgeGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); box-shadow: 0 0 8px rgba(239, 68, 68, 0.5); }
}

.nav-badge-calc {
  font-size: 0.54rem;
  font-weight: 800;
  color: #1e40af;
  background: #dbeafe;
  padding: 0.08rem 0.35rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Mega Dropdown for Categories */
.nav-dropdown-wrapper {
  position: relative;
}

.dropdown-chevron {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-dropdown-wrapper:hover .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-mega-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 460px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 1.15rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-dropdown-wrapper:hover .nav-mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.mega-drop-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mega-drop-card:hover {
  background: #eff6ff;
  border-color: var(--border-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.mega-drop-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.mega-drop-text {
  display: flex;
  flex-direction: column;
}

.mega-drop-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-heading);
}

.mega-drop-desc {
  font-size: 0.71rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 0.15rem;
}

.mega-dropdown-footer {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mega-link-calc {
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.mega-link-calc:hover {
  text-decoration: underline;
}

/* Nav Actions (Call & Cart) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.quick-call-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.81rem;
  font-weight: 700;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 0.44rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.quick-call-btn:hover {
  background: #dcfce7;
  border-color: #86efac;
  color: #14532d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 101, 52, 0.12);
}

.status-dot-pulse {
  width: 7px;
  height: 7px;
  background-color: var(--color-accent-emerald);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.status-dot-pulse::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 11px;
  height: 11px;
  background-color: var(--color-accent-emerald);
  border-radius: 50%;
  opacity: 0.7;
  animation: pingPulse 1.8s infinite;
}

@keyframes pingPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Cart Button in Header */
.cart-header-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  border: none;
  padding: 0.44rem 0.95rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.81rem;
  box-shadow: 0 4px 12px var(--color-primary-glow);
  transition: all var(--transition-fast);
  position: relative;
  cursor: pointer;
}

.cart-header-btn:hover {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.38);
}

.cart-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-badge-count {
  background: #ffffff;
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.08rem 0.38rem;
  border-radius: var(--radius-full);
  min-width: 17px;
  text-align: center;
  position: absolute;
  top: -8px;
  right: -9px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge-count.pulse {
  transform: scale(1.4);
}

/* Sub-Header Category Strip Bar */
.nav-category-strip {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0.35rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.nav-category-strip-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-category-strip-inner::-webkit-scrollbar {
  display: none;
}

.nav-cat-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.pulse-ring-blue {
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.6s infinite;
}

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

.nav-cat-pill {
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-full);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-cat-pill:hover {
  background: #eff6ff;
  border-color: var(--border-blue);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.nav-cat-pill.highlight {
  background: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
  font-weight: 700;
}

.nav-cat-pill.highlight:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #b91c1c;
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 38px;
  padding: 9px 7px;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-nav-toggle:hover {
  background: #e2e8f0;
}

.mobile-nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-heading);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-toggle.active .bar-1 {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active .bar-2 {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.active .bar-3 {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer Overlay & Panel */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9998;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 380px;
  background: #ffffff;
  z-index: 9999;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-heading);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-drawer-close:hover {
  background: #fee2e2;
  color: var(--color-danger);
  border-color: #fca5a5;
}

.mobile-drawer-search {
  margin: 1.2rem 0;
}

.mobile-drawer-search input {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  background: #f8fafc;
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
}

.mobile-drawer-search input:focus {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  text-decoration: none;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  background: #eff6ff;
  color: var(--color-primary);
}

.mobile-nav-icon {
  font-size: 1.1rem;
}

.mobile-drawer-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.2rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.mob-cat-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-heading);
  text-decoration: none;
  transition: var(--transition-fast);
}

.mob-cat-btn:hover {
  background: #eff6ff;
  border-color: var(--border-blue);
  color: var(--color-primary);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.mobile-drawer-lang {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Primary Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px var(--color-primary-glow);
  transition: var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.btn-whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #2ae06d, #149c8d);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--bg-white);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

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

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-heading);
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mobile-drawer-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  display: block;
  padding: 0.4rem 0;
}

/* ==========================================================================
   Hero E-Commerce Banner
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4rem 0 3.5rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-page) 100%);
  border-bottom: 1px solid var(--border-light);
}

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

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-primary-soft);
  border: 1px solid var(--border-blue);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge-pill .radar-icon {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-primary);
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-heading);
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

.hero-title .text-gradient-primary {
  color: var(--color-primary);
}

.hero-title .text-gradient-teal {
  color: var(--color-tech-blue);
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-body);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-heading);
}

.stat-value span {
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Right: Modern Product Showcase Card */
.hero-showcase-deck {
  position: relative;
}

.hero-showcase-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  box-shadow: var(--shadow-card-hover);
  position: relative;
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.showcase-tag-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.showcase-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  aspect-ratio: 16 / 11;
}

.showcase-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-img-box:hover img {
  transform: scale(1.04);
}

.showcase-floating-pill {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Trust Badges Bar
   ========================================================================== */
.trust-bar-section {
  padding: 2rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.15rem;
}

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

/* ==========================================================================
   Product Catalog & Hardware Showcase (Second Scroll Down)
   ========================================================================== */
.catalog-section {
  padding: 5rem 0;
  background: var(--bg-page);
  position: relative;
}

.catalog-search-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
}

.catalog-search-wrap {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

.catalog-search-input {
  width: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.4rem 0.85rem 3rem;
  color: var(--text-heading);
  font-size: 0.95rem;
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.catalog-search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.catalog-search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
}

.catalog-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-body);
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.filter-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
}

.filter-btn.active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px var(--color-primary-glow);
}

.btn-compare-open {
  background: var(--color-tech-soft);
  border-color: var(--color-tech-blue);
  color: var(--color-tech-blue);
}

.btn-compare-open:hover {
  background: var(--color-tech-blue);
  color: #fff;
}

/* Products Grid (E-Commerce Card) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  position: relative;
}

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

.product-thumb-box {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-light);
}

.product-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-thumb-img {
  transform: scale(1.06);
}

.product-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.product-rating-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-amber);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: var(--shadow-sm);
}

.product-content-box {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-meta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-tech-blue);
  margin-bottom: 0.35rem;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-heading);
}

.product-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-feature-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.product-card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.price-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
}

.product-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.btn-add-cart {
  background: var(--color-primary-soft);
  border: 1px solid var(--border-blue);
  color: var(--color-primary);
  font-weight: 700;
  padding: 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.btn-add-cart:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-specs-light {
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  color: var(--text-body);
  font-weight: 600;
  padding: 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.btn-specs-light:hover {
  background: var(--bg-page);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ==========================================================================
   Category Showcase Grid
   ========================================================================== */
.category-showcase-section {
  padding: 4.5rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-tile-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-fast);
  cursor: pointer;
}

.category-tile-card:hover {
  background: var(--color-primary-soft);
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.cat-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--color-primary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
  box-shadow: var(--shadow-sm);
}

.category-tile-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.category-tile-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Interactive Quote Estimator (Clean Light Mode)
   ========================================================================== */
.estimator-section {
  padding: 5rem 0;
  background: var(--bg-page);
}

.estimator-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.estimator-form-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-group-custom label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.property-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.prop-option-card {
  border: 1px solid var(--border-medium);
  background: var(--bg-white);
  padding: 1rem 0.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.prop-option-card:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
}

.prop-option-card.selected {
  background: var(--color-primary-soft);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.prop-option-card .prop-icon {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.prop-option-card .prop-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
}

.range-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.range-header-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.range-val-badge {
  color: var(--color-primary);
  font-weight: 800;
  font-family: var(--font-mono);
}

.custom-range-input {
  width: 100%;
  accent-color: var(--color-primary);
  height: 6px;
  background: var(--border-medium);
  border-radius: 3px;
  outline: none;
}

.checkbox-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.checkbox-option-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.checkbox-option-card:hover {
  border-color: var(--color-primary);
}

.checkbox-option-card.checked {
  background: var(--color-primary-soft);
  border-color: var(--color-primary);
}

.checkbox-option-card input {
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
}

.checkbox-info h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
}

.checkbox-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.estimator-summary-col {
  background: #0f172a;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card-hover);
}

.estimator-summary-col h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.estimator-summary-col p {
  color: #94a3b8;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.summary-breakdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #334155;
  padding-bottom: 1.2rem;
}

.summary-breakdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.summary-breakdown-item span:last-child {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-mono);
}

.total-estimate-box {
  margin-bottom: 1.5rem;
}

.total-estimate-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.total-estimate-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-accent-amber);
  font-family: var(--font-heading);
}

.total-estimate-note {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.3rem;
}

/* ==========================================================================
   Slide-Out Cart & Quote Drawer
   ========================================================================== */
.cart-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.cart-drawer-overlay.active {
  display: block;
  opacity: 1;
}

.cart-drawer-panel {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: var(--shadow-drawer);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-panel.open {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.cart-drawer-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty-msg {
  text-align: center;
  color: var(--text-muted);
  margin: auto 0;
}

.cart-item-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.cart-item-thumb {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #fff;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
}

.cart-item-cat {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.cart-item-remove-btn {
  color: var(--color-danger);
  font-size: 1.2rem;
  padding: 0.3rem;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-page);
}

/* ==========================================================================
   Case Studies & FAQ in Clean Light Theme
   ========================================================================== */
.case-studies-section {
  padding: 5rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.case-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

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

.case-badge-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
  align-self: flex-start;
}

.case-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.case-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.case-client-quote {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 0.9rem;
  background: var(--bg-white);
  border-left: 3px solid var(--color-primary);
  border-radius: 4px;
  border: 1px solid var(--border-light);
  border-left-width: 4px;
}

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

.faq-list-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-accordion-item.open {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.6rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
}

.faq-icon-arrow {
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.faq-accordion-item.open .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.6rem;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-accordion-item.open .faq-answer-content {
  padding-bottom: 1.4rem;
}

/* Contact & Service Form */
.contact-section {
  padding: 5rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

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

.info-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form-box {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

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

.form-field-wrap {
  margin-bottom: 1.2rem;
}

.form-field-wrap label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-heading);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.modal-content-card.modal-lg {
  max-width: 960px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--border-light);
}

.modal-body {
  padding: 1.8rem;
  max-height: 75vh;
  overflow-y: auto;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.spec-item {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

.spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.spec-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
}

.compare-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-matrix-table th, .compare-matrix-table td {
  padding: 1rem;
  border: 1px solid var(--border-light);
  text-align: left;
}

.compare-matrix-table th {
  background: var(--bg-page);
  color: var(--text-heading);
  font-weight: 800;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-col .brand-name {
  color: #ffffff;
}

.footer-brand-col p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.footer-links-col h5 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

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

.footer-links-list a {
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  font-size: 0.82rem;
  color: #64748b;
}

/* Floating Action Bar */
.floating-action-bar {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 900;
}

.fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
  color: #fff;
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

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

.fab-back-to-top {
  background: #ffffff;
  color: var(--text-heading);
  border: 1px solid var(--border-medium);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.fab-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 10000;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #0f172a;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Breakpoints & Navigation Layouts */
@media (max-width: 1200px) {
  .nav-search-container {
    flex: 0 1 180px;
  }
  .nav-links-desktop {
    gap: 0.15rem;
  }
  .nav-link {
    padding: 0.45rem 0.65rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 1024px) {
  .nav-links-desktop, 
  .quick-call-btn,
  .nav-search-container {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }

  .top-notice-text {
    display: none;
  }

  .hero-grid,
  .estimator-card,
  .contact-layout-grid,
  .trust-badges-grid,
  .category-tiles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .top-notice-strip {
    padding: 0.35rem 0;
  }

  .top-notice-inner {
    justify-content: space-between;
  }

  .top-wa-link {
    display: none;
  }

  .nav-wrapper {
    height: 66px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-logo-glow-wrap {
    width: 40px;
    height: 40px;
  }

  .cart-btn-label {
    display: none;
  }

  .cart-header-btn {
    padding: 0.5rem 0.75rem;
  }

  .nav-category-strip {
    padding: 0.35rem 0;
  }

  .hero-grid,
  .hero-stats-row,
  .trust-badges-grid,
  .category-tiles-grid,
  .estimator-card,
  .property-type-grid,
  .checkbox-options-grid,
  .form-row-2,
  .spec-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}
