/* ==========================================================================
   RAGHUPUSHPA ENTERPRISES - GLOBAL STYLESHEET
   Aesthetics: Modern Corporate, Trusted, Premium Glassmorphism UI
   ========================================================================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* --- Root Variables & Themes --- */
:root {
  /* Light Theme Colors (Default) */
  --primary-navy: #0d1e3d;
  --primary-navy-rgb: 13, 30, 61;
  --accent-saffron: #f97316;
  --accent-saffron-rgb: 249, 115, 22;
  --accent-green: #16a34a;
  --accent-green-rgb: 22, 163, 74;
  --bg-main: #f8fafc;
  --bg-secondary: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(13, 30, 61, 0.08);
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  
  /* Shared Tokens */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 20px -5px rgba(13, 30, 61, 0.06), 0 4px 6px -2px rgba(13, 30, 61, 0.03);
  --shadow-lg: 0 20px 40px -15px rgba(13, 30, 61, 0.12), 0 8px 16px -4px rgba(13, 30, 61, 0.06);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

/* Dark Theme overrides */
html.dark {
  --primary-navy: #1e293b;
  --primary-navy-rgb: 30, 41, 59;
  --bg-main: #0f172a;
  --bg-secondary: #1e293b;
  --card-bg: rgba(30, 41, 59, 0.8);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  scroll-behavior: smooth;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
}

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

/* --- Glassmorphism Elements --- */
.glass {
  background: var(--card-bg);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--card-border);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-saffron), var(--primary-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(var(--accent-saffron-rgb), 0.3);
}

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

.logo-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--primary-navy), var(--accent-saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
html.dark .logo-name {
  background: linear-gradient(to right, #ffffff, var(--accent-saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-desc {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  transition: color var(--transition-fast);
  cursor: pointer;
  position: relative;
  padding: 6px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-saffron);
  transition: width var(--transition-fast);
}

.nav-item:hover {
  color: var(--accent-saffron);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.nav-item.active {
  color: var(--accent-saffron);
  font-weight: 600;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Theme Toggle Button */
.btn-toggle {
  background: none;
  border: 1px solid var(--card-border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.btn-toggle:hover {
  background-color: rgba(var(--primary-navy-rgb), 0.05);
  transform: scale(1.05);
}

/* Language Selector */
.lang-selector {
  border: 1px solid var(--card-border);
  background: var(--bg-secondary);
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  outline: none;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-main);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-saffron-rgb), 0.1) 0%, rgba(255,255,255,0) 70%);
}

.hero-shape-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-green-rgb), 0.08) 0%, rgba(255,255,255,0) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 20px;
}
html.dark .hero-content h1 {
  color: #ffffff;
}

.hero-content .highlight-text {
  color: var(--accent-saffron);
  background: linear-gradient(135deg, var(--accent-saffron), #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-saffron), #ea580c);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(var(--accent-saffron-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(var(--accent-saffron-rgb), 0.4);
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.4);
}

.btn-call {
  background-color: var(--primary-navy);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(var(--primary-navy-rgb), 0.2);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(var(--primary-navy-rgb), 0.3);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--card-border);
}

.btn-secondary:hover {
  background-color: rgba(var(--primary-navy-rgb), 0.05);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

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

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 4px;
}
html.dark .stat-num {
  color: #ffffff;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Badge Card */
.hero-image-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge-card {
  width: 100%;
  max-width: 380px;
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.hero-badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-saffron), var(--accent-green));
}

.badge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.badge-verify-icon {
  color: var(--accent-green);
  font-size: 28px;
}

.badge-offer-label {
  background-color: rgba(var(--accent-saffron-rgb), 0.1);
  color: var(--accent-saffron);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
}

.badge-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}
html.dark .badge-body h3 {
  color: #ffffff;
}

.badge-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.badge-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-saffron);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.badge-price span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.badge-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.badge-footer span.material-icons {
  color: var(--accent-green);
}

/* ==========================================================================
   SEARCH & INTERACTIVE UTILITIES HERO
   ========================================================================== */
.search-container-box {
  margin-top: -30px;
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  border-radius: 20px;
}

