/* ==========================================================================
   Bosch Service Centers India - Clean, Simple Design System
   Website: BoschServiceCenters.com
   ========================================================================== */

:root {
  --primary: #0a3d62;
  --primary-dark: #072a44;
  --primary-light: #eaf2f8;
  --accent: #d6001c;
  --accent-hover: #b80018;
  --accent-light: #fdeded;
  --whatsapp: #25D366;
  --whatsapp-hover: #1eb954;
  --whatsapp-light: #e8f9ee;
  --secondary: #2c3e50;
  --text-dark: #1e293b;
  --text-body: #334155;
  --text-muted: #64748b;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  --border-light: #e2e8f0;
  --border-dark: #cbd5e1;
  --success: #15803d;
  --success-bg: #dcfce7;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --transition: all 0.25s ease;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --max-width: 1240px;
}

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

html {
  font-family: var(--font-main);
  scroll-behavior: smooth;
  color: var(--text-body);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  position: relative;
  font-size: 16px;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--accent);
}

ul, ol {
  padding-left: 1.25rem;
}

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

/* ==========================================================================
   Header & Feature Highlights Bar
   ========================================================================== */

.top-bar-features {
  background-color: var(--primary-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0.45rem 0;
  font-size: 0.84rem;
  color: var(--primary-dark);
}

.features-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.feature-pill svg {
  color: var(--accent);
}

.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-badge {
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
}

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

.brand-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}

.nav-links li a:hover, .nav-links li a.active {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary-dark);
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(214, 0, 28, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--primary);
  color: #ffffff !important;
}

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

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-1px);
}

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

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

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

/* ==========================================================================
   Hero Section & Direct Action Card (No Forms)
   ========================================================================== */

.hero-section {
  background: linear-gradient(135deg, #072a44 0%, #0a3d62 60%, #104e7d 100%);
  color: #ffffff;
  padding: 3.25rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 85% 20%, rgba(214, 0, 28, 0.15), transparent 50%);
  pointer-events: none;
}

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

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 1.1rem;
  color: #ffffff !important;
}

.hero-content h1 span.highlight {
  color: #ff8591;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 6px;
}

.hero-content .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-section .breadcrumb-nav {
  margin-bottom: 1.25rem;
}

.hero-section .breadcrumb-nav ol {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  font-size: 0.825rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-section .breadcrumb-nav ol li {
  color: #cbd5e1 !important;
}

.hero-section .breadcrumb-nav ol li a {
  color: #93c5fd !important;
  text-decoration: underline;
}

.hero-section .breadcrumb-nav ol li a:hover {
  color: #ffffff !important;
}

.hero-section .breadcrumb-nav ol li:last-child {
  color: #ffffff !important;
  font-weight: 600;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #f1f5f9 !important;
  margin-bottom: 0.9rem;
}

.hero-lead strong {
  color: #ffffff !important;
  font-weight: 700;
}

.hero-content p {
  font-size: 0.95rem;
  color: #e2e8f0 !important;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.hero-content p strong {
  color: #ffffff !important;
}

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

.hero-key-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.25rem;
  margin-top: 1rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  text-align: center;
}

.metric-card .metric-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff !important;
}

.metric-card .metric-label {
  display: block;
  font-size: 0.75rem;
  color: #cbd5e1 !important;
  margin-top: 0.2rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff !important;
}

.metric-num span {
  color: #ff8591;
}

.metric-label {
  font-size: 0.8rem;
  color: #cbd5e1 !important;
}

.trust-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: var(--text-dark);
}

.trust-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark) !important;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.885rem;
  color: var(--text-body) !important;
  line-height: 1.5;
}

.trust-list li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-list li strong {
  color: var(--primary-dark) !important;
}

/* Direct Action Contact Card (No Form) */
.hero-contact-card {
  background: #ffffff;
  color: var(--text-body);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border-top: 4px solid var(--accent);
}

.hero-contact-card h2 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.hero-contact-card p.card-subtext {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.card-service-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.card-service-highlights li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
}

.card-service-highlights li svg {
  color: var(--success);
  flex-shrink: 0;
}

.card-action-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-charge-note {
  background: #fef2f2;
  border: 1px dashed var(--accent);
  color: var(--accent);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Section Base Styles
   ========================================================================== */

section {
  padding: 3.75rem 0;
}

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

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

.section-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 1.95rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.025rem;
  line-height: 1.6;
}

/* ==========================================================================
   Appliances Categories Grid
   ========================================================================== */

.appliance-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

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

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

.cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.cat-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-header h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.cat-sublist {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.cat-sublist li {
  font-size: 0.875rem;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-body);
}

.cat-sublist li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
}

.cat-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.cat-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ==========================================================================
   Homepage Appliance Directory 2-Column Grid & Content Blocks
   ========================================================================== */

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

@media (max-width: 900px) {
  .directory-grid {
    grid-template-columns: 1fr;
  }
}

.directory-block-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.directory-block-card.span-full {
  grid-column: 1 / -1;
}

.directory-block-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

