/* ============================================
   BALAJI AC SERVICE - Premium Design System
   Modern, Gradient, Glassmorphism, 3D Effects
   Matching www.balajihomeappliance.com style
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #0c7be8;
  --primary-dark: #0a64bd;
  --primary-darker: #08519c;
  --primary-light: #38bdf8;
  --primary-lighter: #7dd3fc;
  --primary-glow: rgba(12, 123, 232, 0.08);
  --primary-gradient: linear-gradient(135deg, #0c7be8, #38bdf8);
  --accent: #0c7be8;
  --accent-dark: #0a64bd;
  --accent-gradient: linear-gradient(135deg, #0c7be8, #38bdf8);
  --success: #22c35e;
  --success-gradient: linear-gradient(135deg, #22c35e, #1ebd50);
  --whatsapp: #22c35e;
  --whatsapp-dark: #1cbd50;
  --whatsapp-gradient: linear-gradient(135deg, #22c35e, #1ebd50);
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --light-bg: #F1F5F9;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --text-dark: #0F172A;
  --text-body: #475569;
  --text-light: #64748B;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-primary: 0 4px 14px rgba(37, 99, 235, 0.4);
  --shadow-accent: 0 4px 14px rgba(249, 115, 22, 0.4);
  --shadow-whatsapp: 0 4px 14px rgba(37, 211, 102, 0.4);
  --glass: rgba(255,255,255,0.8);
  --glass-border: rgba(255,255,255,0.2);
  --glass-dark: rgba(15,23,42,0.6);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --header-height: 70px;
}

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

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

body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

img { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
picture img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--text-dark); line-height: 1.25; }

/* --- Container --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.section { padding: 64px 0; content-visibility: auto; contain-intrinsic-size: 1000px; }
.section--gray { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 48px; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--primary-glow);
  color: var(--primary-darker);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

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

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   BUTTONS - Premium Gradient Style
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 123, 232, 0.4);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-accent {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-accent:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 123, 232, 0.4);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 195, 94, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline::after { display: none; }

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.btn-white::after { display: none; }

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ============================================
   HEADER - Glassmorphism
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  height: var(--header-height);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: auto;
  height: 48px;
  max-width: 250px;
  object-fit: contain;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: var(--shadow-primary);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav { display: none; gap: 2px; }

.nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav a:hover, .nav a.active {
  color: var(--primary);
  background: var(--primary-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1023px) {
  .header-actions {
    display: none;
  }
}

.header-action-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.header-action-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.action-whatsapp {
  background: var(--whatsapp);
}

.action-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.action-call {
  background: var(--primary);
}

.action-call:hover {
  background: var(--primary-dark);
}

.header-cta {
  display: none;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  gap: 6px;
  align-items: center;
  white-space: nowrap;
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(12, 123, 232, 0.4);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu - Slide In */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 16px 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
  animation: menuSlideIn 0.3s ease forwards;
}

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

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  transition: var(--transition);
  margin-bottom: 2px;
}

.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--primary);
  background: var(--primary-glow);
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.mobile-menu-cta .btn { width: 100%; justify-content: center; }

/* Mobile Navigation Dropdown */
.mobile-dropdown {
  margin-bottom: 2px;
}

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border: none;
  background: transparent;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  text-align: left;
}

.mobile-dropdown-toggle:hover, .mobile-dropdown-toggle.active {
  color: var(--primary);
  background: var(--primary-glow);
}

.mobile-dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 20px;
  border-left: 2px solid var(--border);
  margin-left: 24px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-menu a {
  padding: 10px 16px;
  font-size: 0.92rem;
}

/* ============================================
   HERO - Premium Gradient
   ============================================ */
.hero {
  margin-top: var(--header-height);
  padding: 48px 0 40px;
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #eef6fa 100%);
  overflow: hidden;
}

.hero::before {
  display: none;
}

/* Decorative circles */
.hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(12,123,232,0.05) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(12, 123, 232, 0.08);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(12, 123, 232, 0.15);
}

.hero h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  color: var(--primary);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-cta .btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.hero-cta .btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(12, 123, 232, 0.4);
  transform: translateY(-3px);
}

.hero-cta .btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: var(--shadow-whatsapp);
  border: none;
}

.hero-cta .btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 8px 25px rgba(34, 195, 94, 0.4);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero Variants - Light background across all pages */
.hero--ac, .hero--fridge, .hero--washing, .hero--stove, .hero--hob, .hero--geyser, .hero--chimney, .hero--home {
  background: linear-gradient(180deg, #f8fafc 0%, #eef6fa 100%);
}

/* Hero Grid layout structure */
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }

@media (max-width: 767px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 16px;
    align-items: start;
  }

  .hero-content {
    display: contents;
  }

  .hero-badge {
    grid-column: 1 / 2;
    grid-row: 1;
    margin-bottom: 8px;
    font-size: 0.8rem;
    padding: 6px 12px;
    align-self: start;
    width: fit-content;
  }

  .hero h1 {
    grid-column: 1 / 2;
    grid-row: 2;
    font-size: 1.45rem;
    margin-bottom: 12px;
    line-height: 1.25;
    align-self: start;
  }

  .hero-image {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    order: unset;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: start;
  }

  .hero-image-wrapper {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: none;
  }

  .image-badge {
    display: none !important;
  }

  .hero-location-badge {
    display: none !important;
  }

  .hero-desc {
    grid-column: 1 / 3;
    grid-row: 3;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero-cta {
    grid-column: 1 / 3;
    grid-row: 4;
    margin-bottom: 24px;
    gap: 10px;
  }

  .hero-cta .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .hero-stats {
    grid-column: 1 / 3;
    grid-row: 5;
    padding-top: 20px;
    gap: 12px;
  }
}

.hero-image { display: block; width: 100%; text-align: center; margin-top: 16px; }

.hero-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

.image-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(12, 123, 232, 0.08);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 14px;
}

.hero-location-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================
   TRUST BAR - Glass Cards
   ============================================ */
.trust-bar {
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.trust-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.trust-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.trust-text p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.3;
}

/* ============================================
   SERVICE CARDS - Elevated
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-primary);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.88rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-darker);
  transition: var(--transition);
}

.service-card-link:hover { gap: 12px; color: var(--primary-dark); }

/* --- Background Image Service Card --- */
.service-card--bg {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 380px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}

.service-card--bg:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.service-card--bg:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.6) 60%, rgba(15, 23, 42, 0.2) 100%);
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.service-card-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.service-card-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 24px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ============================================
   WHY CHOOSE US - Feature Cards
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-primary);
}

.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 12px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: rgba(12, 123, 232, 0.08);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(12, 123, 232, 0.15);
}

.step-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.step-content h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.step-content p { font-size: 0.75rem; color: var(--text-light); line-height: 1.4; }

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.pricing-table thead { background: var(--primary-gradient); }

.pricing-table th {
  padding: 16px 20px;
  text-align: left;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-body);
}

.pricing-table tbody tr { transition: var(--transition); }
.pricing-table tbody tr:hover { background: var(--primary-glow); }
.pricing-table tbody tr:last-child td { border-bottom: none; }

.pricing-table .price {
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  font-size: 0.85rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: var(--primary-glow);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-stars {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-primary);
}

.testimonial-name { font-weight: 600; font-size: 0.92rem; color: var(--text-dark); }
.testimonial-location { font-size: 0.8rem; color: var(--text-light); }

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.area-tag {
  padding: 10px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  text-align: center;
  transition: all 0.3s ease;
}

.area-tag:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 12px;
}

.brand-tag {
  padding: 4px 10px;
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.brand-tag:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.faq-question:hover { background: var(--off-white); }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-glow);
  border-radius: 50%;
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
  background: var(--primary-gradient);
  color: var(--white);
}

.faq-item.active .faq-question { color: var(--primary); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }
.faq-item.active .faq-answer { max-height: 400px; }

/* ============================================
   CTA SECTION - Premium Gradient
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 30%, #2563EB 60%, #7C3AED 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative; z-index: 2;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative; z-index: 2;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative; z-index: 2;
}

/* ============================================
   GOOGLE MAP
   ============================================ */
.map-section { padding: 0; content-visibility: auto; contain-intrinsic-size: 300px; }
.map-container, .map-placeholder { width: 100%; height: 300px; border: none; display: block; }
.map-placeholder { display: flex; align-items: center; justify-content: center; background-color: #f8fafc; color: #64748b; font-weight: 500; }

/* ============================================
   FOOTER - Premium Dark
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--gray-900) 0%, #0B1120 100%);
  padding: 48px 0 0;
  color: rgba(255,255,255,0.65);
  content-visibility: auto; contain-intrinsic-size: 400px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-lighter);
  padding-left: 8px;
}

/* Clickable contact items in footer */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--primary-lighter);
}

.footer-contact-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   FLOATING BUTTONS - Animated
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 90px;
  right: 16px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
}

.float-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  animation: floatPulse 2s infinite;
  z-index: -1;
}

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

.float-call {
  background: var(--primary);
  box-shadow: var(--shadow-primary);
}

.float-whatsapp {
  background: var(--whatsapp);
  box-shadow: var(--shadow-whatsapp);
}

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

/* ============================================
   MOBILE BOTTOM BAR
   ============================================ */
