/* ===== SERVIXA HOME - MAIN PREMIUM STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&family=Tiro+Devanagari+Hindi&display=swap');

:root {
  /* Colors */
  --primary: #2563eb;       /* Modern Indigo Blue */
  --primary-dark: #0f172a;  /* Slate 900 */
  --primary-light: #60a5fa; /* Sky Blue */
  --gold: #d97706;          /* Deep Amber Gold */
  --gold-light: #f5c842;    /* Soft Warm Gold */
  --gold-dark: #b45309;     /* Bronze Gold */
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #f1f5f9;
  --gray: #64748b;
  --dark: #090d16;          /* Deep True Dark for backgrounds */
  --text: #1e293b;
  --text-light: #64748b;
  --success: #10b981;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow: 0 10px 25px -3px rgba(15, 23, 42, 0.06), 0 4px 12px -4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 30px -5px rgba(15, 23, 42, 0.1), 0 10px 15px -6px rgba(15, 23, 42, 0.06);
  --shadow-gold-glow: 0 8px 25px -3px rgba(217, 119, 6, 0.35);
  --shadow-blue-glow: 0 8px 25px -3px rgba(37, 99, 235, 0.25);

  /* Borders & Spacing */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  border-radius: 10px;
}

/* ===== ANIMATIONS ===== */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { transform: scale(1.06); box-shadow: 0 8px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

@keyframes pulse-call {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(37,99,235,0.4); }
  50% { transform: scale(1.06); box-shadow: 0 8px 30px rgba(37,99,235,0.6), 0 0 0 10px rgba(37,99,235,0.1); }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: loaderPulse 1.8s infinite ease-in-out;
}

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

.loader-bar {
  width: 160px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 20px;
  animation: loaderProgress 1.4s ease-in-out infinite;
}

@keyframes loaderProgress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ===== TOP STRIP ===== */
.contact-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1001;
  position: relative;
}

.contact-strip a {
  color: var(--primary-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.contact-strip a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* ===== GLASSMORPHISM NAV ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

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

.nav-logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 1px;
}

.nav-logo-text .tagline {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.06);
}

.nav-links a .nav-icon { font-size: 16px; }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-blue-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(37, 99, 235, 0.45) !important;
  opacity: 0.95;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===== SECTIONS & HEADINGS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title .gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.divider {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 10px;
  margin: 12px auto 16px;
}

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 32px; }

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: var(--shadow-blue-glow);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px -4px rgba(37, 99, 235, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: var(--shadow-gold-glow);
}

.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px -4px rgba(217, 119, 6, 0.45);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue-glow);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--primary);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-full { width: 100%; }

/* ===== CARDS (GLOBAL) ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.15));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.card-icon.gold {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(245, 200, 66, 0.15));
}

/* ===== HERO SECTIONS (HOMEPAGE & INNER PAGES) ===== */
.hero, .page-header, .ac-hero, .wm-hero, .page-hero {
  background: linear-gradient(rgba(9, 13, 22, 0.84), rgba(9, 13, 22, 0.84)), url('appliance_bg.png') no-repeat center center/cover !important;
  padding: 150px 20px 100px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: auto !important;
  border-bottom: 4px solid var(--gold);
}

.hero-content, .page-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.4);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1, .page-header h1, .ac-hero h1, .wm-hero h1, .page-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(34px, 7vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 span, .page-header h1 span, .ac-hero h1 span, .wm-hero h1 span, .page-hero h1 span {
  color: var(--gold-light) !important;
}

.hero-sub {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 12px;
  letter-spacing: 1.5px;
}

.hero p, .page-header p, .ac-hero p, .wm-hero p, .page-hero p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: clamp(14px, 2.5vw, 16px) !important;
  line-height: 1.8 !important;
  margin-bottom: 32px !important;
  max-width: 650px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.hero-btns, .cta-btns, .breadcrumb, .hero-services {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 32px;
}

.hero-services {
  margin-bottom: 0;
  gap: 12px;
}

.hero-service-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.hero-service-chip:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.breadcrumb {
  margin-bottom: 0;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 4px; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-item { text-align: center; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.trust-item .icon { color: var(--primary); font-size: 16px; }

/* ===== HOMEPAGE SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.service-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover .service-card-img {
  filter: brightness(1.05);
}

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(to top, var(--white), transparent);
}

.service-card-body { padding: 28px; flex-grow: 1; }
.service-card-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card-footer {
  padding: 16px 28px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(15, 23, 42, 0.02);
  transition: var(--transition);
}

.service-card:hover .service-card-footer {
  background: rgba(37, 99, 235, 0.04);
}

.service-card-footer .price {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
}
.service-card-footer .arrow {
  color: var(--primary);
  font-size: 18px;
  transition: var(--transition);
}

.service-card:hover .arrow {
  transform: translateX(6px);
}

/* ===== WHY CHOOSE US CARDS ===== */
.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.why-card:nth-child(2) { border-top-color: var(--gold); }
.why-card:nth-child(3) { border-top-color: var(--success); }
.why-card:nth-child(4) { border-top-color: #ef4444; }

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-icon { font-size: 44px; margin-bottom: 16px; }
.why-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ===== SERVICE LOCATIONS & CHIPS ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.area-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.area-links a {
  font-size: 13.5px;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.area-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.area-chip {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.area-chip:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--primary);
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: var(--shadow-blue-glow);
}

.step-content h4 { font-weight: 700; font-size: 16px; color: var(--primary-dark); margin-bottom: 8px; }
.step-content p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
  border-left: 4px solid var(--primary);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '“';
  font-size: 90px;
  color: var(--primary);
  opacity: 0.08;
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars { color: var(--gold-light); font-size: 18px; margin-bottom: 12px; }
.testimonial-text { font-size: 14.5px; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--primary-dark); }
.testimonial-location { font-size: 12px; color: var(--text-light); }

/* ===== FAQ ACCORDIONS ===== */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--light-gray);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--primary-dark);
  transition: var(--transition);
}

