/* ═══════════════════════════════════════════════
   SMART MOBILES — REDESIGNED STYLE SYSTEM
   "Midnight Tech" Obsidian Visual Framework
   ═══════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  /* HSL Color Definitions */
  --c-primary:        hsl(222, 53%, 12%);  /* Deep Tech Navy (#0F172A) for strong headers and contrast */
  --c-primary-light:  hsl(214, 100%, 96%);  /* Light Ice Blue (#F0F7FF) for secondary background panels/buttons */
  --c-call:           hsl(221, 83%, 53%);   /* Vibrant Cobalt Blue (#2563EB) for action items and main CTAs */
  --c-call-hover:     hsl(221, 83%, 45%);   /* Deep Royal Blue hover state (#1D4ED8) */
  --c-bg:             hsl(210, 40%, 98%);  /* Premium cool white background (#F8FAFC) */
  --c-surface:        hsl(0, 0%, 100%);    /* Pure white surfaces for cards and sections (#FFFFFF) */
  --c-text:           hsl(224, 71%, 18%);  /* High-contrast Slate Dark Slate (#1E293B) for body text */
  --c-muted:          hsl(215, 16%, 47%);  /* Steel gray (#64748B) for secondary text */
  --c-success:        hsl(142, 76%, 36%);  /* Premium Emerald Green for success status (#16A34A) */
  --c-success-bg:     rgba(22, 163, 74, 0.08); /* Emerald translucent background */
  --c-danger:         hsl(350, 89%, 48%);  /* Premium Crimson Red for warnings/closed shop (#DC2626) */
  --c-danger-bg:      rgba(220, 38, 38, 0.08); /* Translucent red background */
  --c-border:         hsla(220, 13%, 91%, 0.8); /* Subtle border color (#E2E8F0) */
  --c-highlight:      rgba(37, 99, 235, 0.04);  /* Subtle translucent blue for highlight focus */

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing Scale */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 2.25rem;
  --sp-3xl: 3.5rem;

  /* Border Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
  --shadow-md: 0 10px 30px -10px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 50px -15px rgba(37, 99, 235, 0.08);

  /* Glassmorphism Blur */
  --blur: 20px;
}


/* Body lock style when mobile nav menu is open */
body.nav-menu-open {
  /* Keep normal scrolling to prevent visual layout jumps (blinking) on close/open */
}

/* Active navigation link highlights */
header nav a.nav-active-link,
header nav a[aria-current="page"] {
  color: var(--c-call) !important;
  font-weight: 800 !important;
}
/* ─── BASE RESET & GENERAL STYLES ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background-color: var(--c-bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

@media (prefers-reduced-motion: no-preference) {
  body {
    opacity: 0;
    animation: bodyFadeIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  }
}

@keyframes bodyFadeIn {
  to {
    opacity: 1;
  }
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, h4 {
  color: var(--c-primary);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.02em;
}

h1 { font-size: 3.25rem; }
h2 { font-size: 2.25rem; margin-top: var(--sp-3xl); color: var(--c-primary); }
h3 { font-size: 1.45rem; color: var(--c-primary); }
p { margin-bottom: var(--sp-md); color: var(--c-text); }
address { font-style: normal; }

ul[role="list"], ol[role="list"] {
  list-style: none;
}

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--c-call);
  color: var(--c-primary);
  padding: var(--sp-md);
  z-index: 10000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0 0 var(--r-sm) 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--c-call);
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--c-call) !important;
  outline-offset: 2px !important;
}

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--sp-md);
  padding-right: var(--sp-md);
}

/* ─── HEADER & NAVIGATION ─── */
header {
  background-color: #FFFFFF;
  color: var(--c-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--c-border);
  transition: z-index 0.3s step-end;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  color: var(--c-primary);
  text-decoration: none;
  transition: filter 0.3s ease;
}
.logo-icon-svg {
  width: 28px;
  height: 28px;
  fill: var(--c-call);
}
.logo-text-group {
  display: flex;
  flex-direction: column;
}
.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  white-space: nowrap !important;
}
.logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-call);
  line-height: 1;
}

header nav {
  display: flex;
  align-items: center;
}

header nav ul {
  display: flex;
  gap: var(--sp-lg);
}

header nav a {
  color: var(--c-text);
  text-decoration: none;
  font-weight: 600;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-sm);
  transition: background-color 0.2s, color 0.2s;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
header nav a::after {
  content: "";
  position: absolute;
  bottom: var(--sp-xs);
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--c-call);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: none !important;
}
header nav a:hover::after, header nav a[aria-current="page"]::after {
  width: 70%;
  left: 15%;
  display: none !important;
}
header nav a:hover {
  background-color: rgba(15, 23, 42, 0.04);
  color: var(--c-primary);
}

/* ─── STATUS BADGE ─── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
.status-open {
  background-color: var(--c-success-bg);
  color: var(--c-success);
  border: 1px solid hsla(142, 70%, 45%, 0.2);
}
.status-closed {
  background-color: var(--c-danger-bg);
  color: var(--c-danger);
  border: 1px solid hsla(0, 84%, 60%, 0.2);
}

/* Custom SVG Dot inside status badge */
.status-dot-svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--c-primary);
  font-size: 1.75rem;
  cursor: pointer;
  padding: var(--sp-xs);
  min-width: 48px;
  min-height: 48px;
  position: relative;
  z-index: 10001;
}

/* ─── HERO SECTION (Redesigned Full-Width Midnight Tech layout) ─── */
.hero {
  position: relative;
  background: linear-gradient(to right, rgba(248, 250, 252, 0.85) 30%, rgba(248, 250, 252, 0.5) 60%, rgba(248, 250, 252, 0.1) 100%),
              url('../images/Smart%20Mobiles.webp') no-repeat center center;
  background-size: cover;
  padding: 120px 0 var(--sp-3xl) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}

