/* ==========================================================================
   Ashok LED TV Repairing Jaipur - Design System & Styles
   High-converting, Mobile-First Local Service Website
   ========================================================================== */

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

:root {
  /* Brand Palette */
  --primary-navy: #0b1528;
  --primary-navy-dark: #060d1b;
  --primary-navy-light: #162444;
  --secondary-navy: #1f3158;
  
  --accent-amber: #f59e0b;
  --accent-amber-hover: #d97706;
  --accent-gold: #ffb703;
  
  --accent-green: #25D366;
  --accent-green-dark: #1ea952;
  --accent-green-light: #e8f9ee;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-subtle: rgba(255, 255, 255, 0.12);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -3px rgba(11, 21, 40, 0.12), 0 4px 6px -4px rgba(11, 21, 40, 0.05);
  --shadow-glow-amber: 0 0 25px rgba(245, 158, 11, 0.35);
  --shadow-glow-green: 0 0 25px rgba(37, 211, 102, 0.35);
  
  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  padding-bottom: 70px; /* Space for mobile sticky action bar */
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0b1d3a;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}

.brand-title span {
  color: #f59e0b;
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #0b1d3a;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-amber);
  border-radius: 2px;
}

.header-cta-group {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-call-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  color: #0b1d3a;
  transition: var(--transition-fast);
}

.header-call-pill:hover {
  background-color: #0b1d3a;
  color: #ffffff;
  border-color: #0b1d3a;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 24px;
  background: transparent;
  padding: 0;
  border: none;
  z-index: 1002;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0b1d3a;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1001;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.35s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 5rem 1.5rem 2rem;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1000;
  display: none;
}

.mobile-overlay.show {
  display: block;
}

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

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-contact {
  margin-top: auto;
  background: #f1f5f9;
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.mobile-drawer-contact h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--primary-navy);
}

.mobile-drawer-contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Hero Section - Exactly matching Screenshot 1
   ========================================================================== */
.hero-section {
  background-color: var(--primary-navy);
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(37, 211, 102, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0b1528 0%, #060d1b 100%);
  color: #ffffff;
  padding: 2.25rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 30px 30px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  pointer-events: none;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-headline {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.03em;
}

.hero-subheadline {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--accent-amber);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #e2e8f0;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

/* Feature Checkmarks list */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.feature-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--accent-amber);
  color: #0b1528;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Hero CTA Buttons */
.hero-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
}

.btn-hero-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: #f59e0b;
  color: #0b1528;
  padding: 1.05rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  transition: all var(--transition-fast);
}

.btn-hero-call:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.55);
}

.btn-hero-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--accent-green);
  color: #ffffff;
  padding: 1.05rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
}

.btn-hero-whatsapp:hover {
  background-color: var(--accent-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.hero-image-wrapper {
  display: none;
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
}

.hero-stat-floating {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: rgba(11, 21, 40, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}

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

.hero-stat-text {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* ==========================================================================
   Trust Bar & Quick Highlights
   ========================================================================== */
.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
}

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

.trust-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
}

.trust-box-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: #0b1d3a;
}

.trust-box-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.trust-box-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Brand Logos & Independent Disclaimer (Screenshot 2 Match)
   ========================================================================== */
.brands-section {
  padding: 3rem 0;
  background-color: #ffffff;
  text-align: center;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.stars-gold {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0b2545;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2rem;
}

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

.brand-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.brand-card:hover {
  background: #ffffff;
  border-color: #f59e0b;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.brand-logo-icon {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0b1d3a;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.brand-card span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
}

/* Legal Disclaimer Box - As shown in Screenshot 2 */
.disclaimer-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 2rem auto;
  max-width: 750px;
  text-align: left;
}

.disclaimer-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0b2545;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.disclaimer-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
}

/* Calling Line Card - Screenshot 2 */
.support-card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 500px;
  margin: 1.5rem auto 0;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.support-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #eff6ff;
  color: #0b2545;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.support-title-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.25rem;
}