.faq-question:hover { background: rgba(37, 99, 235, 0.02); color: var(--primary); }
.faq-question .arrow { color: var(--primary); transition: var(--transition); font-size: 14px; flex-shrink: 0; }
.faq-item.open { border-color: var(--primary-light); }
.faq-item.open .faq-question { background: rgba(37, 99, 235, 0.04); color: var(--primary); }
.faq-item.open .arrow { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 350px; padding: 0 24px 20px; }

/* ===== CTA SECTIONS ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}

.cta-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 6vw, 42px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 16px;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== MAP SECTIONS ===== */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--primary);
  transition: var(--transition);
}

.map-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== ALERT BOXES ===== */
.alert {
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.alert-success { background: rgba(16, 185, 129, 0.08); color: #065f46; border: 1px solid rgba(16, 185, 129, 0.25); }
.alert-info { background: rgba(37, 99, 235, 0.08); color: var(--primary); border: 1px solid rgba(37, 99, 235, 0.2); }

/* ===== RATINGS & STARS ===== */
.stars { color: var(--gold-light); letter-spacing: 2px; }
.price-badge {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  box-shadow: var(--shadow-gold-glow);
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 140px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue-glow);
}

/* ===== WHATSAPP & PHONE FLOATS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  font-size: 28px;
  animation: pulse 2.2s infinite ease-in-out;
  transition: var(--transition);
}

.call-float {
  position: fixed;
  bottom: 20px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
  text-decoration: none;
  font-size: 22px;
  animation: pulse-call 2.2s infinite ease-in-out 0.6s;
  transition: var(--transition);
  color: var(--white);
}

.whatsapp-float:hover, .call-float:hover {
  transform: scale(1.1) translateY(-2px);
}

/* ===== MOBILE STICKY CTA BAR ===== */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.12);
    z-index: 10000;
  }
  .mobile-sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
  }
  .mobile-sticky-cta .cta-call {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
  }
  .mobile-sticky-cta .cta-wa {
    background: #25D366;
  }
  .mobile-sticky-cta a:active { opacity: 0.9; }
  
  .back-top { bottom: 80px; }
  .whatsapp-float, .call-float { display: none !important; }
}

/* ===== REUSABLE DESIGN LAYOUTS (PAGES EXCLUSIONS) ===== */

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; }
}

.about-image-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 80%);
}

.about-image-box img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 10px;
  box-shadow: var(--shadow);
}

.about-text {
  text-align: left;
}

.about-text h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 30px;
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.03);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.value-icon { font-size: 44px; margin-bottom: 16px; }

.value-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.value-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 30px;
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.03);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.team-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.team-card .role {
  font-size: 11px;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* Contact Page Layout */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 440px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.03);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-item-icon {
  font-size: 24px;
  width: 52px;
  height: 52px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
  background: var(--primary);
  color: var(--white);
}

.contact-item-details { display: flex; flex-direction: column; }
.contact-item-details a, .contact-item-details span {
  font-size: 15px;
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
}
.contact-item-details .sub {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 4px;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 3px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 80%);
}