.hero .container {
  max-width: 100% !important;
  padding-left: 4% !important;
  padding-right: 4% !important;
}

@media (max-width: 991px) {
  .hero {
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.95) 50%, rgba(248, 250, 252, 0.8) 100%),
                url('../images/Smart%20Mobiles.webp') no-repeat center center;
    background-size: cover;
  }
}

/* Glassmorphic box content overlay in hero */
.hero-glass-box {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--c-border);
  padding: var(--sp-3xl) var(--sp-xl);
  border-radius: var(--r-lg);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: -2px;
  line-height: 1.15;
  color: var(--c-primary);
}
.hero .subheadline {
  font-size: 1.35rem;
  color: var(--c-text);
  max-width: 800px;
  margin: 0 0 var(--sp-xl) 0;
}
.hero-status-container {
  margin-bottom: var(--sp-xl);
}
.trust-line {
  margin-top: var(--sp-xl);
  font-weight: 700;
  color: var(--c-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.trust-line-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: var(--sp-sm) var(--sp-md);
  border: 1.5px solid rgba(37, 99, 235, 0.15);
  background: rgba(37, 99, 235, 0.02);
  color: var(--c-text);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              background-color 0.3s ease,
              color 0.3s ease,
              box-shadow 0.3s ease;
}
.trust-line-item:hover {
  transform: translateY(-4px);
  border-color: var(--c-call);
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--c-call);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}
.trust-line-icon-svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.section {
  padding-top: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
}

/* Generous top spacing above introductory paragraphs on all detail pages */
.page-title-section + .section.container {
  padding-top: 2.75rem !important; /* Elegant breathing space below the page title section */
}

.section-title {
  text-align: center;
  margin-bottom: var(--sp-2xl);
  font-size: 2.5rem;
}

/* ─── BUTTONS ─── */
.call-buttons {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  margin: var(--sp-lg) 0;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  min-height: 56px;
  padding: var(--sp-md) var(--sp-2xl);
  background-color: var(--c-call);
  color: #FFFFFF;
  font-weight: 900;
  text-decoration: none;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}
.btn-call::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.6s ease;
}
.btn-call:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background-color: var(--c-call-hover);
}
.btn-call:hover::before {
  left: 100%;
}
.btn-call-secondary {
  background-color: var(--c-primary-light);
  color: var(--c-primary);
  border: 1px solid var(--c-border);
}
.btn-call-secondary:hover {
  background-color: hsl(215, 100%, 92%);
  box-shadow: 0 12px 24px -5px rgba(37, 99, 235, 0.15);
}

.btn-icon-svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ─── QUICK FACTS BLOCK (Redesigned 2-Column Responsive Grid) ─── */
.quick-facts {
  background: linear-gradient(180deg, var(--c-surface) 0%, hsla(210, 40%, 98%, 0.4) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-xl);
  margin: var(--sp-xl) auto;
  max-width: 950px;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}
.quick-facts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-call), var(--c-call-hover));
}
.quick-facts ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md) var(--sp-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
.quick-facts li {
  position: relative;
  padding: 1.1rem 1.25rem 1.1rem 3.5rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.5;
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background-color 0.3s ease,
              color 0.3s ease;
}
.quick-facts li:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, hsla(221, 83%, 99%, 0.9) 0%, hsla(221, 83%, 97%, 0.5) 100%);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 10px 20px -8px rgba(37, 99, 235, 0.08);
  color: var(--c-primary);
}
/* Highlight layout for the odd spanned item as a distinct CTA block */
.quick-facts li:last-child:nth-child(odd) {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--c-primary-light) 0%, hsla(214, 100%, 93%, 0.9) 100%);
  border-radius: var(--r-md);
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  margin-top: var(--sp-xs);
  color: var(--c-primary);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.04);
}
.quick-facts li:last-child:nth-child(odd):hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, hsla(214, 100%, 95%, 1) 0%, hsla(214, 100%, 91%, 0.95) 100%);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 12px 24px -6px rgba(37, 99, 235, 0.12);
}
.quick-facts-check-svg, .quick-facts svg, .quick-facts .trust-line-icon-svg {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: var(--c-call);
  background-color: var(--c-primary-light);
  border-radius: 50%;
  padding: 4px;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s ease;
}
.quick-facts li:hover .quick-facts-check-svg {
  transform: translateY(-50%) scale(1.1);
  background-color: rgba(37, 99, 235, 0.15);
}
.quick-facts li:last-child:nth-child(odd) .quick-facts-check-svg {
  background-color: var(--c-surface);
}
.quick-facts li:last-child:nth-child(odd):hover .quick-facts-check-svg {
  background-color: var(--c-surface);
  transform: translateY(-50%) scale(1.1);
}

/* Pseudo-element checkmark for items without SVGs (e.g. inner pages) */
.quick-facts li:not(:has(svg))::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: var(--c-primary-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s ease;
}
.quick-facts li:not(:has(svg)):hover::before {
  transform: translateY(-50%) scale(1.1);
  background-color: rgba(37, 99, 235, 0.15);
}
.quick-facts li:last-child:nth-child(odd):not(:has(svg))::before {
  background-color: var(--c-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e3a8a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.quick-facts li:last-child:nth-child(odd):not(:has(svg)):hover::before {
  background-color: var(--c-surface);
  transform: translateY(-50%) scale(1.1);
}


/* ─── TRUST BADGES ─── */
.trust-badges-row {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-3xl);
}
.trust-badge-item {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              color 0.3s ease;
}
.trust-badge-item:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--c-call);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.trust-badge-icon-svg {
  width: 18px;
  height: 18px;
  fill: var(--c-call);
}

