/* ==========================================================================
   Madina Electronics (مدینہ الیکٹرانکس) - Professional Store Stylesheet
   Color Palette: Deep Navy, Electric Blue, Clean White, Light Slate, Coral Orange CTA
   ========================================================================== */

:root {
  /* Color Tokens */
  --navy-950: #050c18;
  --navy-900: #0b192c;
  --navy-850: #0e223d;
  --navy-800: #142d50;
  --navy-700: #1d3e6d;
  --blue-600: #1d4ed8;
  --blue-500: #2563eb;
  --blue-400: #38bdf8;
  --cyan-400: #06b6d4;
  --orange-500: #ea580c;
  --orange-600: #c2410c;
  --orange-400: #fb923c;
  --whatsapp-green: #25d366;
  --whatsapp-hover: #20ba5a;
  
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0b192c;
  --bg-darker: #07101d;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --border-light: #e2e8f0;
  --border-dark: #1e3a5f;
  
  /* Typography */
  --font-sans: 'Outfit', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-urdu: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', 'Noto Sans Arabic', 'Segoe UI', serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(11, 25, 44, 0.08), 0 2px 4px -2px rgba(11, 25, 44, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(11, 25, 44, 0.1), 0 4px 6px -4px rgba(11, 25, 44, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(11, 25, 44, 0.12), 0 8px 10px -6px rgba(11, 25, 44, 0.08);
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.25);
  --shadow-orange-glow: 0 0 20px rgba(234, 88, 12, 0.35);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 60px; /* Space for mobile bottom bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.urdu-text {
  font-family: var(--font-urdu);
  direction: rtl;
  display: inline-block;
  letter-spacing: 0;
  line-height: 1.9;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ==========================================================================
   Top Notification / Emergency Bar
   ========================================================================== */
.top-bar {
  background: var(--navy-950);
  color: #cbd5e1;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
}

.top-bar-item a:hover {
  color: var(--blue-400);
}

.top-bar-item svg {
  color: var(--blue-400);
  flex-shrink: 0;
}

.top-badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(37, 99, 235, 0.2);
  color: var(--blue-400);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 767px) {
  .top-bar {
    display: none; /* Keep clean on small mobile */
  }
}

/* ==========================================================================
   Main Header & Sticky Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 25, 44, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  background: rgba(7, 16, 29, 0.98);
}

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

/* Brand Logo (CSS & SVG Component) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--navy-900) 100%);
  border: 2px solid var(--blue-400);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.logo-monogram {
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.logo-monogram span {
  color: var(--orange-400);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.95rem;
  color: var(--orange-400);
  font-family: var(--font-urdu);
  line-height: 1.3;
  margin-top: 1px;
}

/* Desktop Nav Links */
.nav-menu {
  display: none;
  align-items: center;
  gap: 0.2rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-weight: 600;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-fast);
}

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

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: var(--orange-500);
  color: #ffffff;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
  transition: all var(--transition-fast);
}

.btn-header-call:hover {
  background-color: var(--orange-600);
  transform: translateY(-1px);
  color: #ffffff;
}

@media (max-width: 639px) {
  .btn-header-call {
    display: none;
  }
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--transition-fast);
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Navigation */
.mobile-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px);
  background: rgba(7, 16, 29, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  color: #f1f5f9;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-link.active {
  background: var(--blue-600);
  color: #ffffff;
  border-color: var(--blue-400);
}

.mobile-drawer-contact {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, var(--blue-600) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
  color: #ffffff;
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.btn-orange:hover {
  background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.45);
  color: #ffffff;
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline-primary {
  background: transparent;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-600);
}

.btn-outline-primary:hover {
  background: var(--blue-600);
  color: #ffffff;
}

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

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.badge-cash {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.badge-installment {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.badge-stock {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #cbd5e1;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #1e3a8a 0%, var(--navy-900) 50%, var(--navy-950) 100%);
  color: #ffffff;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #38bdf8;
}

.hero-badge-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fbbf24;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 0.75rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.hero-urdu-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--orange-400);
  font-family: var(--font-urdu);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-urdu-title {
    font-size: 2.3rem;
  }
}

.hero-desc {
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 640px) {
  .hero-trust-points {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.trust-item-label {
  font-size: 0.825rem;
  color: #94a3b8;
}

/* Hero Showcase Visual */
.hero-visual-card {
  position: relative;
  background: rgba(14, 34, 61, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -15px;
  left: 20px;
  right: 20px;
  background: rgba(11, 25, 44, 0.94);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
}

.floating-card-info h4 {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
}

.floating-card-info p {
  font-size: 0.8rem;
  color: #38bdf8;
}

/* ==========================================================================
   Trust Strip Section (Why Customers Choose Us)
   ========================================================================== */
.trust-strip-section {
  background: #ffffff;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  margin-top: -20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media (min-width: 1024px) {
  .trust-strip-section {
    margin-top: -30px;
  }
}

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

@media (min-width: 640px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-strip-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal);
}

.trust-strip-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}

.trust-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Section Headers & Common Layouts
   ========================================================================== */
.section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--bg-main);
}

.section-white {
  background-color: #ffffff;
}

.section-dark {
  background-color: var(--navy-900);
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  margin-bottom: 0.5rem;
}

.section-dark .section-subtitle {
  color: var(--blue-400);
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-urdu-subtitle {
  font-family: var(--font-urdu);
  font-size: 1.4rem;
  color: var(--orange-500);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.section-dark .section-urdu-subtitle {
  color: var(--orange-400);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .section-desc {
  color: #cbd5e1;
}

/* ==========================================================================
   Category Grid
   ========================================================================== */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Category Detail Page (categories.php) - Side-by-side image+text layout */
.category-detail-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
}

@media (max-width: 900px) {
  .category-detail-grid {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
  .category-detail-grid > div:first-child {
    min-height: 220px !important;
  }
}

.category-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-400);
}

.category-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy-900);
  overflow: hidden;
}