.map-placeholder:hover {
  opacity: 0.95;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.map-placeholder .map-icon { font-size: 56px; }
.map-placeholder h3 { font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: 700; color: var(--white); }
.map-placeholder p { color: rgba(255, 255, 255, 0.7); font-size: 13.5px; }

/* Reviews Page Layout */
.rating-summary {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--white);
  max-width: 440px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rating-big {
  font-family: 'Rajdhani', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.rating-stars-big {
  font-size: 26px;
  color: var(--gold-light);
  letter-spacing: 4px;
  margin: 16px 0;
}

.rating-count { color: rgba(255, 255, 255, 0.6); font-size: 14px; }

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

.filter-btn {
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--light-gray);
  background: var(--white);
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-blue-glow);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

/* Services Page Layout */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-big-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-big-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.sbc-header {
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

.sbc-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.sbc-header h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.sbc-header p { font-size: 13px; color: var(--text-light); }
.sbc-services { padding: 12px 32px; flex-grow: 1; }

.sbc-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14.5px;
}

.sbc-service-item:last-child { border-bottom: none; }
.sbc-service-item .name { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text); }
.sbc-service-item .price { color: var(--primary); font-weight: 750; font-size: 14px; }
.sbc-footer {
  padding: 24px 32px;
  background: var(--light-gray);
  display: flex;
  gap: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.02);
}

/* Booking Page Layout */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 992px) {
  .booking-wrapper { grid-template-columns: 1fr 380px; }
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.booking-form-card h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.booking-form-card p { font-size: 14px; color: var(--text-light); margin-bottom: 30px; }

.booking-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.sidebar-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

.contact-option:last-child { border-bottom: none; }

.contact-option:hover {
  color: var(--primary);
  padding-left: 6px;
}

.contact-option .co-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-option:hover .co-icon {
  transform: scale(1.05);
}

.contact-option .co-text { flex: 1; }
.contact-option .co-text strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--primary-dark); }
.contact-option .co-text span { font-size: 12px; color: var(--text-light); }

.success-card {
  display: none;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid var(--success);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow);
}

.success-icon { font-size: 64px; }
.success-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 30px; color: #065f46; font-weight: 700; }
.success-card p { color: #065f46; font-size: 15px; line-height: 1.7; max-width: 480px; }

.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.time-slot {
  padding: 12px 8px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.time-slot:hover, .time-slot.selected {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
  color: var(--primary);
}

/* Forms */
.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

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

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

/* Feature check list */
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14.5px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--text);
}

.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* Location pages specific rules */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

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

.price-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 2px solid var(--light-gray);
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

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

.price-item .service-name { font-size: 14px; font-weight: 650; color: var(--primary-dark); margin-bottom: 8px; }
.price-item .amount { font-family: 'Rajdhani', sans-serif; font-size: 26px; font-weight: 700; color: var(--primary); }
.price-item .note { font-size: 11.5px; color: var(--text-light); margin-top: 4px; }

.seo-content-section { padding: 80px 20px; line-height: 1.85; color: var(--text); }
.seo-content-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(24px, 4.5vw, 32px);
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 40px;
  margin-bottom: 16px;
}

.seo-content-section h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(20px, 3.5vw, 24px);
  font-weight: 700;
  color: var(--primary);
  margin-top: 28px;
  margin-bottom: 12px;
}

.seo-content-section p { font-size: 15px; margin-bottom: 24px; color: var(--text-light); }
.seo-content-section ul { margin-bottom: 24px; padding-left: 24px; }
.seo-content-section ul li { font-size: 14.5px; margin-bottom: 10px; color: var(--text-light); }

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-primary { background: rgba(37, 99, 235, 0.08); color: var(--primary); }
.badge-gold { background: rgba(217, 119, 6, 0.1); color: var(--gold-dark); }
.badge-success { background: rgba(16, 185, 129, 0.08); color: #047857; }

/* ===== FOOTERS ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 20px 30px;
  border-top: 4px solid var(--gold);
}

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

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

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

.footer-brand img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 2px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-brand p { font-size: 13.5px; line-height: 1.7; margin-top: 10px; }

.hindi-tagline {
  font-family: 'Tiro Devanagari Hindi', serif;
  color: var(--gold-light);
  font-size: 15px;
  margin-top: 6px;
  letter-spacing: 1px;
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover { color: var(--gold-light); transform: translateX(4px); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13.5px;
}

.footer-contact-item .icon {
  color: var(--gold-light);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ===== MEDIA RESPONSIVENESS OVERRIDES ===== */
@media (max-width: 991px) {
  .navbar { padding: 0 20px; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
    animation: slideDown 0.35s ease;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 20px; font-size: 15px; }
  .nav-menu { display: flex; }
}

@media (max-width: 576px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 35px; }
  .grid-2, .grid-3 { gap: 24px; }
  .card { padding: 24px; }
  .hero-btns { flex-direction: column; width: 100%; gap: 12px; }
  .hero-btns .btn { width: 100%; }
}