/* ─── SERVICES SECTION BACKGROUND ─── */
.services-section {
  position: relative;
  background-color: var(--c-primary-light);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

/* ─── GRIDS & CARDS (Glassmorphic neon styling) ─── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-lg);
}

.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 
              0 10px 20px -5px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.08),
              0 10px 10px -5px rgba(37, 99, 235, 0.03);
}
.card-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--c-primary-light);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-lg);
  transition: background-color 0.3s, transform 0.3s;
  border: 1px solid var(--c-border);
}
.card:hover .card-icon-container {
  background-color: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
  transform: scale(1.05);
}
.card-icon-svg {
  width: 28px;
  height: 28px;
  fill: var(--c-call);
}
.card h3 {
  margin-bottom: var(--sp-sm);
}
.card p {
  color: var(--c-muted);
  font-size: 0.95rem;
  margin-bottom: var(--sp-lg);
  line-height: 1.55;
}
.card-link {
  color: var(--c-call);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  transition: gap 0.2s;
}
.card-link:hover {
  gap: var(--sp-sm);
}
.card-link-arrow-svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ─── HOURS BANNER ─── */
.hours-banner {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  color: #FFFFFF;
  text-align: center;
  padding: var(--sp-lg);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ─── CALLOUT BOX ─── */
.callout {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  margin: var(--sp-2xl) 0;
  box-shadow: var(--shadow-md);
}

/* ─── BREADCRUMBS ─── */
.breadcrumb {
  background-color: var(--c-bg);
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.breadcrumb li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  color: var(--c-muted);
  font-weight: 600;
}
.breadcrumb a {
  color: var(--c-call);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-color: var(--c-muted);
  margin-left: var(--sp-sm);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0.5;
}

/* ─── FAQ PAGE STYLE ─── */
.faq-answer {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-md);
  box-shadow: var(--shadow-md);
}
.faq-answer h3 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: var(--sp-sm);
}

/* ─── FOOTER ─── */
footer {
  background-color: var(--c-primary);
  color: #FFFFFF;
  padding: var(--sp-3xl) 0 var(--sp-xl);
  border-top: 5px solid var(--c-call);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}
.footer-section h3 {
  color: #FFFFFF;
  margin-bottom: var(--sp-lg);
  position: relative;
  padding-bottom: var(--sp-sm);
}
.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: var(--c-call);
  border-radius: var(--r-pill);
}
.footer-section p, .footer-section address {
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.footer-section a {
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-section a:hover {
  color: var(--c-call);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-xl);
  color: var(--c-muted);
  font-size: 0.875rem;
}
.footer-bottom a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ─── STICKY CALL BAR FOR MOBILE ─── */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--c-call);
  display: none;
  z-index: 9999;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.sticky-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  width: 100%;
  height: 100%;
  color: var(--c-primary);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

/* ─── EMERGENCY CALLOUT (Water Damage page etc) ─── */
.emergency-box {
  background-color: var(--c-danger-bg);
  border: 2px solid var(--c-danger);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  margin: var(--sp-2xl) 0;
  color: #FF8A80;
  box-shadow: var(--shadow-md);
}
.emergency-box strong {
  font-size: 1.35rem;
  color: var(--c-danger);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}
.emergency-box ol {
  margin-left: var(--sp-lg);
  margin-bottom: var(--sp-md);
}
.emergency-box li {
  margin-bottom: var(--sp-sm);
  font-weight: 700;
  color: var(--c-text);
}
.emergency-box a {
  color: var(--c-danger);
  font-weight: 900;
  text-decoration: underline;
}

.emergency-icon-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ─── FAQ ACCORDION STYLE ─── */
.faq-accordion {
  margin-bottom: var(--sp-md);
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-accordion:hover {
  border-color: var(--c-call);
  box-shadow: var(--shadow-md);
}
.faq-accordion summary {
  padding: var(--sp-lg) var(--sp-xl);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-primary);
  cursor: pointer;
  list-style: none; /* Hide browser default triangle */
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-accordion summary:focus-visible {
  outline: 3px solid var(--c-call);
  outline-offset: -3px;
}
.faq-accordion summary::-webkit-details-marker {
  display: none; /* Hide Safari default arrow */
}
.faq-accordion summary::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--c-call);
  border-bottom: 2.5px solid var(--c-call);
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: var(--sp-md);
  flex-shrink: 0;
}
.faq-accordion[open] {
  border-color: var(--c-call);
}
.faq-accordion[open] summary::after {
  transform: rotate(-135deg); /* Point chevron upward when open */
}
.faq-content {
  padding: 0 var(--sp-xl) var(--sp-xl) var(--sp-xl);
  color: var(--c-text);
  line-height: 1.6;
}
.faq-content p:last-child {
  margin-bottom: 0;
}

/* ─── HOW IT WORKS SECTION ─── */
.how-it-works-section {
  background-color: var(--c-surface); /* Premium translucent obsidian slate */
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  max-width: 900px;
  margin: 0 auto;
}
.how-step {
  text-align: center;
  position: relative;
  padding: var(--sp-xl) var(--sp-md);
}
.how-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-call), hsl(221, 83%, 38%));
  color: #FFFFFF;
  font-size: 1.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-lg);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-step:hover .how-step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}
