/* ==========================================================================
   BL Electronics - Official Stylesheet
   Professional LED, LCD & Smart TV Repair Services in Hyderabad
   Strictly Vanilla CSS3 - Optimized for Hostinger PHP Hosting
   ========================================================================== */

:root {
  --primary: #0066ff;
  --primary-dark: #004ecc;
  --primary-light: #e6f0ff;
  --primary-subtle: #f0f6ff;
  --navy: #0a1128;
  --navy-dark: #060a17;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --accent-amber: #d97706;
  --accent-amber-bg: #fffbeb;
  --accent-green: #16a34a;
  --accent-green-bg: #f0fdf4;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.2s ease-in-out;
}

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

html {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  background-color: var(--white);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); /* Space for sticky mobile bar */
  overflow-x: hidden;
  width: 100%;
}

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

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--slate-900);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(1.65rem, 3.2vw + 0.85rem, 2.75rem); line-height: 1.22; }
h2 { font-size: clamp(1.3rem, 2.2vw + 0.72rem, 2.15rem); line-height: 1.26; margin-bottom: 0.65rem; }
h3 { font-size: clamp(1.1rem, 1.4vw + 0.72rem, 1.35rem); line-height: 1.3; margin-bottom: 0.5rem; }
h4 { font-size: clamp(0.98rem, 1vw + 0.7rem, 1.15rem); line-height: 1.35; margin-bottom: 0.35rem; }

p {
  margin-bottom: 1rem;
  max-width: 75ch;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.top-bar {
  background-color: var(--navy-dark);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item a {
  color: #e2e8f0;
}

.top-bar-item a:hover {
  color: #60a5fa;
}

.top-bar-badge {
  background-color: rgba(0, 102, 255, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(0, 102, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--slate-200);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.25);
}

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

.logo-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-800);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: var(--transition);
}

.dropdown-link:hover {
  background-color: var(--primary-subtle);
  color: var(--primary);
  padding-left: 22px;
}

.dropdown-divider {
  height: 1px;
  background-color: var(--slate-200);
  margin: 6px 0;
}

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

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
  transition: var(--transition);
}

.btn-header-call:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--slate-200);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--slate-800);
}

/* ==========================================================================
   Buttons & Core Components
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
  background-color: var(--slate-800);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--slate-900);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  color: var(--white);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-primary {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.badge-amber {
  background-color: var(--accent-amber-bg);
  color: var(--accent-amber);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.badge-navy {
  background-color: rgba(10, 17, 40, 0.1);
  color: var(--navy);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #172554 100%);
  color: var(--white);
  padding: 60px 0 70px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-pill-icon {
  color: #60a5fa;
  font-weight: 800;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1.75rem;
}

.hero-notice {
  font-size: 0.82rem;
  color: #94a3b8;
  border-left: 3px solid #3b82f6;
  padding-left: 10px;
  margin-top: 1rem;
}

/* Hero Right Box (Card) */
.hero-card {
  background-color: var(--white);
  color: var(--slate-800);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-header {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 15px;
}

.hero-card-title {
  font-size: 1.35rem;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.hero-card-subtitle {
  font-size: 0.9rem;
  color: var(--slate-600);
}

/* ==========================================================================
   Trust Highlights Strip
   ========================================================================== */

.trust-strip {
  background-color: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  padding: 24px 0;
}

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

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

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-item-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.trust-item-desc {
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.35;
}

/* ==========================================================================
   Sections Layout
   ========================================================================== */

.section {
  padding: 60px 0;
}

.section-alt {
  background-color: var(--slate-50);
}

.section-dark {
  background-color: var(--navy);
  color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

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

.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

.section-header p {
  color: var(--slate-600);
  font-size: 1.05rem;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: #94a3b8;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.service-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.service-card-icon {
  width: 52px;
  height: 52px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--slate-900);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--slate-600);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-link {
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
}

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

/* ==========================================================================
   Common TV Problems Grid
   ========================================================================== */

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

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

.problem-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

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

.problem-icon {
  width: 36px;
  height: 36px;
  background-color: #fee2e2;
  color: #dc2626;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.problem-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.problem-content p {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   Process Steps (How It Works)
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

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

.process-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.25);
}

.process-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.92rem;
  color: var(--slate-600);
  margin: 0 auto;
}

/* ==========================================================================
   Brand Grid (Independent Compatibility)
   ========================================================================== */

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

@media (min-width: 992px) {
  .brand-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.brand-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--slate-800);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

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

.brand-card-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-500);
  margin-top: 4px;
}

.brand-disclaimer {
  background-color: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-top: 24px;
  line-height: 1.5;
}

/* ==========================================================================
   Service Areas Grid
   ========================================================================== */

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

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