.search-bar-wrapper {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border-radius: 14px;
  padding: 6px 12px 6px 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.search-bar-wrapper:focus-within {
  border-color: var(--accent-saffron);
  box-shadow: 0 0 0 4px rgba(var(--accent-saffron-rgb), 0.15);
}

.search-icon-google {
  color: var(--text-muted);
  font-size: 24px;
  margin-right: 12px;
}

.search-input-field {
  flex: 1;
  border: none;
  background: none;
  height: 48px;
  font-size: 16px;
  color: var(--text-main);
  outline: none;
}

.btn-search-clear {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  margin-right: 12px;
  display: none;
}

/* Instant suggestions dropdown */
.search-suggestions-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 10px;
  right: 10px;
  border-radius: var(--radius-md);
  padding: 12px;
  display: none;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  max-height: 350px;
  overflow-y: auto;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.suggestion-item:hover {
  background-color: rgba(var(--accent-saffron-rgb), 0.08);
}

.suggestion-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(var(--primary-navy-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
}
html.dark .suggestion-icon {
  background-color: rgba(255,255,255,0.08);
  color: #ffffff;
}

.suggestion-info {
  display: flex;
  flex-direction: column;
}

.suggestion-name {
  font-weight: 600;
  font-size: 15px;
}

.suggestion-category {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICE CATEGORIES SECTION
   ========================================================================== */
.section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 12px;
}
html.dark .section-header h2 {
  color: #ffffff;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-tab-btn {
  padding: 10px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  color: var(--text-main);
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-tab-btn:hover {
  background-color: rgba(var(--primary-navy-rgb), 0.05);
}

.category-tab-btn.active {
  background: var(--primary-navy);
  color: white;
  border-color: var(--primary-navy);
  box-shadow: 0 4px 10px rgba(var(--primary-navy-rgb), 0.2);
}
html.dark .category-tab-btn.active {
  background: var(--accent-saffron);
  color: white;
  border-color: var(--accent-saffron);
}

/* Service Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

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

.service-card-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(var(--accent-saffron-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-saffron);
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.service-card:hover .service-card-icon-box {
  background-color: var(--accent-saffron);
  color: white;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-navy);
}
html.dark .service-card h3 {
  color: #ffffff;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
  font-size: 12px;
}

.service-card-charge {
  font-weight: 700;
  color: var(--accent-green);
  font-size: 14px;
}

.service-card-time {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   SERVICE DETAIL VIEW & DOCUMENT CHECKLIST
   ========================================================================== */
.back-btn-container {
  margin-bottom: 24px;
}

.back-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.back-link-btn:hover {
  color: var(--accent-saffron);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.detail-main-info {
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.detail-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(var(--accent-saffron-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-saffron);
  font-size: 32px;
}

.detail-header h1 {
  font-size: 32px;
  font-weight: 800;
}

.detail-category-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(var(--primary-navy-rgb), 0.08);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.detail-overview-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Info Cards Block */
.detail-info-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.info-block-item {
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.info-block-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.info-block-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
}
html.dark .info-block-val {
  color: #ffffff;
}

.info-block-val.price {
  color: var(--accent-green);
  font-size: 18px;
}

/* Content sub-sections */
.detail-section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-navy);
}
html.dark .detail-section-title {
  color: #ffffff;
}

.detail-text-card {
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  background-color: rgba(var(--primary-navy-rgb), 0.02);
  border: 1px solid var(--card-border);
}

/* Document List Checklist (Readiness Checker) */
.readiness-checker-wrapper {
  margin-bottom: 40px;
}

.checker-header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.checker-summary-badge {
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.checker-summary-badge.complete {
  background-color: rgba(var(--accent-green-rgb), 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(var(--accent-green-rgb), 0.2);
}

.checker-summary-badge.missing {
  background-color: rgba(var(--accent-saffron-rgb), 0.1);
  color: var(--accent-saffron);
  border: 1px solid rgba(var(--accent-saffron-rgb), 0.2);
}

.checker-actions-row {
  display: flex;
  gap: 12px;
}

.btn-check-action {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--card-border);
  background: var(--bg-secondary);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.btn-check-action:hover {
  background-color: rgba(var(--primary-navy-rgb), 0.05);
}

.checklist-items-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-item-card {
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.checklist-item-card:hover {
  background-color: rgba(var(--primary-navy-rgb), 0.01);
  border-color: rgba(var(--accent-saffron-rgb), 0.3);
}

.checklist-checkbox-container {
  margin-top: 2px;
  margin-right: 16px;
}

.checklist-custom-cb {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.checklist-item-card.checked .checklist-custom-cb {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
  color: white;
}

.checklist-item-card.checked .checklist-custom-cb::after {
  content: '✓';
  font-size: 13px;
  font-weight: 800;
}

.checklist-item-info {
  flex: 1;
}

.checklist-item-name {
  font-weight: 600;
  font-size: 15px;
  transition: text-decoration var(--transition-fast);
}

.checklist-item-card.checked .checklist-item-name {
  text-decoration: line-through;
  color: var(--text-muted);
}

.checklist-badges-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.checklist-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.checklist-badge.original {
  background-color: rgba(var(--accent-saffron-rgb), 0.1);
  color: var(--accent-saffron);
}

.checklist-badge.attested {
  background-color: rgba(var(--accent-green-rgb), 0.1);
  color: var(--accent-green);
}

/* Sidebar apply card */
.sidebar-apply-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}

.sidebar-apply-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary-navy);
}
html.dark .sidebar-apply-card h3 {
  color: #ffffff;
}

.sidebar-apply-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.sidebar-price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.sidebar-price-row.total {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-navy);
  border-top: 1px dashed var(--card-border);
  padding-top: 16px;
  margin-top: 16px;
}
html.dark .sidebar-price-row.total {
  color: #ffffff;
}

.sidebar-price-val {
  font-weight: 600;
  color: var(--text-main);
}

.sidebar-price-row.total .sidebar-price-val {
  color: var(--accent-green);
  font-size: 22px;
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* FAQs and service relationships */
.service-faqs {
  margin-bottom: 40px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-accordion-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-accordion-header {
  padding: 18px 24px;
  background: var(--bg-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}

.faq-accordion-header span.arrow {
  transition: transform var(--transition-fast);
}

.faq-accordion-item.active .faq-accordion-header span.arrow {
  transform: rotate(180deg);
}

.faq-accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-fast) ease-out;
  font-size: 14px;
  color: var(--text-muted);
}

.faq-accordion-item.active .faq-accordion-content {
  padding: 16px 24px 24px 24px;
  max-height: 200px;
}

.related-services-wrapper {
  margin-top: 40px;
}

/* ==========================================================================
   COMPARE DOCUMENTS
   ========================================================================== */
.compare-selectors-card {
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.compare-selectors-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.compare-select-field {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  background-color: var(--bg-secondary);
  color: var(--text-main);
  font-size: 15px;
  outline: none;
  font-weight: 500;
}

.compare-vs-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-saffron);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(var(--accent-saffron-rgb), 0.3);
}

.compare-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-secondary);
  font-size: 15px;
}

.compare-table th, .compare-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--card-border);
  vertical-align: top;
}