.how-step h3 {
  font-size: 1.15rem;
  margin-bottom: var(--sp-sm);
}
.how-step p {
  color: var(--c-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}
/* Connector line between steps */
.how-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -12px;
  width: calc(var(--sp-xl) + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-call), transparent);
  opacity: 0.4;
}
@media (max-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .how-step:not(:last-child)::after {
    display: none;
  }
}

/* ─── TESTIMONIALS SECTION ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-lg);
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 
              0 10px 20px -5px rgba(0, 0, 0, 0.03);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05),
              0 10px 10px -5px rgba(0, 0, 0, 0.02);
}
.testimonial-card::before {
  content: """;
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.12);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-md);
}
.testimonial-star-svg {
  width: 18px;
  height: 18px;
  fill: var(--c-call);
}
.testimonial-text {
  color: var(--c-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--sp-lg);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary-light), var(--c-call));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  flex-shrink: 0;
}
.testimonial-author-info {
  display: flex;
  flex-direction: column;
}
.testimonial-name {
  font-weight: 700;
  color: var(--c-primary);
  font-size: 0.9rem;
}
.testimonial-meta {
  color: var(--c-muted);
  font-size: 0.8rem;
}

/* ─── GOOGLE MAP EMBED ─── */
.map-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  margin: var(--sp-xl) auto;
  max-width: 800px;
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
  filter: brightness(0.85) contrast(1.1) saturate(0.8);
  transition: filter 0.3s ease;
}
.map-container:hover iframe {
  filter: brightness(1) contrast(1) saturate(1);
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── GENERAL CONTENT LIST STYLING ─── */
ul:not(.quick-facts ul):not(.footer-section ul):not(header nav ul):not(.breadcrumb ol):not(.service-areas-list),
ol {
  list-style-type: disc !important;
  padding-left: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

ul:not(.quick-facts ul):not(.footer-section ul):not(header nav ul):not(.breadcrumb ol):not(.service-areas-list) li,
ol li {
  margin-bottom: 0.5rem !important;
  line-height: 1.55 !important;
  color: var(--c-text) !important;
}

/* ─── STICKY ACTION BUTTON PULSE ─── */
@keyframes stickyPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    transform: scale(1);
  }
}

/* ─── MEDIA QUERIES ─── */

/* ─── TABLET STYLES (Viewport width 991px and down) ─── */
@media (max-width: 991px) {
  .container {
    padding-left: 24px !important; /* Premium tablet side gutter */
    padding-right: 24px !important;
  }

  /* Optimize header spacing on tablets to prevent wrapping */
  header nav ul {
    gap: var(--sp-md) !important;
  }
  header nav a {
    padding: var(--sp-sm) var(--sp-sm) !important;
    font-size: 0.95rem !important;
  }

  h1, .hero h1 {
    font-size: 2.5rem !important;
    letter-spacing: -1.5px !important;
  }

  .hero .subheadline {
    font-size: 1.15rem !important;
    margin: 0 auto var(--sp-xl) !important;
  }

  h2, .section-title {
    font-size: 1.95rem !important;
    margin-top: var(--sp-2xl) !important;
  }

  .section {
    padding: var(--sp-2xl) 0 !important;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: var(--sp-md) !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important; /* Stack testimonials as exactly 1 review per row on tablet viewports */
    gap: var(--sp-md) !important;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--sp-md) !important;
  }
  /* Hide step connectors on tablet viewports */
  .how-step:not(:last-child)::after {
    display: none !important;
  }

  .card, .testimonial-card, .callout, .emergency-box {
    padding: var(--sp-lg) !important; /* Slightly more compact card padding for tablet */
  }

  /* Make sure the how-step number size is still elegant */
  .how-step-number {
    width: 56px !important;
    height: 56px !important;
    font-size: 1.5rem !important;
  }
}