.support-phone-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b2545;
  display: block;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.support-caption {
  font-size: 0.8rem;
  color: #64748b;
}

/* ==========================================================================
   Services & Issues Section
   ========================================================================== */
.services-section {
  padding: 3.5rem 0;
  background: #f1f5f9;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

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

.service-badge {
  display: inline-block;
  align-self: flex-start;
  background: #eff6ff;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b1528;
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card-features {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-card-features li {
  font-size: 0.85rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-features li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 800;
}

.service-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.btn-service-learn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: #0b1528;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  transition: all 0.2s ease;
  text-decoration: none;
  flex: 1;
  text-align: center;
}

.btn-service-learn:hover {
  background: #e2e8f0;
  color: #0b1528;
  border-color: #94a3b8;
}

.btn-service-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background: #0b1528;
  border: 1px solid #0b1528;
  transition: all 0.2s ease;
  text-decoration: none;
  flex: 1;
  text-align: center;
}

.btn-service-call:hover {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #0b1528;
}

.service-price {
  font-size: 0.85rem;
  color: #64748b;
}

.service-price strong {
  font-size: 1.15rem;
  color: #0b1528;
}

.btn-service-book {
  background: #0b1528;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-service-book:hover {
  background: #f59e0b;
  color: #0b1528;
}

/* ==========================================================================
   Quick Diagnostic / Booking Estimator
   ========================================================================== */
.booking-section {
  padding: 3.5rem 0;
  background: #ffffff;
}

.booking-card-wrapper {
  background: #0b1528;
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.booking-header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.booking-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.booking-header p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-amber);
  background: rgba(255, 255, 255, 0.15);
}

.form-control option {
  background: #0b1528;
  color: #ffffff;
}

.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f59e0b;
  color: #0b1528;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

.btn-form-submit:hover {
  background: #d97706;
}

/* ==========================================================================
   Jaipur Service Areas
   ========================================================================== */
.areas-section {
  padding: 3.5rem 0;
  background: #f8fafc;
}

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

.area-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.area-highlight {
  border-color: #f59e0b;
  background: #fffbeb;
  color: #92400e;
  font-weight: 700;
}

/* ==========================================================================
   Reviews & Testimonials
   ========================================================================== */
.reviews-section {
  padding: 3.5rem 0;
  background: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.review-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
}

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

.reviewer-name {
  font-weight: 700;
  font-size: 1rem;
  color: #0b1528;
}

.reviewer-loc {
  font-size: 0.8rem;
  color: #64748b;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #334155;
  font-style: italic;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 3.5rem 0;
  background: #f8fafc;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.25rem;
  text-align: left;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  color: #0b1528;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-icon {
  font-size: 1.2rem;
  color: #64748b;
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.25rem;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--primary-navy);
  color: #cbd5e1;
  padding: 3rem 0 2rem;
  border-top: 4px solid var(--accent-amber);
}

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

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

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

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

.footer-links a:hover {
  color: var(--accent-amber);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: #64748b;
}

/* ==========================================================================
   MOBILE STICKY ACTION BAR (Screenshot 1 & 2 Exact Match)
   Fixed split 50/50 dual buttons: Call Now (Dark) + WhatsApp (Green)
   ========================================================================== */
.bottom-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 58px;
  background-color: #0b1528;
  z-index: 9999;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.25);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  height: 100%;
}

.sticky-btn-call {
  background-color: #061122;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-btn-call:active {
  background-color: #000000;
}

.sticky-btn-whatsapp {
  background-color: var(--accent-green);
  color: #ffffff;
}

.sticky-btn-whatsapp:active {
  background-color: var(--accent-green-dark);
}

.sticky-icon {
  font-size: 1.15rem;
  display: inline-block;
}

@media (min-width: 992px) {
  .bottom-sticky-bar {
    display: none; /* Hidden on desktop screens */
  }
}