.compare-table th {
  background-color: rgba(var(--primary-navy-rgb), 0.03);
  font-weight: 700;
  color: var(--primary-navy);
}
html.dark .compare-table th {
  color: #ffffff;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table-feature-label {
  font-weight: 600;
  color: var(--text-muted);
  width: 20%;
}

.compare-table-service-col {
  width: 40%;
}

.compare-doc-list-bullet {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-doc-list-bullet li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.compare-doc-list-bullet li span {
  color: var(--accent-green);
  font-size: 18px;
}

/* ==========================================================================
   ELIGIBILITY CHECKER
   ========================================================================== */
.eligibility-box-card {
  max-width: 650px;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--radius-lg);
}

.eligibility-question-flow {
  margin-top: 24px;
}

.eligibility-q-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.eligibility-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.eligibility-option-btn {
  padding: 16px 20px;
  border: 1px solid var(--card-border);
  background: var(--bg-secondary);
  color: var(--text-main);
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.eligibility-option-btn:hover {
  background-color: rgba(var(--accent-saffron-rgb), 0.05);
  border-color: var(--accent-saffron);
}

.eligibility-option-btn.selected {
  background-color: rgba(var(--accent-saffron-rgb), 0.1);
  border-color: var(--accent-saffron);
  font-weight: 600;
}

.eligibility-result-banner {
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  display: none;
  margin-top: 30px;
}

.eligibility-result-banner.eligible {
  background-color: rgba(var(--accent-green-rgb), 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(var(--accent-green-rgb), 0.2);
}

.eligibility-result-banner.ineligible {
  background-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.eligibility-result-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

/* ==========================================================================
   COST CALCULATOR
   ========================================================================== */
.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.calculator-selector-card {
  padding: 32px;
  border-radius: var(--radius-lg);
}

.calculator-services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 12px;
  margin-bottom: 24px;
}

.calc-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  cursor: pointer;
  background-color: var(--bg-secondary);
  transition: all var(--transition-fast);
}

.calc-service-item:hover {
  border-color: var(--accent-saffron);
  background-color: rgba(var(--accent-saffron-rgb), 0.01);
}

.calc-service-item.selected {
  border-color: var(--accent-saffron);
  background-color: rgba(var(--accent-saffron-rgb), 0.05);
}

.calc-service-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-cb-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-service-item.selected .calc-cb-box {
  background-color: var(--accent-saffron);
  border-color: var(--accent-saffron);
  color: white;
}

.calc-service-item.selected .calc-cb-box::after {
  content: '✓';
  font-size: 11px;
  font-weight: 800;
}

.calc-service-name {
  font-weight: 600;
  font-size: 15px;
}

.calc-service-pricing {
  text-align: right;
}

.calc-price-primary {
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-green);
}