/* ─── MOBILE STYLES (Viewport width 768px and down) ─── */
@media (max-width: 768px) {
  main .container, footer .container {
    padding-left: 24px !important; /* Spacious gutter margins on phone screen borders */
    padding-right: 24px !important;
  }

  .hero {
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.95) 50%, rgba(248, 250, 252, 0.8) 100%),
                url('../images/sm%20MOBILE.webp') no-repeat center center !important;
    background-size: cover !important;
  }

  h1, .hero h1 {
    font-size: 1.85rem !important; /* Fluid, clean h1 for mobile */
    letter-spacing: -1px !important;
    line-height: 1.25 !important;
  }

  h2, .section-title {
    font-size: 1.45rem !important; /* Beautifully weighted secondary headings */
    margin-top: 1.75rem !important;
    margin-bottom: 1.25rem !important;
  }

  h3 {
    font-size: 1.15rem !important; /* Standard card header text size */
  }

  p, li, .testimonial-text {
    font-size: 0.92rem !important; /* Crisp, readable small body text */
    line-height: 1.5 !important;
  }

  .hero .subheadline {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin: 0 auto var(--sp-lg) !important;
  }

  .section {
    padding-top: 1.75rem !important; /* Reduce vertical empty space drastically on mobile */
    padding-bottom: 1.75rem !important;
  }

  /* Premium top space for intro paragraph on mobile detail pages */
  .page-title-section + .section.container {
    padding-top: 2.25rem !important;
  }

  body {
    padding-bottom: 0 !important;
  }

  /* Force single row header and prevent item squeezing */
  header .container {
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 0 8px !important;
  }

  .logo {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
  }

  .logo-text-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
  }

  .logo-text {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  body.lang-active-ta .logo-text {
    font-size: 0.92rem !important;
  }

  .logo-sub {
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
    line-height: 1.1 !important;
    margin-top: 2px !important;
    white-space: nowrap !important;
  }

  body.lang-active-ta .logo-sub {
    font-size: 0.72rem !important;
  }

  #shop-status {
    font-size: 0.72rem !important;
    padding: 4px 8px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .nav-toggle {
    display: block !important;
    flex-shrink: 0 !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }




  /* Completely responsive adaptive grids - NO layout overflows (One per row on mobile) */
  .grid, .testimonials-grid, .how-it-works-grid {
    grid-template-columns: 1fr !important; /* Stack vertically - exactly 1 card per row for maximum readability */
    gap: 16px !important;
    margin-top: 2rem !important; /* Premium breathing space above grid components */
    margin-bottom: 2.25rem !important; /* Premium breathing space below grid components */
  }

  /* Compact Card & Testimonial Padding - NO edge-touching, plenty of space */
  .card, .testimonial-card, .callout, .emergency-box {
    padding: 1rem !important; /* Consistent 16px card padding increases the inner text column area */
    border-radius: var(--r-md) !important;
  }

  .card-icon-container {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: var(--sp-sm) !important;
  }

  .card-icon-svg {
    width: 24px !important;
    height: 24px !important;
  }

  .testimonial-avatar {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
  }

  /* Dynamic How Steps layout */
  .how-step {
    padding: var(--sp-sm) 0 !important;
  }

  .how-step-number {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.35rem !important;
    margin-bottom: var(--sp-sm) !important;
  }

  .how-step:not(:last-child)::after {
    display: none !important;
  }

  /* Quick Facts Section alignment and margins on mobile */
  .quick-facts {
    padding: 0.85rem !important;
    margin: 1.5rem 0 1rem 0 !important;
  }

  .quick-facts ul {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .quick-facts li {
    padding: 0.75rem 0.75rem 0.75rem 2.85rem !important;
    font-size: 0.92rem !important;
    border-bottom: none !important;
    background-color: var(--c-surface) !important;
    border: 1px solid var(--c-border) !important;
    border-radius: var(--r-md) !important;
  }

  .quick-facts-check-svg, .quick-facts svg, .quick-facts .trust-line-icon-svg {
    width: 22px !important;
    height: 22px !important;
    left: 0.65rem !important;
    padding: 3px !important;
    border-radius: 50% !important;
    background-color: var(--c-primary-light) !important;
  }

  .quick-facts li:not(:has(svg))::before {
    width: 22px !important;
    height: 22px !important;
    left: 0.65rem !important;
    background-size: 11px 11px !important;
  }

  .quick-facts li:last-child,
  .quick-facts li:last-child:nth-child(odd) {
    grid-column: span 1 !important;
    background: linear-gradient(135deg, var(--c-primary-light) 0%, hsla(214, 100%, 93%, 0.9) 100%) !important;
    border: 1px solid rgba(37, 99, 235, 0.25) !important;
    border-radius: var(--r-md) !important;
    padding: 0.85rem 0.85rem 0.85rem 2.85rem !important;
    margin-top: 4px !important;
    color: var(--c-primary) !important;
    font-weight: 700 !important;
  }
  .quick-facts li:last-child:not(:nth-child(odd)) {
    background: var(--c-surface) !important;
    border: 1px solid var(--c-border) !important;
    border-radius: var(--r-md) !important;
    padding: 0.75rem 0.75rem 0.75rem 2.85rem !important;
    margin-top: 0 !important;
    color: var(--c-text) !important;
    font-weight: 600 !important;
  }


  /* Google Maps iframe height tuning */
  .map-container iframe {
    height: 240px !important;
  }

  /* Compact button styling to ensure phone numbers NEVER wrap or cut off */
  .btn-call {
    font-size: 0.95rem !important;
    padding: 12px 16px !important;
    min-height: 48px !important;
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 4px 0 !important;
  }

  .call-buttons {
    flex-direction: column !important;
    gap: 8px !important;
    margin: var(--sp-sm) 0 !important;
  }

  /* Testimonials Bottom Action Buttons stack elegantly */
  .testimonials-actions {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .btn-testimonial-action {
    width: 100% !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    min-height: 48px !important;
    padding: 12px 16px !important;
  }

  /* Premium Floating Circle Call Button only for mobile view */
  .sticky-call-bar {
    display: block;
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: auto;
    width: 60px;
    height: 60px;
    background: transparent;
    box-shadow: none;
    padding-bottom: 0;
    z-index: 9999;
  }
  
  .sticky-call-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--c-call);
    color: #FFFFFF !important;
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
    color: transparent;
    text-indent: -9999px;
    position: relative;
    animation: stickyPulse 2s infinite ease-in-out;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .sticky-call-link:active {
    transform: scale(0.9);
  }

  .sticky-call-link svg {
    margin: 0 !important;
    width: 26px;
    height: 26px;
    fill: #FFFFFF;
    text-indent: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Trust Badges wrapping */
  .trust-badges-row {
    gap: 8px !important;
    margin-bottom: var(--sp-xl) !important;
  }

  .trust-badge-item {
    font-size: 0.8rem !important;
    padding: 4px 10px !important;
  }

  /* Footer responsiveness optimization */
  footer {
    padding: var(--sp-xl) 0 calc(var(--sp-md) + 80px) !important; /* Extra bottom padding to lift content above floating call button */
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: var(--sp-xl) !important;
    margin-bottom: var(--sp-xl) !important;
  }

  .footer-section h3 {
    margin-bottom: var(--sp-md) !important;
  }

  /* Compact Mobile FAQ Accordions */
  .faq-accordion summary {
    font-size: 0.95rem !important;
    padding: 12px 16px !important;
  }
  
  .faq-content {
    padding: 0 16px 16px 16px !important;
    font-size: 0.9rem !important;
  }

  /* Compact Pricing Table for Mobile */
  .pricing-preview {
    padding: var(--sp-md) !important;
    padding-bottom: 65px !important; /* Extra bottom padding so table text lifts above floating call button */
    margin: var(--sp-lg) var(--sp-md) var(--sp-xl) var(--sp-md) !important; /* Beautiful inset margins on left/right borders */
  }
  .pricing-table th, .pricing-table td {
    padding: 12px 8px !important;
    font-size: 0.86rem !important;
  }
}

/* ─── REDESIGNED PREMIUM CALLOUT SUB-NAVIGATION (Other Services) ─── */
.callout {
  background: linear-gradient(135deg, var(--c-primary-light) 0%, hsla(214, 100%, 94%, 0.6) 100%) !important;
  backdrop-filter: blur(var(--blur)) !important;
  -webkit-backdrop-filter: blur(var(--blur)) !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  border-radius: var(--r-lg) !important;
  padding: var(--sp-xl) !important;
  margin-top: 3.5rem !important;
  box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.05) !important;
  position: relative;
  overflow: hidden;
}

.callout h3 {
  font-size: 1.35rem !important;
  color: var(--c-primary) !important;
  margin-bottom: 1.25rem !important;
  text-align: center !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
}

.callout ul {
  list-style-type: none !important;
  list-style: none !important;
  padding-left: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: var(--sp-md) !important;
  margin-bottom: 0 !important;
}

.callout li {
  list-style: none !important;
  list-style-type: none !important;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}

.callout .card-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: var(--sp-xs) !important;
  padding: 10px 20px !important;
  background: var(--c-surface) !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  border-radius: var(--r-pill) !important;
  color: var(--c-primary) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: var(--shadow-sm) !important;
  min-height: 46px !important;
}