@media (min-width: 992px) {
  .areas-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.area-badge-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-800);
  transition: var(--transition);
}

.area-badge-card:hover {
  border-color: var(--primary);
  background-color: var(--primary-subtle);
  color: var(--primary);
}

.area-badge-card.primary-location {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

.area-pin-icon {
  color: #dc2626;
  font-size: 1.1rem;
}

/* ==========================================================================
   Booking Form Styles
   ========================================================================== */

.booking-form-wrapper {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--slate-900);
  background-color: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

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

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

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

.form-help {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 4px;
}

.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.form-alert-error {
  background-color: var(--danger-bg);
  border: 1px solid #fecaca;
  color: #991b1b;
}

.form-alert-success {
  background-color: var(--accent-green-bg);
  border: 1px solid #bbf7d0;
  color: #166534;
}

.honeypot-field {
  display: none !important;
  visibility: hidden !important;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background-color: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
}

.faq-question:hover {
  background-color: var(--slate-50);
}

.faq-toggle-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.2s ease;
  font-weight: bold;
}

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

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Landing Page / Service Page Specific
   ========================================================================== */

.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 50px 0 55px;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: #cbd5e1;
}

.breadcrumbs a:hover {
  color: #60a5fa;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .content-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

.content-body h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 1.25rem;
}

.content-body ul li {
  margin-bottom: 0.5rem;
  color: var(--slate-700);
}

.sidebar-sticky {
  position: sticky;
  top: 95px;
}

.sidebar-card {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background-color: var(--navy-dark);
  color: #94a3b8;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

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

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

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

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

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #60a5fa;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  color: #3b82f6;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: #e2e8f0;
  font-weight: 600;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.82rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 30px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #94a3b8;
}

/* ==========================================================================
   Sticky Mobile Call & WhatsApp Bar
   ========================================================================== */

.mobile-bottom-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--white);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  border-top: 1px solid var(--slate-200);
}

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

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  min-height: 48px;
}

.mobile-bar-call {
  background-color: var(--primary);
  color: var(--white);
}

.mobile-bar-call:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.mobile-bar-book {
  background-color: var(--slate-800);
  color: var(--white);
}

.mobile-bar-book:hover {
  background-color: var(--slate-900);
  color: var(--white);
}

.mobile-bar-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

/* ==========================================================================
   Mobile Nav Drawer
   ========================================================================== */

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 320px;
  background-color: var(--white);
  z-index: 1100;
  box-shadow: var(--shadow-xl);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

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

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate-200);
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--slate-700);
  cursor: pointer;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  padding: 8px 0;
  display: block;
}

.mobile-drawer-link:hover {
  color: var(--primary);
}

.mobile-drawer-sublinks {
  padding-left: 14px;
  border-left: 2px solid var(--slate-200);
  margin-top: 6px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer-sublink {
  font-size: 0.88rem;
  color: var(--slate-600);
  display: block;
}

.mobile-drawer-sublink:hover {
  color: var(--primary);
}

@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

/* ==========================================================================
   TV Repair Images Styling
   ========================================================================== */

/* Hero Repair Workbench Badge */
.hero-bench-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-top: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-bench-thumb {
  width: 72px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.hero-bench-info {
  flex: 1;
  min-width: 0;
}

.hero-bench-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-bench-desc {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.4;
  margin-top: 2px;
}

/* Service Card Image Headers */
.service-card-media {
  position: relative;
  width: calc(100% + 56px);
  margin: -28px -28px 18px -28px;
  height: 175px;
  overflow: hidden;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  background-color: var(--slate-100);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(10, 17, 40, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Workshop Diagnostics Gallery */
.workshop-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.workshop-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.workshop-card-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background-color: var(--slate-100);
}

.workshop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.workshop-card:hover .workshop-card-media img {
  transform: scale(1.05);
}

.workshop-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.workshop-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.workshop-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--slate-900);
}

.workshop-card-body p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.workshop-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
  border-top: 1px solid var(--slate-100);
  padding-top: 12px;
}

/* Experience Section Image Integration */
.experience-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 768px) {
  .experience-box-grid {
    grid-template-columns: 1fr 320px;
  }
}

.experience-media-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  position: relative;
}

.experience-media-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.experience-media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 17, 40, 0.9) 0%, transparent 100%);
  color: #fff;
  padding: 16px 14px 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Experience Card Component Styles */