.calc-price-breakdown {
  font-size: 11px;
  color: var(--text-muted);
}

/* Calculator Summary Box */
.calculator-summary-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}

.calc-summary-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary-navy);
}
html.dark .calc-summary-title {
  color: #ffffff;
}

.calc-selected-services-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 20px;
}

.calc-selected-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.calc-selected-item-name {
  font-weight: 500;
  color: var(--text-main);
}

.calc-selected-item-price {
  font-weight: 600;
}

.calc-toggle-tatkal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.calc-toggle-label {
  font-size: 14px;
  font-weight: 600;
}

.calc-toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.calc-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.calc-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--text-muted);
  transition: .4s;
  border-radius: 34px;
}

.calc-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.calc-toggle-switch input:checked + .calc-toggle-slider {
  background-color: var(--accent-saffron);
}

.calc-toggle-switch input:checked + .calc-toggle-slider:before {
  transform: translateX(24px);
}

.calc-pricing-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

/* ==========================================================================
   APPLY ONLINE FORM
   ========================================================================== */
.apply-form-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--radius-lg);
}

.form-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
}

.form-input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  background-color: var(--bg-secondary);
  color: var(--text-main);
  outline: none;
  font-size: 15px;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-saffron);
}

/* Custom upload files area */
.file-upload-drag-area {
  border: 2px dashed var(--card-border);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background-color: rgba(var(--primary-navy-rgb), 0.01);
}

.file-upload-drag-area:hover {
  border-color: var(--accent-saffron);
  background-color: rgba(var(--accent-saffron-rgb), 0.02);
}

.upload-icon {
  font-size: 40px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.upload-text {
  font-size: 14px;
  color: var(--text-muted);
}

.upload-highlight {
  color: var(--accent-saffron);
  font-weight: 600;
}

.uploaded-files-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uploaded-file-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background-color: rgba(var(--accent-green-rgb), 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(var(--accent-green-rgb), 0.2);
  font-size: 13px;
  font-weight: 500;
}

.btn-remove-uploaded-file {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
}

/* ==========================================================================
   ADMIN PANEL DASHBOARD
   ========================================================================== */
.admin-dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  margin-top: 30px;
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-nav-btn {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-align: left;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-fast);
}

.admin-nav-btn:hover {
  background-color: rgba(var(--primary-navy-rgb), 0.05);
  color: var(--text-main);
}

.admin-nav-btn.active {
  background-color: var(--primary-navy);
  color: white;
}
html.dark .admin-nav-btn.active {
  background-color: var(--accent-saffron);
}

.admin-content-area {
  border-radius: var(--radius-lg);
  padding: 32px;
}

.admin-view-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 20px;
}

.admin-view-header h2 {
  font-size: 24px;
  font-weight: 800;
}

.admin-table-box {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-secondary);
  font-size: 14px;
}

.admin-table th, .admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--card-border);
}

.admin-table th {
  background-color: rgba(var(--primary-navy-rgb), 0.02);
  font-weight: 600;
  color: var(--text-muted);
}

.admin-actions-cell {
  display: flex;
  gap: 8px;
}