.callout .card-link:hover {
  background: var(--c-call) !important;
  border-color: var(--c-call-hover) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15) !important;
}

.callout .card-link svg {
  stroke: currentColor !important;
  transition: stroke 0.3s ease !important;
}

.callout .card-link:hover svg {
  stroke: #FFFFFF !important;
}

.callout .card-link::after {
  content: " →" !important;
  font-size: 1.1rem !important;
  transition: transform 0.2s ease !important;
}

.callout .card-link:hover::after {
  transform: translateX(4px) !important;
}

@media (max-width: 768px) {
  .callout {
    padding: 1.25rem !important;
    margin-top: 2rem !important;
  }
  
  .callout ul {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  
  .callout .card-link {
    width: 100% !important;
    font-size: 0.95rem !important;
    min-height: 52px !important;
  }
}

/* ─── GLOBAL SMOOTH SCROLLING ─── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px; /* Offset to keep headings clear of sticky nav header */
}

/* ─── TESTIMONIALS ACTIONS ─── */
.testimonials-actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
  flex-wrap: wrap;
}

.btn-testimonial-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-xl);
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 52px;
  cursor: pointer;
}

.btn-google-reviews {
  background: var(--c-call);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
  border: 1px solid var(--c-call);
}

.btn-google-reviews:hover {
  background: var(--c-call-hover);
  border-color: var(--c-call-hover);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-shop-location {
  background: rgba(15, 23, 42, 0.03);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-shop-location:hover {
  background: rgba(15, 23, 42, 0.06);
  border-color: var(--c-call);
  color: var(--c-call);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.btn-action-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn-testimonial-action:hover .btn-action-icon {
  transform: scale(1.15);
}

/* ==========================================================================
   NEW PREMIUM DUAL CALL BUTTONS GRID (TWO PER ROW RESPONSIVE SYSTEM)
   ========================================================================== */
.call-buttons-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: var(--sp-md) !important;
  margin: var(--sp-xl) auto !important;
  max-width: 840px !important;
  width: 100% !important;
}

.btn-call-card {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: var(--sp-md) !important;
  padding: 1.15rem 1.6rem !important;
  text-decoration: none !important;
  border-radius: var(--r-lg) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: var(--shadow-md) !important;
}

.btn-call-card .btn-icon-svg {
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-call-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

.btn-call-label {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  display: block !important;
}

.btn-call-number {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  opacity: 0.85 !important;
  display: block !important;
  margin-top: 2px !important;
}

/* Primary State: Radiant Cobalt Blue (Old Shop) */
.btn-call-primary {
  background: var(--c-call) !important;
  color: #FFFFFF !important;
  border: 1px solid transparent !important;
}
.btn-call-primary .btn-icon-svg {
  fill: currentColor !important;
}
.btn-call-primary:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 30px -10px rgba(37, 99, 235, 0.45) !important;
  background: var(--c-call-hover) !important;
  color: #FFFFFF !important;
}
.btn-call-primary:hover .btn-icon-svg {
  transform: scale(1.1) rotate(-10deg) !important;
}

/* Secondary State: Premium Light Glass (New Shop) */
.btn-call-secondary-grid {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: var(--c-primary) !important;
  border: 1px solid var(--c-border) !important;
}
.btn-call-secondary-grid .btn-icon-svg {
  fill: var(--c-call) !important;
}
.btn-call-secondary-grid:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05) !important;
  background: rgba(255, 255, 255, 1) !important;
  border-color: var(--c-call) !important;
}
.btn-call-secondary-grid:hover .btn-icon-svg {
  transform: scale(1.1) rotate(-10deg) !important;
}