.experience-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.experience-lead-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.experience-badge-num {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.experience-content {
  flex: 1;
  min-width: 240px;
}

.experience-content h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.experience-content p {
  color: var(--slate-600);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.experience-warranty-box {
  background-color: var(--accent-amber-bg);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #92400e;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Contact Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.contact-card {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.contact-card-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-card h4 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 10px;
  line-height: 1.5;
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Pre-footer Callout CTA Group */
.prefooter-cta-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Comprehensive Responsive Layout & Mobile Text Adjustments
   ========================================================================== */

/* Tablet & Smaller Screens (max-width: 991px) */
@media (max-width: 991px) {
  .header-container {
    height: 68px;
  }

  .hero-grid {
    gap: 32px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Mobile Devices & Small Tablets (max-width: 767px) */
@media (max-width: 767px) {
  /* Container Padding */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Top Bar */
  .top-bar {
    padding: 6px 0;
    font-size: 0.78rem;
  }

  .top-bar-inner {
    justify-content: center;
    gap: 6px;
  }

  .top-bar-right {
    display: none;
  }

  .top-bar-left {
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  /* Header */
  .header-container {
    height: 62px;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
    border-radius: var(--radius-sm);
  }

  .logo-name {
    font-size: 1.18rem;
    letter-spacing: -0.01em;
  }

  .logo-tagline {
    font-size: 0.68rem;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-header-call {
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  /* Hero Section */
  .hero {
    padding: 32px 0 38px;
  }

  .hero-badge-pill {
    font-size: 0.76rem;
    padding: 5px 12px;
    margin-bottom: 1rem;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }

  .hero-trust-pills {
    gap: 6px;
    margin-bottom: 1.25rem;
  }

  .trust-pill {
    font-size: 0.78rem;
    padding: 4px 10px;
    gap: 6px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.25rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 0.98rem;
  }

  .hero-notice {
    font-size: 0.78rem;
    padding-left: 8px;
    margin-top: 0.75rem;
  }

  .hero-bench-badge {
    padding: 10px 12px;
    gap: 10px;
    margin-top: 1rem;
  }

  .hero-bench-thumb {
    width: 58px;
    height: 44px;
  }

  .hero-bench-title {
    font-size: 0.82rem;
  }

  .hero-bench-desc {
    font-size: 0.74rem;
  }

  .hero-card {
    padding: 20px 16px;
  }

  .hero-card-header {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .hero-card-title {
    font-size: 1.16rem;
  }

  .hero-card-subtitle {
    font-size: 0.82rem;
  }

  /* Trust Highlights Strip */
  .trust-strip {
    padding: 16px 0;
  }

  .trust-strip-grid {
    gap: 12px 10px;
  }

  .trust-item {
    gap: 10px;
  }

  .trust-item-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .trust-item-title {
    font-size: 0.84rem;
    margin-bottom: 2px;
  }

  .trust-item-desc {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  /* Section Padding & Typography */
  .section {
    padding: 38px 0;
  }

  .section-header {
    margin-bottom: 22px;
  }

  .section-subtitle {
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
  }

  .section-header p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  /* Service Cards */
  .services-grid {
    gap: 16px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-card-media {
    width: calc(100% + 32px);
    margin: -20px -16px 14px -16px;
    height: 160px;
  }

  .service-card-tag {
    font-size: 0.68rem;
    padding: 3px 8px;
    top: 10px;
    right: 10px;
  }

  .service-card-icon {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

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

  .service-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .service-card-link {
    font-size: 0.85rem;
  }

  /* Workshop Diagnostics Gallery */
  .workshop-gallery-grid {
    gap: 16px;
  }

  .workshop-card-media {
    height: 160px;
  }

  .workshop-badge {
    font-size: 0.68rem;
    padding: 2px 8px;
    bottom: 10px;
    left: 10px;
  }

  .workshop-card-body {
    padding: 14px;
  }

  .workshop-card-body h4 {
    font-size: 1.02rem;
    margin-bottom: 6px;
  }

  .workshop-card-body p {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }

  .workshop-card-meta {
    font-size: 0.76rem;
    padding-top: 10px;
  }

  /* Experience & Warranty Section */
  .experience-card {
    padding: 20px 16px;
  }

  .experience-box-grid {
    gap: 20px;
  }

  .experience-lead-wrap {
    gap: 14px;
  }

  .experience-badge-num {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .experience-content h2 {
    font-size: 1.22rem;
    margin-bottom: 6px;
  }

  .experience-content p {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .experience-warranty-box {
    padding: 12px 14px;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .experience-media-wrap img {
    height: 185px;
  }

  .experience-media-caption {
    font-size: 0.74rem;
    padding: 12px 10px 8px;
  }

  /* Common Problems Grid */
  .problems-grid {
    gap: 10px;
  }

  .problem-card {
    padding: 12px 12px;
    gap: 10px;
  }

  .problem-icon {
    width: 32px;
    height: 32px;
    font-size: 0.88rem;
  }

  .problem-content h4 {
    font-size: 0.92rem;
    margin-bottom: 2px;
  }

  .problem-content p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Process Steps */
  .process-grid {
    gap: 14px;
  }

  .process-card {
    padding: 20px 16px;
  }

  .process-step-num {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .process-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .process-card p {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  /* Booking Form Controls */
  .booking-form-wrapper {
    padding: 20px 16px;
  }

  .form-label {
    font-size: 0.84rem;
    margin-bottom: 4px;
  }

  .form-control {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    padding: 10px 12px;
  }

  .form-help {
    font-size: 0.75rem;
    margin-top: 4px;
  }

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

  .btn-form-submit {
    padding: 13px 18px;
    font-size: 0.98rem;
  }

  /* FAQ Accordion */
  .faq-item {
    margin-bottom: 8px;
  }

  .faq-question {
    padding: 13px 15px;
    font-size: 0.92rem;
    line-height: 1.35;
    gap: 10px;
  }

  .faq-toggle-icon {
    font-size: 1.15rem;
  }

  .faq-answer {
    padding: 0 15px 14px;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  /* Pre-Footer Callout */
  .prefooter-callout {
    padding: 36px 0;
  }

  .prefooter-callout h2 {
    font-size: 1.32rem;
    margin-bottom: 8px;
  }

  .prefooter-callout p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .prefooter-cta-group {
    flex-direction: column;
    gap: 10px;
  }

  .prefooter-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 0.98rem;
  }

  /* Footer */
  .footer {
    padding: 36px 0 20px;
    font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 24px;
  }

  .footer h3, .footer h4 {
    font-size: 1.02rem;
    margin-bottom: 10px;
  }

  .footer-links li {
    margin-bottom: 7px;
    font-size: 0.84rem;
  }

  .footer-contact-item {
    margin-bottom: 10px;
    gap: 10px;
  }

  .footer-contact-item a {
    font-size: 1.02rem;
  }

  .footer-disclaimer-box {
    padding: 12px 14px;
    font-size: 0.76rem;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .footer-bottom {
    padding-top: 16px;
    font-size: 0.75rem;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }

  /* Sticky Mobile Bottom Bar */
  .mobile-bottom-bar {
    min-height: 52px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-bar-btn {
    padding: 10px 8px;
    font-size: 0.85rem;
    min-height: 48px;
  }

  .mobile-bar-btn svg {
    width: 17px;
    height: 17px;
  }

  /* Internal Pages (Service, Brand, Location) */
  .page-header {
    padding: 32px 0 36px;
  }

  .page-header h1 {
    font-size: clamp(1.45rem, 3.5vw + 0.6rem, 2.15rem);
    margin-bottom: 8px;
  }

  .page-header p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .breadcrumbs {
    font-size: 0.78rem;
    gap: 6px;
    margin-bottom: 10px;
  }

  .content-body h2 {
    font-size: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .content-body p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
  }

  .content-body ul {
    padding-left: 18px;
    margin-bottom: 1rem;
  }

  .content-body ul li {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 0.45rem;
  }

  .sidebar-card {
    padding: 18px 16px;
    margin-bottom: 18px;
  }

  .sidebar-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
}

/* Mobile Phones (max-width: 575px) */
@media (max-width: 575px) {
  /* Header Compact Actions */
  .header-actions #whatsapp-cta span {
    display: none;
  }

  .header-actions #whatsapp-cta {
    padding: 8px 10px;
    min-width: 38px;
    height: 38px;
    justify-content: center;
  }

  .btn-header-call {
    padding: 7px 11px;
    font-size: 0.84rem;
  }

  /* Brand Grid */
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .brand-card {
    padding: 10px 8px;
    min-height: 64px;
    font-size: 0.84rem;
  }

  .brand-card-sub {
    font-size: 0.68rem;
    margin-top: 2px;
  }

  .brand-disclaimer {
    padding: 12px 14px;
    font-size: 0.78rem;
    line-height: 1.45;
    margin-top: 18px;
  }

  /* Service Areas Grid */
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .area-badge-card {
    padding: 10px 10px;
    font-size: 0.82rem;
    gap: 8px;
  }

  .area-pin-icon {
    font-size: 0.92rem;
  }

  /* Contact Cards Grid */
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
  }

  .contact-card {
    padding: 16px 14px;
  }

  .contact-card h4 {
    font-size: 1rem;
  }

  .contact-card p {
    font-size: 0.86rem;
  }

  .contact-card a {
    font-size: 1rem;
  }

  /* Form Layout */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Extra Compact Screens (max-width: 380px) */
@media (max-width: 380px) {
  .logo-name {
    font-size: 1.05rem;
  }

  .btn-header-call span {
    display: none;
  }

  .btn-header-call {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .mobile-bar-btn {
    font-size: 0.78rem;
    padding: 10px 4px;
    gap: 4px;
  }
}