.mobile-bottom-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  border-top: 1px solid var(--border);
  padding: 8px 16px 12px;
  gap: 12px;
}

.mobile-bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
  transition: var(--transition);
  height: 46px;
}

.mobile-bottom-bar .bottom-call {
  background: var(--primary-darker);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.mobile-bottom-bar .bottom-whatsapp {
  background: #15803d;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HOMEPAGE - ALL SERVICES GRID
   ============================================ */
.all-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.all-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.all-service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}

.all-service-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.all-service-card-img,
.all-service-card-img-wrapper picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--light-bg), var(--gray-200));
  aspect-ratio: 4/3;
}

.service-price-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.service-overlay-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  color: var(--text-dark);
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.service-overlay-icon {
  width: 16px;
  height: 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overlay-icon svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.service-overlay-text {
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

.all-service-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.service-tag {
  font-size: 0.65rem;
  color: var(--primary);
  background: rgba(12, 123, 232, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-darker);
  font-weight: 700;
  font-size: 0.78rem;
  text-decoration: none;
  margin-top: auto;
  transition: var(--transition);
}

.service-card-link:hover {
  color: var(--primary-dark);
}

.service-card-link .arrow {
  transition: transform 0.2s ease;
}

.service-card-link:hover .arrow {
  transform: translateX(4px);
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--off-white), var(--gray-100));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .section-title { font-size: 2.25rem; }
  .hero { padding: 72px 0 56px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-image { display: block; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .all-services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section h2 { font-size: 2.2rem; }
  .map-container, .map-placeholder { height: 400px; }

  .all-service-card-img-wrapper { height: 180px; }
  .all-service-card-body { padding: 20px; }
  .service-card-desc { -webkit-line-clamp: 3; line-clamp: 3; font-size: 0.82rem; margin-bottom: 12px; }
  .service-tag-list { gap: 6px; margin-bottom: 14px; }
  .service-tag { font-size: 0.72rem; padding: 3px 8px; }
  .service-card-link { font-size: 0.88rem; }
  .service-price-badge { font-size: 0.78rem; padding: 5px 10px; top: 12px; right: 12px; }
  .service-overlay-badge { padding: 5px 10px; bottom: 12px; left: 12px; }
  .service-overlay-icon { width: 20px; height: 20px; }
  .service-overlay-icon svg { width: 12px; height: 12px; }
  .service-overlay-text { font-size: 0.78rem; }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .container { padding: 0 40px; }
  .section { padding: 96px 0; }
  .section-title { font-size: 2.5rem; }
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .header-actions { display: none; }
  .menu-toggle { display: none; }
  .hero { padding: 96px 0 72px; }
  .hero h1 { font-size: 3rem; }
  .hero-desc { font-size: 1.1rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .all-services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .floating-buttons { bottom: 30px; right: 30px; display: flex; }
  .mobile-bottom-bar { display: none; }
  .cta-section h2 { font-size: 2.5rem; }
  .map-container, .map-placeholder { height: 450px; }
}

@media (min-width: 1280px) {
  .hero h1 { font-size: 3.4rem; }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .areas-grid { grid-template-columns: repeat(5, 1fr); }
  .all-services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Body padding for mobile bottom bar */
body { padding-bottom: 74px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* --- Services Points List (Subpages) --- */
.services-split-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 24px;
}

.services-list-container {
  width: 100%;
}

.services-image-container {
  order: -1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.services-product-image {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  background: var(--white);
  padding: 16px;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .services-split-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
  }
  .services-split-container .services-points-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-image-container {
    order: unset;
    margin-bottom: 0;
  }
  .services-product-image {
    max-height: 380px;
  }
}

.services-points-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .services-points-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 48px;
  }
}

.service-point-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.service-point-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.service-point-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.service-point-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.service-point-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* Print */
@media print {
  .header, .floating-buttons, .mobile-bottom-bar, .cta-section { display: none; }
  .hero { margin-top: 0; background: #eee !important; padding: 20px 0; }
  .hero h1, .hero-desc, .hero-badge { color: #000 !important; -webkit-text-fill-color: #000 !important; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-text a:hover {
  color: var(--primary-dark);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-highlight-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.about-highlight-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.about-highlight-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
  }
  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  position: relative;
}

.blog-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-glow);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.blog-card:hover .blog-card-link {
  color: var(--primary-dark);
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

/* ============================================
   BLOG PAGE STYLES
   ============================================ */
.blog-page-hero {
  margin-top: var(--header-height);
  padding: 48px 0 40px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef6fa 100%);
  text-align: center;
}

.blog-page-hero h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.blog-page-hero p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-article h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.blog-article h2:first-of-type {
  border-top: none;
  margin-top: 32px;
}

.blog-article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 8px;
}

.blog-article p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-article ul,
.blog-article ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.blog-article li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}