/* Mobile responsive scaling: Keep side by side but perfectly balanced */
@media (max-width: 768px) {
  .call-buttons-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin: var(--sp-md) 0 !important;
  }
  
  .btn-call-card {
    padding: 12px 8px !important;
    gap: 8px !important;
    border-radius: var(--r-md) !important;
    justify-content: center !important;
    text-align: center !important;
  }
  
  .btn-call-card .btn-icon-svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  .btn-call-info {
    align-items: center !important;
    text-align: center !important;
  }
  
  .btn-call-label {
    font-size: 0.85rem !important;
  }
  
  .btn-call-number {
    font-size: 0.725rem !important;
    margin-top: 1px !important;
    white-space: nowrap !important;
  }
}
@media (max-width: 380px) {
  .btn-call-label {
    font-size: 0.775rem !important;
  }
  .btn-call-number {
    font-size: 0.65rem !important;
  }
}

/* ─── WHY CHOOSE SECTION (Glassmorphism) ─── */
.why-choose-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.9));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255,255,255,0.8);
  grid-column: span 1;
}

.why-choose-title {
  font-size: 2rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(90deg, var(--c-primary), var(--c-call));
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-bottom: 1rem;
  letter-spacing: -0.03em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(16, 185, 129, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25), 0 0 20px rgba(16, 185, 129, 0.05);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--c-success);
  flex-shrink: 0;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-text {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.feature-text strong {
  color: var(--c-primary);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.working-hours-card {
  position: relative;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  padding: 1.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.working-hours-card:hover {
  transform: scale(1.02);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3), inset 0 0 20px rgba(245, 158, 11, 0.05);
}
.working-hours-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--c-call);
  box-shadow: 0 0 15px var(--c-call);
}
.hours-title {
  color: var(--c-primary);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.hours-title svg {
  width: 24px;
  height: 24px;
  color: var(--c-call);
}
.hours-main {
  font-weight: 600;
  color: var(--c-text);
  font-size: 1rem;
}
.hours-main span {
  color: var(--c-primary);
  font-weight: 800;
  font-size: 1.15rem;
  display: inline-block;
  margin-top: 4px;
}
.hours-closed {
  font-weight: 800;
  color: var(--c-danger);
  font-size: 1rem;
  margin-top: 4px;
}
.hours-note {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

@media (max-width: 600px) {
  .why-choose-card {
    padding: 1.5rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── LIGHT THEME & OVERRIDES ─── */
[data-theme="light"] {
  --c-primary:        hsl(222, 47%, 95%);
  --c-primary-light:  hsl(222, 47%, 90%);
  --c-call:           hsl(35, 92%, 45%);
  --c-call-hover:     hsl(35, 92%, 40%);
  --c-bg:             hsl(210, 40%, 98%);
  --c-surface:        hsl(0, 0%, 100%);
  --c-text:           hsl(222, 47%, 11%);
  --c-muted:          hsl(215, 20%, 40%);
  --c-success:        hsl(142, 70%, 35%);
  --c-danger:         hsl(0, 84%, 45%);
  --c-border:         hsla(215, 20%, 20%, 0.1);
  --shadow-sm:        0 2px 4px rgba(0,0,0,0.05);
  --shadow-md:        0 10px 30px -10px rgba(0,0,0,0.1);
  --shadow-lg:        0 20px 50px -15px rgba(0,0,0,0.15);
}

[data-theme="light"] h1, [data-theme="light"] h2, [data-theme="light"] h3, [data-theme="light"] h4 {
  color: var(--c-text);
}

[data-theme="light"] .logo-text, [data-theme="light"] header nav a, [data-theme="light"] .nav-toggle {
  color: #fff; /* Header always dark */
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── NEW STYLES: MOBILE NAV OVERLAY ─── */
/* Lift the site header above the blurred body overlay when open to prevent blur */
body.nav-menu-open #site-header,
body.nav-menu-open header {
  z-index: 99999 !important;
  transition: z-index 0s !important;
}

/* Ensure the nav toggle close button floats on top of the drawer when active without shrinking the header */
body.nav-menu-open .nav-toggle {
  position: relative !important;
  z-index: 100000 !important;
  color: var(--c-primary) !important;
}

#sticky-call {
  transition: filter 0.3s ease;
}

/* Blur logo, language switcher, and bottom call bar when menu is open */
body.nav-menu-open .logo,
body.nav-menu-open .lang-switch-wrapper,
body.nav-menu-open #sticky-call {
  filter: blur(4px) !important;
  pointer-events: none !important;
}

.nav-mobile-extras {
  display: none;
}

/* ─── EXIT INTENT PROMPT ─── */
.exit-intent-panel {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--c-surface);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  padding: 20px;
  z-index: 10000;
  transition: bottom 0.3s ease-out;
  border-top: 3px solid var(--c-call);
}
.exit-intent-panel.active {
  bottom: 0;
}
.exit-intent-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--c-muted);
  cursor: pointer;
}
.exit-intent-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.exit-intent-buttons a {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  padding: 10px;
}

/* ─── PRICING TABLE ─── */
.pricing-preview {
  margin: var(--sp-2xl) 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.pricing-table th, .pricing-table td {
  padding: 15px;
  border-bottom: 1px solid var(--c-border);
}
.pricing-table th {
  font-weight: 800;
  color: var(--c-muted);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td:nth-child(2) {
  font-weight: bold;
  color: var(--c-primary);
}
[data-theme="light"] .pricing-table td:nth-child(2) {
  color: var(--c-primary);
}
.pricing-table td:nth-child(3) {
  color: var(--c-muted);
}
.pricing-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--c-muted);
  text-align: center;
}

/* ─── WARRANTY PROMISE ─── */
.warranty-promise {
  display: none !important; /* Disabled by user request */
  align-items: center;
  gap: var(--sp-md);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: var(--sp-md);
  border-radius: var(--r-md);
  margin: var(--sp-lg) 0;
}
.warranty-icon {
  width: 32px;
  height: 32px;
  fill: var(--c-success);
  flex-shrink: 0;
}
.warranty-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-text);
  margin: 0;
}