.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-img-wrap img {
  transform: scale(1.08);
}

.category-icon-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  background: rgba(11, 25, 44, 0.9);
  color: var(--blue-400);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.2rem;
}

.category-urdu-name {
  font-family: var(--font-urdu);
  font-size: 1.05rem;
  color: var(--orange-600);
  margin-bottom: 0.5rem;
}

.category-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.category-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  margin-bottom: 1.25rem;
}

.category-item-tag {
  font-size: 0.75rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
}

.category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.65rem 1rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-600);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.category-card:hover .category-btn {
  background: var(--blue-600);
  color: #ffffff;
}

/* ==========================================================================
   Product Filtering & Product Grid
   ========================================================================== */
.product-filter-bar {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .product-filter-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.filter-search-box {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.filter-search-input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.6rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

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

.filter-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.filter-pills-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
}

.filter-pill {
  padding: 0.5rem 1rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  background: #e2e8f0;
}

.filter-pill.active {
  background: var(--navy-900);
  color: #ffffff;
  border-color: var(--navy-900);
}

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

@media (min-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.product-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

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

.product-img-box {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

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

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}

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

.product-category-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-600);
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.product-urdu-title {
  font-family: var(--font-urdu);
  font-size: 0.95rem;
  color: var(--orange-600);
  margin-bottom: 0.5rem;
}

.product-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.product-spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #475569;
}

.product-spec-item svg {
  color: var(--blue-500);
  flex-shrink: 0;
}

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

.product-price-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--bg-main);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px dashed #cbd5e1;
}

.btn-product-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-product-wa:hover {
  background-color: var(--whatsapp-hover);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   Installment Major Banner & Promo
   ========================================================================== */
.installment-banner {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--blue-600) 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.installment-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.installment-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .installment-banner-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.installment-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(234, 88, 12, 0.2);
  color: var(--orange-400);
  border: 1px solid rgba(234, 88, 12, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.installment-banner-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.installment-banner-urdu {
  font-family: var(--font-urdu);
  font-size: 1.75rem;
  color: #38bdf8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.installment-banner-subtext {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 620px;
}

.installment-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.installment-quick-card {
  background: rgba(14, 34, 61, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.installment-quick-card h4 {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 700;
}

.installment-quick-card p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
}

.installment-policy-notice {
  font-size: 0.8rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange-400);
}

/* ==========================================================================
   Why Madina Electronics (6 Feature Cards)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-400);
}

.feature-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.15) 100%);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Google Reviews & Trust Section
   ========================================================================== */
.trust-review-card {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .trust-review-card {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.rating-score-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.rating-score-number {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
}

.rating-stars {
  color: #fbbf24;
  font-size: 1.5rem;
  margin: 0.75rem 0 0.5rem;
}

.rating-meta {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 600;
}

.rating-trust-content h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.rating-trust-content .urdu-highlight {
  font-family: var(--font-urdu);
  font-size: 1.3rem;
  color: var(--orange-400);
  margin-bottom: 1rem;
}

.rating-trust-content p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   Store Location & Maps Section
   ========================================================================== */
.location-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .location-card {
    grid-template-columns: 1fr 1.2fr;
  }
}

.location-info-pane {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  width: fit-content;
}

.location-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}

.location-urdu-title {
  font-family: var(--font-urdu);
  font-size: 1.3rem;
  color: var(--orange-600);
  margin-bottom: 1.5rem;
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.location-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-detail-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
}

.location-detail-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.location-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.location-map-pane {
  min-height: 380px;
  position: relative;
  background: #e2e8f0;
}

.location-map-pane iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-wrap {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item.active {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-question svg {
  color: var(--blue-600);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem;
}

/* ==========================================================================
   Gallery Section & Lightbox
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 25, 44, 0.9) 0%, rgba(11, 25, 44, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.gallery-item-category {
  font-size: 0.8rem;
  color: var(--blue-400);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 16, 29, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   Contact Form & WhatsApp Builder
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

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

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-main);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-500);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4.5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  }
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}

.footer-brand-desc {
  font-size: 0.925rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 1.25rem 0;
}

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

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.925rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: #94a3b8;
}

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

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  margin-top: 1.25rem;
}

.footer-rating-badge .stars {
  color: #fbbf24;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ==========================================================================
   Floating WhatsApp Button & Mobile Action Bar
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 75px;
  right: 20px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  padding: 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
  text-decoration: none;
}

@media (min-width: 768px) {
  .floating-whatsapp {
    bottom: 30px;
    right: 30px;
    padding: 0.75rem 1.25rem;
  }
}

.floating-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px) scale(1.02);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

.floating-wa-label {
  display: none;
  font-weight: 700;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .floating-wa-label {
    display: inline-block;
  }
}

/* Mobile Quick Action Fixed Bar */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.5rem 0.75rem;
  gap: 0.5rem;
  z-index: 950;
}

@media (min-width: 768px) {
  .mobile-action-bar {
    display: none;
  }
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.mobile-action-call {
  background-color: var(--orange-500);
}

.mobile-action-wa {
  background-color: var(--whatsapp-green);
}

/* ==========================================================================
   Utilities & Micro-Animations
   ========================================================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.text-orange { color: var(--orange-500); }
.text-blue { color: var(--blue-500); }

.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

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