/* ==========================================================================
   LCDREPAIRS.IN - Official Stylesheet
   Pure CSS3 • Lightweight • Responsive • Fast Loading
   ========================================================================== */

:root {
  /* Colors */
  --primary: #0056b3;
  --primary-hover: #004085;
  --primary-light: #e8f2fc;
  --dark: #111827;
  --text: #374151;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border: #e5e7eb;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ea952;
  --success-bg: #ecfdf5;
  --success-text: #065f46;

  /* Typography */
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout & Spacing */
  --container-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;

  /* Restrained Shadows */
  --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 -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition: 0.2s ease-in-out;
}

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

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

body {
  font-family: var(--font-stack);
  color: var(--text);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* Clearance for mobile bottom action bar */
}

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

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

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

h1, h2, h3, h4 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Layout & Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

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

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

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

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

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

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--dark);
}

.desktop-nav {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark);
}

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

.header-actions {
  display: none;
  gap: 0.75rem;
  align-items: center;
}

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

.mobile-menu-toggle {
  display: block;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--dark);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-md);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
  }
  .header-actions {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  background-color: var(--bg-light);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.25rem;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.hero-illustration {
  display: flex;
  justify-content: center;
}

.tv-box {
  width: 100%;
  max-width: 480px;
  background-color: #1f2937;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.tv-bezel {
  background-color: #0f172a;
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #374151;
  color: var(--bg-white);
}

.tv-logo-tag {
  font-size: 1.25rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 0.5rem;
}

.tv-desc-tag {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.tv-active-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background-color: rgba(16, 185, 129, 0.2);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 600;
}

.tv-stand {
  width: 110px;
  height: 14px;
  background-color: #4b5563;
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
  position: relative;
  top: 14px;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 0;
  }
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* --------------------------------------------------------------------------
   Trust / Benefits Section
   -------------------------------------------------------------------------- */
.trust-section {
  padding: 4rem 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-white);
  border-color: rgba(0, 86, 179, 0.3);
}

.trust-icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-pill);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon-box svg {
  width: 28px;
  height: 28px;
}

.trust-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

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

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

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

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

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

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

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-link:hover {
  text-decoration: underline;
}

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

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

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

/* --------------------------------------------------------------------------
   Brands Section
   -------------------------------------------------------------------------- */
.brands-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.brand-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.brand-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
}

.brands-disclaimer {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

.brands-disclaimer a {
  color: var(--primary);
  font-weight: 600;
}

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

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

/* --------------------------------------------------------------------------
   Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-section {
  padding: 5rem 0;
  background-color: var(--primary);
  color: var(--bg-white);
}

.why-section h2 {
  color: var(--bg-white);
  text-align: center;
  margin-bottom: 1rem;
}

.why-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.0625rem;
  font-weight: 500;
}

.why-item svg {
  width: 24px;
  height: 24px;
  color: #93c5fd;
  flex-shrink: 0;
}

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

/* --------------------------------------------------------------------------
   How It Works Section
   -------------------------------------------------------------------------- */
.how-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-num {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-pill);
  background-color: var(--primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.how-step-num svg {
  width: 30px;
  height: 30px;
}

.how-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.how-step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   Call / WhatsApp CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  padding: 4.5rem 0;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2rem;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* --------------------------------------------------------------------------
   About Us Section
   -------------------------------------------------------------------------- */
.about-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   Service Locations Section
   -------------------------------------------------------------------------- */
.locations-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.location-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.location-card:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.location-card svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

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

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

/* --------------------------------------------------------------------------
   Repair Booking Form Section
   -------------------------------------------------------------------------- */
.booking-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.booking-box {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.booking-info {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 3rem 2rem;
}

.booking-info h2 {
  color: var(--bg-white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.booking-info-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
}

.booking-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.booking-contact-item svg {
  width: 22px;
  height: 22px;
  color: #93c5fd;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.booking-contact-item strong {
  display: block;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.booking-contact-item p, .booking-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.booking-form-wrap {
  padding: 3rem 2rem;
  background-color: var(--bg-white);
}

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

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

.form-group label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

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

.form-feedback {
  display: none;
  padding: 2rem;
  background-color: var(--success-bg);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
  text-align: center;
}

.form-feedback h3 {
  color: var(--success-text);
  margin-bottom: 0.5rem;
}

.form-feedback p {
  color: #047857;
  margin: 0;
}

@media (min-width: 768px) {
  .booking-box {
    grid-template-columns: 1fr 1.4fr;
  }
  .form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .booking-info, .booking-form-wrap {
    padding: 3.5rem;
  }
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border);
}

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

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

.faq-card.is-active {
  border-color: var(--primary);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-card.is-active .faq-btn svg {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 4.5rem 0 1.5rem;
  border-top: 4px solid var(--primary);
}

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

.footer-brand h3 {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-weight: 600;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.footer-heading {
  color: var(--bg-white);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a:hover {
  color: var(--bg-white);
  text-decoration: underline;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact a:hover {
  color: var(--bg-white);
}

.footer-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #374151;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  font-size: 0.875rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   Mobile Sticky Bottom Action Bar
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--bg-white);
  display: flex;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
  z-index: 999;
}

.mobile-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid var(--border);
  color: var(--dark);
}

.mobile-bar-item:last-child {
  border-right: none;
}

.mobile-bar-item svg {
  width: 18px;
  height: 18px;
}

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

.mobile-bar-whatsapp svg {
  color: var(--whatsapp);
}

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

.mobile-bar-book svg {
  color: var(--bg-white);
}

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