/* ═══════════════════════════════════════════════
   PREMIUM HEADER RE-LAYOUT
   ═══════════════════════════════════════════════ */
/* Push Logo to left edge and controls to right edge */
header .container {
  max-width: 100% !important;
  padding-left: 4% !important;
  padding-right: 4% !important;
}

/* Premium Language Switch */
.lang-switch-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--c-border);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--c-text);
  outline: none;
}
.lang-switch-wrapper:hover {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.15);
}
.lang-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--c-muted);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  letter-spacing: 0.5px;
}
.lang-toggle-track {
  position: relative;
  width: 40px;
  height: 22px;
  background: rgba(15, 23, 42, 0.1);
  border-radius: var(--r-pill);
  border: 1px inset rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}
.lang-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: var(--c-call);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(245, 158, 11, 0.6);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Active States based on Body Class */
body.lang-active-ta .lang-toggle-slider {
  transform: translateX(0); /* TA is left */
}
body:not(.lang-active-ta) .lang-toggle-slider {
  transform: translateX(18px); /* EN is right */
}
body.lang-active-ta #lang-label-ta {
  color: var(--c-call);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}
body:not(.lang-active-ta) #lang-label-en {
  color: var(--c-call);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Hide original simple button if it gets orphaned */
button#lang-toggle.btn-control {
  display: none !important;
}

/* Reduce Navbar Font Size and Padding specifically for Tamil to prevent overflow */
body.lang-active-ta header nav a {
  font-size: 0.85rem !important;
  padding: 0.3rem 0.5rem !important;
}

/* ═══════════════════════════════════════════════
   UNIVERSAL NAVBAR RESPONSIVENESS FIX
   ═══════════════════════════════════════════════ */

/* Hide the top-level status badge on screens smaller than 1150px to save space.
   The same badge is available inside the mobile menu. */
@media (max-width: 1150px) {
  .header-controls > #shop-status {
    display: none !important;
  }
  
  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }
  
  header nav {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 300px;
    max-width: 85%;
    background-color: #FFFFFF !important;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 9999 !important;
    overflow-y: auto;
    padding: 80px 24px var(--sp-xl) 24px;
    
    /* Smooth slide-in from right to left */
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  }
  
  header nav.nav-active {
    transform: translateX(0);
    visibility: visible;
  }

  /* Premium Backdrop Overlay when menu is active */
  body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  body.nav-menu-open::after {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Active link styles in mobile nav overlay */
  header nav a.nav-active-link,
  header nav a[aria-current="page"] {
    color: var(--c-call) !important;
    background-color: rgba(37, 99, 235, 0.05) !important;
    border-left: 4px solid var(--c-call) !important;
    padding-left: var(--sp-md) !important;
    font-weight: 800 !important;
  }
  
  header nav ul[role="list"] {
    display: flex !important;
    flex-direction: column;
    padding: var(--sp-md) var(--sp-lg);
    gap: var(--sp-xs);
  }
  
  header nav a {
    width: 100%;
    display: block;
    padding: var(--sp-sm) 0;
    color: var(--c-text) !important;
    border-bottom: 1px solid var(--c-border);
  }
  
  header nav a::after {
    display: none !important;
  }
  
  .nav-mobile-extras {
    display: flex !important;
    flex-direction: column;
    padding: var(--sp-md) var(--sp-lg);
    gap: 10px;
  }
}

/* Extremely small screens (phones in portrait) */
@media (max-width: 480px) {
  .logo-text {
    font-size: 1.1rem !important;
  }
  body.lang-active-ta .logo-text {
    font-size: 0.82rem !important;
  }
  .logo-sub {
    font-size: 0.65rem !important;
  }
  body.lang-active-ta .logo-sub {
    font-size: 0.6rem !important;
  }
  .lang-switch-wrapper {
    padding: 4px 8px !important;
    gap: 6px !important;
  }
  .lang-label {
    font-size: 0.75rem !important;
  }

  /* Extremely Compact Pricing Table for Small Phones */
  .pricing-preview {
    padding: 10px 8px 55px 8px !important; /* Extra bottom padding inside card to prevent button overlap */
    margin: var(--sp-md) var(--sp-sm) var(--sp-xl) var(--sp-sm) !important; /* Inset margins on small borders */
  }
  .pricing-table th, .pricing-table td {
    padding: 8px 4px !important;
    font-size: 0.76rem !important;
  }
  .pricing-table th {
    font-size: 0.68rem !important;
    letter-spacing: 0.5px !important;
  }
  .pricing-table td {
    word-break: break-word !important;
  }
}

/* Ensure hamburger/close icon is large and centered */
.nav-toggle span {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
}

/* Grounding Footer overrides for Premium Light Theme contrast */
footer {
  background-color: var(--c-primary) !important;
  border-top: 5px solid var(--c-call) !important;
}
footer h3 {
  color: #FFFFFF !important;
}
footer p, footer address, footer span {
  color: hsla(210, 40%, 98%, 0.7) !important;
}
footer a {
  color: hsla(210, 40%, 98%, 0.8) !important;
}
footer a:hover {
  color: var(--c-call) !important;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}
footer .footer-bottom a {
  color: #FFFFFF !important;
}

/* Premium Grid Gallery Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

.gallery-grid picture:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid picture:nth-child(1) img {
  object-position: center 8%;
}

.gallery-grid picture img:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-grid picture:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-grid picture:nth-child(1) {
    grid-column: span 1;
    grid-row: span 2;
  }
}