.btn-admin-action {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-border);
  background-color: var(--bg-secondary);
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.btn-admin-action:hover {
  background-color: rgba(var(--primary-navy-rgb), 0.05);
}

.btn-admin-action.edit {
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.2);
}

.btn-admin-action.delete {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
}

/* Admin Modals */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  z-index: 1100;
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content-card {
  width: 100%;
  max-width: 650px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 20px;
  font-weight: 800;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-footer {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
}

/* ==========================================================================
   BLOG / UPDATES SECTION
   ========================================================================== */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-img-placeholder {
  height: 160px;
  background: linear-gradient(135deg, rgba(var(--primary-navy-rgb), 0.1), rgba(var(--accent-saffron-rgb), 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  font-size: 40px;
}
html.dark .blog-card-img-placeholder {
  color: white;
}

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

.blog-card-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: rgba(var(--accent-saffron-rgb), 0.1);
  color: var(--accent-saffron);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  align-self: flex-start;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--primary-navy);
}
html.dark .blog-card-title {
  color: #ffffff;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 20px;
}

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

.blog-details-view {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.blog-details-header {
  margin-bottom: 30px;
}

.blog-details-category {
  color: var(--accent-saffron);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  display: block;
}

.blog-details-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.blog-details-meta {
  color: var(--text-muted);
  font-size: 14px;
}

.blog-details-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-main);
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS SECTION
   ========================================================================== */
.reviews-grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.review-card-item {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  background-color: var(--bg-secondary);
}

.review-card-rating {
  color: #fbbf24;
  margin-bottom: 12px;
  font-size: 18px;
}

.review-card-comment {
  font-size: 14px;
  color: var(--text-main);
  flex-grow: 1;
  font-style: italic;
  margin-bottom: 16px;
}

.review-card-user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--card-border);
  padding-top: 12px;
}

.review-card-name {
  font-weight: 600;
  color: var(--primary-navy);
}
html.dark .review-card-name {
  color: white;
}

/* ==========================================================================
   FOOTER SYSTEM & STICKY ACTIONS
   ========================================================================== */
.footer-area {
  background-color: var(--primary-navy);
  color: var(--text-light);
  padding: 60px 0 100px 0; /* Add bottom padding for sticky bar */
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col-about h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col-about p {
  color: rgba(248, 250, 252, 0.7);
  margin-bottom: 20px;
  max-width: 350px;
}

.footer-col-links h4, .footer-col-contact h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 6px;
}

.footer-col-links h4::after, .footer-col-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 30px; height: 2px;
  background-color: var(--accent-saffron);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: rgba(248, 250, 252, 0.7);
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--accent-saffron);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(248, 250, 252, 0.7);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item span.material-icons {
  color: var(--accent-saffron);
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(248, 250, 252, 0.5);
  font-size: 13px;
}

/* Floating & Sticky Action Bars */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 999;
  transition: all var(--transition-fast);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp-btn span.material-icons {
  font-size: 32px;
}

/* Sticky Action Bar (Mobile CTA) */
.sticky-action-bar-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  display: none; /* Shown on mobile only */
  grid-template-columns: repeat(3, 1fr);
  padding: 8px 16px;
  gap: 10px;
  z-index: 1000;
}

.sticky-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  color: white;
  gap: 4px;
}

.sticky-action-btn.call {
  background-color: var(--primary-navy);
}

.sticky-action-btn.whatsapp {
  background-color: #25d366;
}

.sticky-action-btn.apply {
  background-color: var(--accent-saffron);
}

.sticky-action-btn span.material-icons {
  font-size: 18px;
}

/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-image-area {
    order: -1;
  }
  
  .admin-dashboard-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .admin-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  
  .admin-nav-btn {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }
  
  .nav-links {
    display: none; /* Hide standard links */
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 15px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .service-detail-grid, .calculator-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .compare-selectors-grid {
    grid-template-columns: 1fr;
  }
  
  .compare-vs-badge {
    margin: 0 auto;
  }
  
  .detail-info-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .floating-whatsapp-btn {
    bottom: 76px;
  }
  
  .sticky-action-bar-mobile {
    display: grid;
  }
  
  /* Mobile Side Drawer Navigation */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--card-border);
    padding: 24px;
    z-index: 999;
    box-shadow: var(--shadow-md);
  }
}