.directory-block-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.35;
  margin: 0;
}

.directory-block-body {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  flex-grow: 1;
}

.directory-block-body p {
  margin-bottom: 0.85rem;
}

.directory-block-body p:last-child {
  margin-bottom: 0;
}

.directory-block-body strong {
  color: var(--text-dark);
}

.directory-alert-box {
  background: #fef2f2;
  border-left: 3px solid #ef4444;
  color: #991b1b;
  padding: 0.6rem 0.85rem;
  border-radius: 4px;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0.75rem 0;
}

.directory-block-footer {
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.directory-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.directory-link-btn:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ==========================================================================
/* ==========================================================================
   Common Problems Section (Clean Responsive Card Grid: 3 on Desktop, 1 on Mobile)
   ========================================================================== */

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.problem-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.problem-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.problem-index {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.problem-severity {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.problem-card h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  line-height: 1.4;
  margin: 0;
}

.problem-section-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.885rem;
  line-height: 1.55;
}

.problem-section-item strong {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

.problem-section-item p {
  color: var(--text-body);
  margin: 0;
}

.problem-solution-box {
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-top: auto;
  font-size: 0.875rem;
  line-height: 1.55;
}

.problem-solution-box strong {
  display: block;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.825rem;
  margin-bottom: 0.25rem;
}

.problem-solution-box span {
  color: var(--text-dark);
}

/* Backward compatibility for national pages */
.problem-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-info {
  flex: 1;
}

.problem-details {
  border-top: 1px solid var(--border-light);
  padding-top: 0.65rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.problem-detail-row {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-body);
}

.problem-detail-row strong {
  color: var(--primary-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 0.15rem;
}

/* Deep Dive Problem Cards */
.deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.deep-dive-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.deep-dive-card h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.deep-dive-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.deep-dive-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
}

.deep-dive-card ul li {
  font-size: 0.825rem;
  color: var(--text-body);
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.1rem;
}

.deep-dive-card ul li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0.2rem;
  font-weight: bold;
}

.deep-dive-card ol {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.deep-dive-card ol li {
  font-size: 0.825rem;
  color: var(--text-body);
  padding: 0.2rem 0;
}

.deep-dive-card .alert-note {
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  padding: 0.65rem 0.85rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.825rem;
  color: var(--primary-dark);
  margin-top: 0.5rem;
}

/* Error Codes Grid */
.error-codes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.error-code-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: var(--transition);
}

.error-code-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.error-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.error-badge {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.error-code-card h4 {
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 0.45rem;
}

.error-item {
  margin-bottom: 0.6rem;
  font-size: 0.825rem;
  line-height: 1.45;
}

.error-item strong {
  display: block;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.error-item p {
  color: var(--text-body);
  margin: 0;
}

.error-item ul {
  list-style: none;
  padding-left: 0.85rem;
  margin: 0;
}

.error-item ul li {
  position: relative;
  padding: 0.15rem 0;
  color: var(--text-body);
}

.error-item ul li::before {
  content: "-";
  position: absolute;
  left: -0.75rem;
  color: var(--text-muted);
}

/* Parts Price Table */
.price-table-wrap {
  width: 100%;
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin: 1.75rem 0 1rem 0;
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.price-table th {
  background: var(--primary);
  color: #ffffff;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  vertical-align: middle;
}

.price-table tbody tr:nth-child(even) {
  background-color: #fcfdfe;
}

.price-table tbody tr:hover {
  background-color: var(--primary-light);
}

.price-tag {
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}

.price-note-box {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1rem 0 1.5rem 0;
  font-size: 0.85rem;
  color: #92400e;
  line-height: 1.5;
}

.price-factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.price-factor-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.price-factor-card h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.price-factor-card p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.flow-step-box {
  background: var(--primary-light);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.25rem;
}

.flow-step-box h4 {
  color: var(--primary-dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.flow-step-box p {
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.55;
}

/* ==========================================================================
   Parts & Components Section
   ========================================================================== */

.parts-overview-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.parts-notice {
  background-color: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 0.85rem 1.15rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #92400e;
}

.parts-appliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.appliance-part-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.appliance-part-card h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.appliance-part-card ul {
  list-style: none;
  padding: 0;
}

.appliance-part-card li {
  font-size: 0.85rem;
  padding: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.appliance-part-card li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--primary);
}

/* Dedicated Parts Card for Category Pages */
.parts-item-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.part-item-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
}

.part-item-card h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.part-item-card p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Part Price Information Box */
.part-price-box {
  background: var(--primary-light);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.part-price-box h4 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.part-price-box p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.55;
}

/* ==========================================================================
   Detailed Appliance Specific Sections
   ========================================================================== */

.appliance-detail-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.25rem;
  align-items: start;
}

.detail-content h2 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.detail-lead {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.detail-content p {
  margin-bottom: 1rem;
  font-size: 0.925rem;
  color: var(--text-body);
}

.detail-troubles-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.detail-troubles-card h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.trouble-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.trouble-tag {
  background: var(--bg-alt);
  color: var(--text-dark);
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.service-workflow-mini {
  background: var(--primary-light);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--primary-dark);
}

.service-workflow-mini ol {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
}

.service-workflow-mini li {
  margin-bottom: 0.35rem;
}
/* ==========================================================================
   Appliance Type Grid & Service Cards (2 Cards per row Desktop, 1 on Mobile)
   ========================================================================== */

.appliance-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .appliance-types-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.type-service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary);
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

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

.type-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.type-service-card h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  line-height: 1.35;
  margin: 0;
}

.type-intro-p {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.type-info-block {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
}

.type-info-block h4 {
  font-size: 0.9rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.type-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.type-bullet-list li {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 1.15rem;
}

.type-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
}

.type-text-item {
  font-size: 0.885rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

.type-card-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   Dedicated Local Customer & Situation Sections
   ========================================================================== */

.local-customer-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.local-customer-box h2 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.local-need-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.customer-situation-card {
  background: #f0f7ff;
  border: 1px solid #bae6fd;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.5rem;
  margin: 1.25rem 0;
}

.customer-situation-card h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.customer-situation-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.tanglish-badge {
  display: inline-block;
  background: #fef2f2;
  color: var(--accent);
  border: 1px solid #fecaca;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.tanglish-quote {
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   Service Process Section (7 Steps)
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.process-step-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.step-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 34px;
  height: 34px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.process-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.process-step-card h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
  padding-right: 2.5rem;
}

.process-step-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ==========================================================================
   Service Charge Section
   ========================================================================== */

.pricing-banner {
  background: #ffffff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  max-width: 880px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  align-items: center;
}

.pricing-callout {
  text-align: center;
  padding: 1.5rem;
  background: var(--primary-light);
  border-radius: var(--radius-md);
}

.callout-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.callout-price {
  font-size: 2.85rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.1;
  margin: 0.5rem 0;
}

.callout-terms {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-details h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.pricing-details p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--text-body);
}

.pricing-points {
  list-style: none;
  padding: 0;
  margin-top: 0.85rem;
}

.pricing-points li {
  font-size: 0.875rem;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-points li svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 1.35rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   India Coverage & Location List
   ========================================================================== */

.region-accordions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.35rem;
  margin-bottom: 2rem;
}

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

.region-card h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--primary-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.region-states {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.city-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.city-tag {
  background: var(--bg-alt);
  color: var(--text-dark);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.785rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.city-tag:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.all-states-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.all-states-box h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.state-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.state-pill {
  font-size: 0.8rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  color: var(--text-body);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 1.15rem;
}

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

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1.2rem 1.2rem;
  font-size: 0.885rem;
  color: var(--text-body);
  line-height: 1.6;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

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

/* ==========================================================================
   Official Bosch Support Section
   ========================================================================== */

.official-support-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary);
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  max-width: 960px;
  margin: 0 auto;
}

.official-support-box h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.65rem;
}

.official-support-box p {
  font-size: 0.925rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.support-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  background: var(--bg-alt);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.support-detail-item {
  font-size: 0.885rem;
  color: var(--text-dark);
}

.support-detail-item strong {
  display: block;
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.support-detail-item a {
  color: var(--primary);
  word-break: break-all;
}

.support-detail-item a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Footer & Notice
   ========================================================================== */

.site-footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding-top: 3.25rem;
  font-size: 0.9rem;
}

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

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--accent);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.45rem;
}

.footer-col ul li a {
  color: #cbd5e1;
  font-size: 0.85rem;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.footer-disclaimer-box {
  background-color: #1e293b;
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.35rem;
  border-left: 4px solid var(--accent);
  margin-bottom: 2rem;
  font-size: 0.825rem;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-disclaimer-box strong {
  color: #f1f5f9;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 1.15rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
}

/* ==========================================================================
   FLOATING BUTTONS: WHATSAPP (LEFT) & CALL (RIGHT)
   Fixed position, visible on mobile and desktop
   ========================================================================== */

.floating-whatsapp-btn {
  position: fixed;
  left: 20px;
  bottom: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  background-color: #1eb954;
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

.floating-call-btn {
  position: fixed;
  right: 20px;
  bottom: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(214, 0, 28, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.floating-call-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(214, 0, 28, 0.55);
}

.floating-whatsapp-btn svg, .floating-call-btn svg {
  flex-shrink: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1150px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-light);
    gap: 0.85rem;
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  
  .header-actions .btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
  }
  
  .floating-whatsapp-btn {
    left: 12px;
    bottom: 16px;
    padding: 0.65rem 0.95rem;
    font-size: 0.875rem;
  }
  
  .floating-call-btn {
    right: 12px;
    bottom: 16px;
    padding: 0.65rem 0.95rem;
    font-size: 0.875rem;
  }
  
  .hero-section {
    padding: 2.25rem 0;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-key-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  body {
    padding-bottom: 70px;
  }

  .location-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
   Location & Maps Section Styles
   ========================================== */
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.location-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-map-wrap {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.city-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.city-link-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

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

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}