.blog-article strong {
  color: var(--text-dark);
}

.blog-article-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-glow);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .blog-page-hero h1 { font-size: 2.5rem; }
  .blog-article h2 { font-size: 1.75rem; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  margin-top: var(--header-height);
  padding: 48px 0 40px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef6fa 100%);
  text-align: center;
}

.contact-hero h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .contact-hero h1 { font-size: 2.5rem; }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: var(--radius-md);
}

.contact-info-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-info-card a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

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

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

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.show { display: block; }

.form-success svg {
  color: var(--success);
  margin-bottom: 12px;
}

.form-success h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.92rem;
  color: var(--text-light);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================ */
.legal-hero {
  margin-top: var(--header-height);
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef6fa 100%);
  text-align: center;
}

.legal-hero h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 0.92rem;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .legal-hero h1 { font-size: 2.5rem; }
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-glow);
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 20px 0 8px;
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-content li {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}

.legal-content ol li { list-style: decimal; }

.legal-content strong { color: var(--text-dark); }

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover { color: var(--primary-dark); }

.legal-effective-date {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-glow);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

/* ============================================
   UNIQUE SERVICE CONTENT SECTIONS
   ============================================ */
.service-unique-section {
  padding: 48px 0;
  background: var(--white);
}

.service-problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .service-problems-grid { grid-template-columns: 1fr 1fr; }
}

.problem-card {
  padding: 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.problem-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.problem-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.brand-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.brand-tag:hover {
  border-color: var(--primary);
  background: var(--primary-glow);
  color: var(--primary);
}

/* ============================================
   BLOG POST (INDIVIDUAL) PAGE
   ============================================ */
.blog-post-hero {
  margin-top: var(--header-height);
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef6fa 100%);
}

.blog-post-hero .container {
  max-width: 800px;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.blog-post-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-post-hero h1 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .blog-post-hero h1 { font-size: 2.25rem; }
}

.blog-post-hero p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.blog-post-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 32px 0 12px;
}

.blog-post-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 8px;
}

.blog-post-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.blog-post-content li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}

.blog-post-content strong { color: var(--text-dark); }

.blog-post-content a {
  color: var(--primary);
  text-decoration: underline;
}

.blog-post-content a:hover { color: var(--primary-dark); }

.blog-post-cta {
  margin-top: 32px;
  padding: 24px;
  background: var(--primary-glow);
  border: 1px solid rgba(12, 123, 232, 0.15);
  border-radius: var(--radius-xl);
  text-align: center;
}

.blog-post-cta p {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.related-articles {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.related-articles h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .related-articles-grid { grid-template-columns: 1fr 1fr; }
}

/* Blog index card date display */
.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========== COMMON PROBLEMS GRID ========== */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .problems-grid { grid-template-columns: 1fr 1fr; }
}

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

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== BRANDS WE SERVICE GRID ========== */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.brand-tag {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
  cursor: default;
  letter-spacing: 0.01em;
}

.brand-tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* ========== FEATURED TESTIMONIAL ========== */
.testimonial-featured {
  border: 2px solid var(--primary) !important;
  position: relative;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(37, 99, 235, 0.01)) !important;
}

.testimonial-featured::after {
  content: '⭐ Top Review';
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ========== BLOG INDEX CARDS ========== */
.blog-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .blog-cards-grid { grid-template-columns: 1fr 1fr; }
}

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

.blog-index-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-index-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.blog-card-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, #e8f0fe, #dbeafe);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-body h3 a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.blog-card-footer .read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.blog-card-footer .read-more:hover {
  gap: 8px;
}

.blog-card-footer .blog-card-date {
  margin-bottom: 0;
}

/* ============================================
   NAVIGATION DROPDOWN MENU
   ============================================ */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 0;
  z-index: 1000;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block !important;
  padding: 10px 20px !important;
  font-size: 0.88rem !important;
  color: var(--text-body) !important;
  text-decoration: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  transition: all 0.2s ease !important;
  text-align: left;
}

.nav-dropdown-menu a:hover {
  background: var(--primary-glow) !important;
  color: var(--primary) !important;
}

/* ============================================
   BREADCRUMBS & BLOG POST META (LEFT-ALIGNED)
   ============================================ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  justify-content: flex-start;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumb span {
  color: var(--text-dark);
  font-weight: 500;
}

.blog-post-hero {
  margin-top: var(--header-height);
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef6fa 100%);
  text-align: left;
}

.blog-post-hero .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-post-hero h1 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .blog-post-hero h1 {
    font-size: 2.25rem;
  }
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.blog-post-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

