:root {
  --bg: #FDFCFB;
  --bg-strong: #F7F5F2;
  --surface: rgba(255, 255, 255, 1);
  --surface-strong: rgba(255, 255, 255, 1);
  --ink: #1A2B4C;
  --muted: #5A6A8C;
  --line: rgba(26, 43, 76, 0.1);
  --accent: #C5A059;
  --accent-deep: #A67C3A;
  --accent-soft: #E8D8B5;
  --leaf: #4C7E6A;
  --shadow: 0 12px 40px rgba(26, 43, 76, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1200px;
  --font-sans: "Plus Jakarta Sans", "Noto Sans Tamil", system-ui, -apple-system, sans-serif;
  --font-display: "Lora", "Noto Sans Tamil", Georgia, serif;
  --font-primary: var(--font-display);

  /* Premium Concierge - Solid & Clean */
  --glass-bg: rgba(255, 255, 255, 1);
  --glass-bg-strong: rgba(255, 255, 255, 1);
  --glass-line: rgba(26, 43, 76, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] {
  --bg: #f4f2ee;
  --bg-strong: #ebe7df;
  --surface: rgba(255, 253, 248, 0.9);
  --surface-strong: rgba(255, 252, 246, 0.97);
  --ink: #2d2a23;
  --muted: #6a6253;
  --line: rgba(110, 96, 70, 0.22);
  --accent: #b58b48;
  --accent-deep: #7b5c2a;
  --accent-soft: #584326;
  --leaf: #a88245;
  --shadow: 0 18px 38px rgba(90, 78, 56, 0.14);
  
  /* Light Theme Glass Variables */
  --glass-bg: rgba(255, 252, 246, 0.78);
  --glass-bg-strong: rgba(255, 250, 242, 0.92);
  --glass-line: rgba(181, 139, 72, 0.25);
  --glass-shadow: 0 8px 32px rgba(90, 78, 56, 0.15);
}

[data-theme="contrast"] {
  --bg: #000000;
  --bg-strong: #050505;
  --surface: rgba(0, 0, 0, 0.96);
  --surface-strong: rgba(8, 8, 8, 0.98);
  --ink: #ffffff;
  --muted: #f2dd58;
  --line: rgba(255, 224, 45, 0.7);
  --accent: #ffe700;
  --accent-deep: #ffe700;
  --accent-soft: #fff5a5;
  --leaf: #ffe700;
  --shadow: 0 0 0 rgba(0, 0, 0, 0);
  
  /* Contrast Theme - Solid colors, no glass */
  --glass-bg: #000000;
  --glass-bg-strong: #000000;
  --glass-line: rgba(255, 224, 45, 0.72);
  --glass-shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
}

[data-theme="light"] body {
  background:
    radial-gradient(circle at top left, rgba(169, 134, 77, 0.15), transparent 40%),
    radial-gradient(circle at top right, rgba(140, 112, 72, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(250, 246, 237, 0.55) 0%, rgba(244, 242, 238, 0.65) 50%, rgba(232, 228, 218, 0.55) 100%),
    var(--site-bg-image);
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

[data-theme="contrast"] body {
  background: #000000;
}

body::before,
body::after {
  display: none;
}

body::before {
  top: 8%;
  right: 4%;
  width: 220px;
  height: 220px;
  background: hsla(var(--brand-hue), var(--brand-sat), 60%, 0.14);
  border-radius: 38% 62% 48% 52% / 45% 42% 58% 55%;
}

body::after {
  bottom: 10%;
  left: 4%;
  width: 280px;
  height: 280px;
  background: hsla(var(--brand-hue), var(--brand-sat), 50%, 0.12);
  border-radius: 60% 40% 65% 35% / 42% 48% 52% 58%;
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.hero {
  padding: 18px 0 40px;
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--glass-line);
  border-radius: 999px;

  background: var(--glass-bg);

  box-shadow: var(--shadow);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  display: none;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  display: none;
  width: 60px;
  height: 60px;
  padding: 3px;
  border: 1px solid hsla(var(--brand-hue), var(--brand-sat), 60%, 0.18);
  border-radius: 16px;
  background: linear-gradient(180deg, hsla(var(--brand-hue), var(--brand-sat), 60%, 0.12), hsla(var(--brand-hue), var(--brand-sat), 60%, 0.04));
  object-fit: cover;
  object-position: 14% 16%;
  filter: drop-shadow(0 10px 20px hsla(var(--brand-hue), var(--brand-sat), 60%, 0.16));
}

.brand.has-logo .brand-logo {
  display: block;
}

.brand.has-logo .brand-mark-fallback {
  display: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-primary);
  font-size: 1.34rem;
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--ink);
}

.brand small {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1.9rem;
  box-shadow: 0 8px 16px hsla(var(--brand-hue), var(--brand-sat), 30%, 0.3);
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-weight: 600;
  min-width: 0;
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  font-weight: 650;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.topbar-links a:hover,
.topbar-links a:focus-visible {
  transform: translateY(-1px);
  color: var(--ink);
  border-color: var(--glass-line);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(8px) saturate(1.05);
}

.topbar-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
}

.mobile-pref-toggle {
  display: none;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(245, 205, 86, 0.18);
  background: rgba(255, 232, 153, 0.08);
  color: var(--accent-soft);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-pref-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang-switcher {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 215, 110, 0.12);
}

.lang-button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--accent);
  color: #0d0b07;
}

.theme-toggle {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(245, 205, 86, 0.22);
  border-radius: 999px;
  background: rgba(255, 232, 153, 0.1);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(245, 205, 86, 0.32);
  color: var(--ink);
}

[data-theme="light"] .topbar {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

[data-theme="light"] .topbar-links a {
  border-color: rgba(123, 92, 42, 0.22);
  background: rgba(181, 139, 72, 0.09);
  color: #4b3d2a;
}

[data-theme="light"] .topbar-links a:hover,
[data-theme="light"] .topbar-links a:focus-visible {
  border-color: rgba(123, 92, 42, 0.34);
  background: rgba(181, 139, 72, 0.14);
  color: var(--ink);
}

[data-theme="light"] .topbar-tools {
  border-color: var(--glass-line);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
}

[data-theme="light"] .mobile-pref-toggle {
  border-color: rgba(123, 92, 42, 0.24);
  background: rgba(181, 139, 72, 0.12);
  color: #5a472d;
}

[data-theme="light"] .lang-switcher {
  background: rgba(181, 139, 72, 0.14);
}

[data-theme="light"] .theme-toggle {
  border-color: rgba(123, 92, 42, 0.24);
  background: rgba(255, 255, 255, 0.7);
  color: #4f4230;
}

[data-theme="light"] .brand strong {
  color: #342a1d;
}

[data-theme="light"] .brand small {
  color: #766447;
}

[data-theme="contrast"] .topbar,
[data-theme="contrast"] .hero-copy,
[data-theme="contrast"] .hero-card,
[data-theme="contrast"] .coverage-panel,
[data-theme="contrast"] .contact-card,
[data-theme="contrast"] .location-panel,
[data-theme="contrast"] .reviews-panel,
[data-theme="contrast"] .card-grid article,
[data-theme="contrast"] .intro-grid article,
[data-theme="contrast"] .service-card,
[data-theme="contrast"] .step {
  background: #000000;
  border-color: rgba(255, 224, 45, 0.72);
  box-shadow: none;
}

[data-theme="light"] .hero-card {
  background: var(--glass-bg-strong);
}

[data-theme="light"] .hero-points li {
  color: #4c4438;
}

[data-theme="contrast"] .hero-points li {
  color: #ffffff;
}

[data-theme="light"] .card-grid article,
[data-theme="light"] .intro-grid article,
[data-theme="light"] .step {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

[data-theme="light"] .service-card {
  background: var(--glass-bg);
  border-color: var(--glass-line);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

[data-theme="light"] .section.services .section-heading {
  border-left-color: var(--accent);
}

[data-theme="light"] .section.services .section-heading .eyebrow {
  color: var(--accent-deep);
  text-shadow: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 700;
  background: var(--surface);
}

[data-theme="light"] .section.services .section-heading h2 {
  color: var(--ink);
  text-shadow: none;
}

[data-theme="light"] .section.services .section-heading h2 span {
  color: var(--accent-deep);
}

[data-theme="light"] .hero-copy,
[data-theme="light"] .hero-card,
[data-theme="light"] .coverage-panel,
[data-theme="light"] .location-panel,
[data-theme="light"] .reviews-panel,
[data-theme="light"] .contact-card {
  background: var(--glass-bg);
  border-color: var(--glass-line);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--glass-shadow);
}

[data-theme="light"] .coverage-tags span {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  color: #3f3527;
  border-color: var(--glass-line);
}

[data-theme="light"] .coverage-outstation-label {
  color: var(--accent-deep);
}

[data-theme="light"] .review-card {
  background: var(--glass-bg);
  border-color: var(--glass-line);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: var(--glass-shadow);
}

[data-theme="light"] .review-name {
  color: #3f372b;
}

[data-theme="light"] .review-text {
  color: #5b5142;
}

[data-theme="light"] .carousel-control {
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-color: var(--glass-line);
  color: var(--accent-deep);
}

[data-theme="light"] .carousel-dot {
  background: rgba(110, 96, 70, 0.26);
}

[data-theme="light"] .contact-card {
  background: var(--glass-bg-strong);
  color: var(--ink);
}

[data-theme="light"] .contact-card .eyebrow,
[data-theme="light"] .contact-card p {
  color: var(--muted);
}

[data-theme="light"] .contact-details strong,
[data-theme="light"] .contact-note a {
  color: var(--accent-deep);
}

[data-theme="light"] .contact-note {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border-color: var(--glass-line);
}

[data-theme="light"] .contact-card .button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(110, 96, 70, 0.3);
  color: var(--ink);
}

[data-theme="light"] .button.icon-action {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border-color: var(--glass-line);
}

[data-theme="light"] .contact-card .icon-action {
  box-shadow: 0 8px 18px rgba(80, 68, 48, 0.12);
}

[data-theme="light"] .contact-card .icon-action.social-whatsapp {
  color: #1fb95a;
}

[data-theme="light"] .contact-card .icon-action.social-facebook {
  color: #166fe5;
}

[data-theme="light"] .contact-card .icon-action.social-instagram {
  color: #d62976;
}

[data-theme="light"] .button.icon-action.social-google {
  color: #1a73e8;
}

[data-theme="light"] .button.icon-action.social-call {
  color: #8a672f;
}

[data-theme="light"] .icon-action.social-call {
  color: #3b2a15;
}

[data-theme="light"] .location-details a {
  color: var(--accent-deep);
}

[data-theme="light"] .map-frame {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(110, 96, 70, 0.24);
}

[data-theme="contrast"] .button-primary,
[data-theme="contrast"] .lang-button.is-active {
  background: #ffe700;
  color: #000000;
  box-shadow: none;
}

[data-theme="contrast"] .button-secondary,
[data-theme="contrast"] .theme-toggle,
[data-theme="contrast"] .lang-switcher,
[data-theme="contrast"] .coverage-tags span,
[data-theme="contrast"] .carousel-control {
  background: #000000;
  border-color: rgba(255, 224, 45, 0.72);
  color: #ffffff;
}

[data-theme="contrast"] .button.icon-action {
  background: #000000;
  border-color: rgba(255, 224, 45, 0.72);
}

[data-theme="contrast"] .icon-action {
  box-shadow: none;
}

[data-theme="contrast"] .icon-action.social-whatsapp,
[data-theme="contrast"] .icon-action.social-facebook,
[data-theme="contrast"] .icon-action.social-instagram,
[data-theme="contrast"] .icon-action.social-google {
  color: #ffe700;
}

[data-theme="contrast"] .brand-mark,
[data-theme="contrast"] .service-index,
[data-theme="contrast"] .hero-brand-caption,
[data-theme="contrast"] .eyebrow,
[data-theme="contrast"] .quick-contact a,
[data-theme="contrast"] .reviews-aggregate-score,
[data-theme="contrast"] .reviews-aggregate-stars {
  color: #ffe700;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 26px;
  align-items: stretch;
  padding-top: 42px;
}

.hero-copy,
.hero-card,
.coverage-panel,
.contact-card {
  border: 1px solid var(--glass-line);
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--glass-shadow);
}

.hero-copy {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg-strong);
}

.hero-logo-mobile-panel {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0 22px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-line);
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
}

.hero-logo-mobile {
  width: min(100%, 210px);
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.26));
}

.hero-brand-caption {
  margin: 14px 0 0;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep) !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem !important;
  font-weight: 700;
}

h1,
h2,
h3,
.step strong,
.service-index {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

html[lang="ta"] h1,
html[lang="ta"] h2 {
  font-family: "Noto Sans Tamil", var(--font-sans);
}

html[lang="ta"] h1 {
  max-width: 15ch;
  font-size: clamp(2.1rem, 4.1vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-text,
.intro-grid p,
.service-card p,
.step p,
.contact-card p,
.availability-panel p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-actions {
  align-items: center;
  justify-content: flex-start;
}

.icon-action {
  width: 64px;
  min-width: 64px;
  min-height: 64px;
  padding: 0;
  border-radius: 50%;
  flex: 0 0 64px;
}

.icon-action svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.icon-action svg.icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 600;
}

.quick-contact a {
  color: var(--accent-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #15100a;
  box-shadow: 0 14px 28px rgba(197, 160, 89, 0.22);
}

.button-secondary {
  border-color: rgba(245, 205, 86, 0.18);
  background: rgba(255, 232, 153, 0.06);
}

.button.icon-action {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  padding: 0;
  border-radius: 999px;
  flex: 0 0 64px;
  background: rgba(255, 232, 153, 0.06);
  border-color: rgba(245, 205, 86, 0.2);
}

.button.icon-action.social-call {
  color: #d3a043;
}

.button.icon-action.social-whatsapp {
  color: #25d366;
}

.button.icon-action.social-facebook {
  color: #1877f2;
}

.button.icon-action.social-instagram {
  color: #e1306c;
}

.button.icon-action.social-google {
  color: #4285f4;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: #f5e8bb;
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(242, 201, 76, 0.14);
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg-strong);
}

.hero-brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-line);
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  overflow: hidden;
}

.hero-brand-logo {
  width: min(100%, 280px);
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.card-label {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card-grid article,
.intro-grid article,
.service-card,
.step {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-line);
  position: relative;
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
}

.card-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.card-grid span {
  color: var(--muted);
}

.availability-panel {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #15100a;
}

.availability-panel strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}

.availability-panel p {
  margin: 4px 0 0;
  color: rgba(13, 11, 7, 0.78);
  font-size: 0.94rem;
  line-height: 1.45;
}

.pulse {
  display: inline-block;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #78efc7;
  box-shadow: 0 0 0 0 rgba(120, 239, 199, 0.5);
  animation: pulse 1.8s infinite;
}

.section {
  padding: 34px 0;
  position: relative;
}

/* Section gradient backgrounds */
.section.services {
  background: linear-gradient(180deg, transparent 0%, rgba(242, 201, 76, 0.03) 50%, transparent 100%);
}

.section.reviews {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 232, 153, 0.04) 30%, rgba(242, 201, 76, 0.02) 70%, transparent 100%);
}

.section.contact {
  background: linear-gradient(180deg, transparent 0%, rgba(191, 143, 22, 0.03) 50%, transparent 100%);
}

.section.location {
  background: linear-gradient(180deg, rgba(242, 201, 76, 0.02) 0%, transparent 50%, rgba(255, 232, 153, 0.03) 100%);
}

/* Careers Section - Career Header & Icon Styles */
.career-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px 0;
}

.career-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.career-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(217, 170, 92, 0.15), rgba(191, 143, 22, 0.1));
  border: 1.5px solid rgba(217, 170, 92, 0.35);
  border-radius: 12px;
  padding: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
}

.career-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

[data-theme="light"] .career-icon {
  background: linear-gradient(145deg, rgba(181, 139, 72, 0.18), rgba(123, 92, 42, 0.12));
  border-color: rgba(181, 139, 72, 0.45);
  color: #8a6a35;
}

/* Careers Grid Layout */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Career badge positioning */
.career-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, #5b8bd8, #3d6ab5);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(91, 139, 216, 0.35);
  z-index: 2;
}

/* Section floating animation */
@keyframes section-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Section glow pulse */
@keyframes section-glow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.section::before {
  display: none;
}

.section:nth-child(even)::before {
  left: auto;
  right: 5%;
  animation-delay: -4s;
}

/* Light theme section backgrounds */
[data-theme="light"] .section.services {
  background: linear-gradient(180deg, transparent 0%, rgba(181, 139, 72, 0.06) 50%, transparent 100%);
}

[data-theme="light"] .section.reviews {
  background: linear-gradient(180deg, transparent 0%, rgba(181, 139, 72, 0.08) 30%, rgba(123, 92, 42, 0.04) 70%, transparent 100%);
}

[data-theme="light"] .section.contact {
  background: linear-gradient(180deg, transparent 0%, rgba(181, 139, 72, 0.06) 50%, transparent 100%);
}

[data-theme="light"] .section.location {
  background: linear-gradient(180deg, rgba(181, 139, 72, 0.04) 0%, transparent 50%, rgba(181, 139, 72, 0.06) 100%);
}

[data-theme="light"] .section::before {
  background: radial-gradient(circle, rgba(181, 139, 72, 0.12), transparent 70%);
}

.section-heading {
  margin-bottom: 22px;
}

/* Services section - improved heading visibility */
.section.services .section-heading {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 48px;
  padding-left: 24px;
  border-left: 4px solid var(--accent);
}

.section.services .section-heading .eyebrow {
  display: inline-block;
  font-size: 0.75rem !important;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 8px 0;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.section.services .section-heading h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink);
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.section.services .section-heading h2 span {
  color: var(--accent-soft);
}

.intro-grid,
.service-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 220px;
}

.service-card.featured-outstation {
  border-color: var(--accent);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.service-index {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.coverage-panel,
.location-panel,
.contact-card {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-line);
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--glass-shadow);
}

.coverage-panel {
  grid-template-columns: 0.95fr 1.05fr;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coverage-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border: 1px solid var(--glass-line);
  color: var(--accent-soft);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.coverage-tags span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.14);
}

.coverage-copy {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.coverage-outstation-label {
  margin: 20px 0 10px;
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.location-panel {
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--glass-line);
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--glass-shadow);
}

.location-copy > p {
  color: var(--muted);
  line-height: 1.7;
}

.location-details {
  margin-top: 18px;
}

.location-details p {
  margin: 0 0 8px;
  color: var(--muted);
}

.location-details strong {
  color: var(--ink);
}

.location-details a {
  color: var(--accent-deep);
  font-weight: 700;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.reviews-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-line);
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  flex-shrink: 0;
}

.reviews-aggregate-score {
  font-family: var(--font-display);
  color: var(--accent);
}

.reviews-aggregate-stars {
  display: block;
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.reviews-aggregate-label {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.reviews-carousel-wrapper {
  position: relative;
}

.reviews-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 220px;
}

.carousel-item {
  display: none !important;
  animation: carousel-fade-in 500ms ease forwards;
}

.carousel-item.is-active {
  display: flex !important;
  flex-direction: column;
  padding-left: 56px;
  padding-right: 56px;
}

@keyframes carousel-fade-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-line);
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  color: var(--accent-deep);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  z-index: 2;
}

.carousel-prev {
  left: 8px;
}

.carousel-next {
  right: 8px;
}

.carousel-control:hover {
  background: rgba(255, 232, 153, 0.12);
  border-color: rgba(245, 205, 86, 0.28);
  transform: translateY(-50%) scale(1.06);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 232, 153, 0.2);
  cursor: pointer;
  transition: all 300ms ease;
}

.carousel-dot.is-active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

.carousel-dot:hover {
  background: rgba(255, 232, 153, 0.4);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--av-color, #bf8f16);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.review-name {
  margin: 0;
  color: #f5e8bb;
  font-weight: 700;
  font-size: 0.95rem;
}

.review-stars {
  margin: 3px 0 0;
  color: #fbbc04;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.review-google-badge {
  margin-left: auto;
  flex-shrink: 0;
  display: block;
}

.review-google-badge svg {
  width: 22px;
  height: 22px;
  display: block;
}

.review-text {
  margin: 0;
  color: rgba(247, 232, 172, 0.78);
  line-height: 1.65;
  font-size: 0.96rem;
}

.reviews-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

.reviews-actions .icon-action {
  width: 64px;
  min-width: 64px;
  min-height: 64px;
  flex: 0 0 64px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .reviews-actions .icon-action {
  box-shadow: 0 8px 18px rgba(80, 68, 48, 0.12);
}

[data-theme="contrast"] .reviews-actions .icon-action {
  box-shadow: none;
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-line);
  background: var(--glass-bg);
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step strong {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 223, 116, 0.24), rgba(191, 143, 22, 0.18));
  font-size: 1.4rem;
}

.contact-card {
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--glass-bg-strong);
  color: #f8ecbf;
}

.contact-card .eyebrow,
.contact-card p {
  color: rgba(248, 236, 191, 0.82);
}

.contact-card .button-secondary {
  background: rgba(255, 223, 116, 0.08);
  border-color: rgba(255, 223, 116, 0.18);
  color: #f8ecbf;
}

.contact-card .icon-action.social-whatsapp {
  color: #25d366;
}

.contact-card .icon-action.social-facebook {
  color: #1877f2;
}

.contact-card .icon-action.social-instagram {
  color: #e1306c;
}

.contact-card .icon-action {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.contact-details {
  margin-top: 20px;
}

.contact-details p {
  margin: 0 0 8px;
}

.contact-details strong {
  color: var(--accent);
}

.contact-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border: 1px solid var(--glass-line);
}

.contact-note p {
  margin: 0 0 10px;
}

.contact-note p:last-child {
  margin-bottom: 0;
}

.contact-note a {
  color: var(--accent);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 4px 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 20px;
  z-index: 20;
  display: none;
  gap: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 0;
  transform: translateY(8px);
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.is-visible {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 10px 18px rgba(0, 0, 0, 0.38);
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: mobile-cta-lift 2.6s ease-in-out infinite;
}

.mobile-cta a::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.35;
  pointer-events: none;
  animation: mobile-cta-glow 2.6s ease-in-out infinite;
}

.mobile-cta-call {
  animation-delay: 0s;
}

.mobile-cta-whatsapp {
  animation-delay: 0.22s;
}

.mobile-cta-call {
  flex: 0 0 54px;
  background: var(--accent);
  color: #0d0b07;
}

.mobile-cta-whatsapp {
  flex: 0 0 54px;
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #f7fffb;
}

.mobile-cta-icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
  display: block;
}

.mobile-cta-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-chip {
  position: fixed;
  right: 14px;
  bottom: 80px;
  z-index: 21;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 2px solid rgba(91, 139, 216, 0.6);
  background: linear-gradient(145deg, rgba(91, 139, 216, 0.45), rgba(74, 112, 179, 0.35));
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  color: #a8c8f5;
  font-weight: 800;
  font-size: 0.92rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  box-shadow:
    0 4px 16px rgba(91, 139, 216, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  transform: translateY(8px);
}

.mobile-chip.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-theme="light"] .mobile-chip {
  background: linear-gradient(145deg, rgba(91, 139, 216, 0.4), rgba(74, 112, 179, 0.35));
  border-color: rgba(91, 139, 216, 0.6);
  color: #1a2d4a;
  text-shadow: none;
  box-shadow:
    0 4px 16px rgba(91, 139, 216, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mobile-nav {
  display: none;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 120ms;
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1), transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

body.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered reveal delays */
body.motion-ready .reveal-delay-1 {
  transition-delay: 100ms;
}

body.motion-ready .reveal-delay-2 {
  transition-delay: 200ms;
}

body.motion-ready .reveal-delay-3 {
  transition-delay: 300ms;
}

body.motion-ready .reveal-delay-4 {
  transition-delay: 400ms;
}

/* Card hover lift animation */
.service-card,
.review-card,
.step,
.card-grid article {
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.service-card:hover,
.review-card:hover,
.step:hover,
.card-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .service-card:hover,
[data-theme="light"] .review-card:hover,
[data-theme="light"] .step:hover,
[data-theme="light"] .card-grid article:hover {
  box-shadow: 0 20px 40px rgba(90, 78, 56, 0.12);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(120, 239, 199, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(120, 239, 199, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(120, 239, 199, 0);
  }
}

@media (max-width: 980px) {
  .hero-content,
  .intro-grid,
  .service-grid,
  .step-grid,
  .location-panel,
  .coverage-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px 12px;
    padding: 13px 14px;
    border-radius: 28px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    grid-column: 1 / 2;
    grid-row: 1;
    min-width: 0;
  }

  .topbar-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 9px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 1px;
    padding-right: 10px;
    padding-bottom: 1px;
    padding-left: 1px;
    scroll-padding-inline: 10px;
    font-size: 0.92rem;
  }

  .topbar-links::-webkit-scrollbar {
    display: none;
  }

  .topbar-links a {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 35px;
    padding: 0 13px;
    border-radius: 999px;
  }

  .lang-switcher {
    align-self: center;
  }

  .topbar-tools {
    grid-column: 2 / 3;
    grid-row: 1;
    width: auto;
    justify-content: flex-end;
    gap: 6px;
    margin-left: auto;
    padding: 2px;
    align-self: center;
  }

  .theme-toggle {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .lang-button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  h1 {
    max-width: none;
  }

  html[lang="ta"] h1 {
    font-size: clamp(1.85rem, 5.6vw, 3.05rem);
    line-height: 1.15;
  }

  .hero-logo-mobile-panel {
    display: flex;
  }

  .hero-brand-panel {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-header {
    flex-direction: column;
  }

  .reviews-aggregate {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 164px;
  }

  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .hero-copy,
  .hero-card,
  .coverage-panel,
  .contact-card {
    padding: 24px;
  }

  .coverage-tags {
    gap: 10px;
  }

  .coverage-tags span {
    font-size: 0.9rem;
    padding: 10px 13px;
  }

  .hero-card {
    gap: 18px;
    padding: 22px;
  }

  .hero-copy {
    padding-bottom: 120px;
  }

  .quick-contact,
  .hero-points {
    position: relative;
    z-index: 0;
  }

  .topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0 8px;
    padding: 11px 12px;
    border-radius: 999px;
    overflow: visible;
    position: relative;
    z-index: 70;
  }

  .topbar::after {
    content: "";
    grid-column: 1 / 2;
    grid-row: 1;
    width: 38px;
    height: 1px;
    visibility: hidden;
  }

  .mobile-pref-toggle {
    display: inline-flex;
    grid-column: 3 / 4;
    grid-row: 1;
    justify-self: end;
  }

  .topbar-links {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 24;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid var(--glass-line);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    box-shadow: var(--glass-shadow);
  }

  .mobile-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border-radius: 10px;
    border: 1px solid var(--glass-line);
    background: var(--glass-bg);
    backdrop-filter: blur(10px) saturate(1.05);
    -webkit-backdrop-filter: blur(10px) saturate(1.05);
    color: #dec98a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.1;
  }

  html[lang="ta"] .mobile-nav a {
    font-size: 0.65rem;
    padding: 0 3px;
  }

  [data-theme="light"] .mobile-nav {
    border-color: var(--glass-line);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    box-shadow: var(--glass-shadow);
  }

  [data-theme="light"] .mobile-nav a {
    border-color: var(--glass-line);
    background: var(--glass-bg);
    backdrop-filter: blur(10px) saturate(1.05);
    -webkit-backdrop-filter: blur(10px) saturate(1.05);
    color: #4f412f;
  }

  [data-theme="contrast"] .mobile-nav {
    border-color: rgba(255, 224, 45, 0.72);
    background: #000000;
    box-shadow: none;
  }

  [data-theme="contrast"] .mobile-nav a {
    border-color: rgba(255, 224, 45, 0.72);
    background: #000000;
    color: #ffffff;
  }

  .topbar-tools {
    position: static;
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    z-index: 90;
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    transform: none;
    width: auto;
    justify-content: flex-start;
    gap: 5px;
    padding: 5px;
    border-color: var(--glass-line);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    box-shadow: var(--glass-shadow);
  }

  .topbar-tools.is-open {
    display: inline-flex;
  }

  [data-theme="light"] .topbar-tools {
    border-color: var(--glass-line);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    box-shadow: var(--glass-shadow);
  }

  [data-theme="contrast"] .mobile-pref-toggle {
    border-color: rgba(255, 224, 45, 0.72);
    background: #000000;
    color: #ffffff;
  }

  [data-theme="contrast"] .topbar-tools {
    border-color: rgba(255, 224, 45, 0.72);
    background: #000000;
    box-shadow: none;
  }

  .lang-switcher {
    padding: 4px;
    gap: 4px;
  }

  .lang-button,
  .theme-toggle {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .brand {
    position: static;
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: center;
    transform: none;
    width: auto;
    max-width: none;
    margin: 0;
    min-width: 0;
    justify-content: center;
    gap: 8px;
    padding: 0;
    text-align: center;
  }

  .brand > span {
    padding: 0;
  }

  .brand-logo,
  .brand-mark-fallback {
    display: none !important;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  html[lang="ta"] h1 {
    font-size: clamp(1.7rem, 7.8vw, 2.45rem);
    line-height: 1.17;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .availability-panel {
    gap: 10px;
    padding: 12px 14px;
  }

  .availability-panel strong {
    font-size: 0.94rem;
  }

  .availability-panel p {
    margin-top: 2px;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .pulse {
    flex-basis: 10px;
    width: 10px;
    height: 10px;
  }

  .button,
  .location-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .contact-actions .icon-action {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    flex: 0 0 64px;
  }

  .reviews-actions .icon-action,
  .reviews-actions .button {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    flex: 0 0 64px;
  }

  .contact-actions .icon-action svg,
  .reviews-actions .icon-action svg {
    width: 31px;
    height: 31px;
  }

  .mobile-cta {
    display: flex;
    bottom: 88px;
    transform: translateY(8px);
  }

  .mobile-chip {
    display: inline-flex;
    bottom: 154px;
  }

  .reviews-carousel-wrapper {
    margin: 0 -4px;
  }

  .carousel-control {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .carousel-item.is-active {
    padding-left: 46px;
    padding-right: 46px;
  }

  .carousel-prev {
    left: 6px;
  }

  .carousel-next {
    right: 6px;
  }

  .carousel-indicators {
    gap: 8px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-dot.is-active {
    width: 20px;
  }
}

@keyframes mobile-cta-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes mobile-cta-lift {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.14),
      0 10px 18px rgba(0, 0, 0, 0.38);
  }
  50% {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.2),
      0 14px 24px rgba(0, 0, 0, 0.5);
  }
}

@keyframes mobile-cta-glow {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-cta a {
    animation: none;
  }
}

/* 2026 visual refresh */
:root {
  /* Theme Controls - Change these to rebrand the entire site */
  --brand-hue: 220; /* 220 = Blue, 280 = Purple, 160 = Teal, etc. */
  --brand-sat: 90%;
  --success-hue: 160;

  /* Dark Theme Colors */
  --bg: hsl(var(--brand-hue), 10%, 4%);
  --bg-strong: hsl(var(--brand-hue), 10%, 10%);
  --surface: hsla(var(--brand-hue), 10%, 10%, 0.86);
  --surface-strong: hsla(var(--brand-hue), 10%, 16%, 0.96);
  
  --ink: hsl(var(--brand-hue), 10%, 98%);
  --muted: hsl(var(--brand-hue), 10%, 65%);
  --line: hsla(var(--brand-hue), 10%, 100%, 0.1);
  
  /* Accent Colors */
  --accent: hsl(var(--brand-hue), var(--brand-sat), 60%);
  --accent-deep: hsl(var(--brand-hue), var(--brand-sat), 50%);
  --accent-soft: hsl(var(--brand-hue), var(--brand-sat), 80%);
  --leaf: hsl(var(--success-hue), 84%, 40%);

  /* Design Tokens */
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-sans: "Plus Jakarta Sans", "Noto Sans Tamil", system-ui, -apple-system, sans-serif;
  --font-display: "Lora", "Noto Sans Tamil", Georgia, serif;
  --font-primary: var(--font-display);
  --nav-height: 78px;
  --site-bg-image: url("assets/site-background.png");
  
  /* Glass Variables (Now Matte) */
  --glass-bg: hsla(var(--brand-hue), 10%, 10%, 0.85);
  --glass-bg-strong: hsla(var(--brand-hue), 10%, 16%, 0.95);
  --glass-line: hsla(var(--brand-hue), 10%, 100%, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] {
  /* Light Theme Colors */
  --bg: hsl(var(--brand-hue), 10%, 100%);
  --bg-strong: hsl(var(--brand-hue), 10%, 96%);
  --surface: hsla(var(--brand-hue), 10%, 100%, 0.92);
  --surface-strong: hsla(var(--brand-hue), 10%, 96%, 0.96);
  
  --ink: hsl(var(--brand-hue), 10%, 4%);
  --muted: hsl(var(--brand-hue), 10%, 45%);
  --line: hsla(var(--brand-hue), 10%, 0%, 0.08);
  
  --accent: hsl(var(--brand-hue), var(--brand-sat), 50%);
  --accent-deep: hsl(var(--brand-hue), var(--brand-sat), 40%);
  --accent-soft: hsl(var(--brand-hue), var(--brand-sat), 90%);
  --leaf: hsl(var(--success-hue), 84%, 35%);
  
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
  --glass-bg: hsla(var(--brand-hue), 10%, 100%, 0.9);
  --glass-bg-strong: hsla(var(--brand-hue), 10%, 96%, 0.98);
  --glass-line: hsla(var(--brand-hue), 10%, 0%, 0.05);
  --glass-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

body {
  font-family: var(--font-sans);
  line-height: 1.55;
  letter-spacing: 0;
  background-color: var(--bg);
  background:
    linear-gradient(180deg, hsla(var(--brand-hue), 10%, 4%, 0.4) 0%, hsla(var(--brand-hue), 10%, 10%, 0.5) 46%, hsla(var(--brand-hue), 10%, 16%, 0.7) 100%),
    var(--site-bg-image);
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

[data-theme="light"] body {
  background-image:
    radial-gradient(circle at top left, rgba(169, 134, 77, 0.15), transparent 40%),
    radial-gradient(circle at top right, rgba(140, 112, 72, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(250, 246, 237, 0.55) 0%, rgba(244, 242, 238, 0.65) 50%, rgba(232, 228, 218, 0.55) 100%),
    var(--site-bg-image);
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

[data-theme="contrast"] body {
  background: #000;
}

body::before,
body::after {
  display: none;
}

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  padding: calc(var(--nav-height) + 18px) 0 48px;
}

.hero {
  min-height: min(760px, calc(100vh - 10px));
  padding: 12px 0 56px;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 40px), var(--max-width));
  transform: translateX(-50%);
  z-index: 40;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--glass-bg-strong);
  border-color: var(--glass-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

[data-theme="light"] .topbar {
  background: var(--glass-bg-strong);
  border-color: var(--glass-line);
}

.topbar::before {
  display: none;
}

.brand {
  gap: 12px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 12px;
  background: #15110a;
  border-color: rgba(232, 202, 150, 0.18);
  object-position: center;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.08;
  color: var(--ink);
}

.brand small {
  margin-top: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.brand-mark {
  width: 48px;
  border-radius: 12px;
  background: var(--accent);
  font-family: var(--font-display);
  font-size: 1.45rem;
  box-shadow: none;
}

[data-theme="light"] .brand-logo {
  background: #fffaf1;
  border-color: rgba(93, 76, 52, 0.14);
}

.topbar-links {
  gap: 4px;
}

.topbar-links a,
.theme-toggle,
.lang-button {
  min-height: 38px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 800;
}

.topbar-links a {
  padding: 0 13px;
  color: var(--muted);
  background: transparent;
  border-color: transparent;
}

.topbar-links a:hover,
.topbar-links a:focus-visible {
  color: var(--ink);
  background: var(--glass-bg);
  border-color: var(--glass-line);
}

.topbar-tools {
  border-radius: 12px;
  background: var(--glass-bg);
  border-color: var(--glass-line);
}

.lang-button.is-active,
.theme-toggle {
  background: rgba(217, 170, 92, 0.16);
  color: var(--ink);
  border-color: rgba(217, 170, 92, 0.14);
}

.hero-content {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  gap: 0;
  align-items: stretch;
  margin-top: 30px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(90deg, hsla(var(--brand-hue), 10%, 10%, 0.78) 0%, hsla(var(--brand-hue), 10%, 16%, 0.64) 45%, hsla(var(--brand-hue), 10%, 20%, 0.34) 100%),
    url("assets/unique-logo.webp") right 34px center / min(40%, 390px) no-repeat,
    var(--glass-bg);
  box-shadow: var(--glass-shadow);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(217, 170, 92, 0.18), transparent 28%),
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, transparent 58%);
  opacity: 0.62;
  transform: translateX(-18%);
  animation: hero-sheen 9s ease-in-out infinite alternate;
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 1;
}

[data-theme="light"] .hero-content {
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.86) 0%, rgba(255, 252, 246, 0.72) 47%, rgba(255, 252, 246, 0.42) 100%),
    url("assets/unique-logo.webp") right 34px center / min(40%, 390px) no-repeat,
    var(--glass-bg-strong);
}

.hero-copy,
.hero-card,
.coverage-panel,
.reviews-panel,
.location-panel,
.contact-card {
  border: 1px solid rgba(245, 205, 86, 0.08);
  background: var(--glass-bg);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 4px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-copy {
  padding: clamp(32px, 5vw, 62px);
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.hero-card {
  justify-content: flex-end;
  gap: 16px;
  padding: 22px;
  border-width: 0 0 0 1px;
  border-radius: 0 24px 24px 0;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

[data-theme="light"] .hero-card {
  background: rgba(255, 255, 255, 0.56);
}

.eyebrow,
.card-label,
.service-index {
  color: var(--accent-deep);
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.45rem, 4.7vw, 4rem);
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.65rem, 2.75vw, 2.55rem);
}

h3 {
  font-size: 1rem;
  line-height: 1.28;
  font-weight: 800;
}

html[lang="ta"] h1,
html[lang="ta"] h2 {
  font-family: "Noto Sans Tamil", var(--font-sans);
}

html[lang="ta"] h1 {
  max-width: 17ch;
  font-size: clamp(1.95rem, 3.8vw, 3.15rem);
  line-height: 1.16;
}

html[lang="ta"] h2 {
  max-width: 19ch;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.18;
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.75;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 800;
}

.button-primary {
  background: var(--accent);
  color: #15100a;
  box-shadow: 0 14px 28px rgba(197, 160, 89, 0.22);
}

.button-secondary {
  border-color: rgba(217, 170, 92, 0.18);
  background: rgba(217, 170, 92, 0.1);
}

.quick-contact {
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 800;
}

.quick-contact a {
  color: var(--accent);
}

.hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.hero-points li {
  min-height: 86px;
  padding: 16px 16px 16px 42px;
  border: 1px solid var(--glass-line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--glass-bg);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  font-size: 0.91rem;
  line-height: 1.45;
}

[data-theme="light"] .hero-points li {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(93, 76, 52, 0.12);
}

.hero-points li::before {
  left: 16px;
  top: 20px;
  width: 9px;
  height: 9px;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(77, 181, 143, 0.14);
}

.hero-brand-panel {
  min-height: 240px;
  border-radius: 18px;
  background: var(--glass-bg);
  border-color: var(--glass-line);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

[data-theme="light"] .hero-brand-panel {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(93, 76, 52, 0.12);
}

.hero-brand-logo {
  width: min(100%, 230px);
  max-height: 230px;
}

.hero-brand-caption {
  color: var(--accent);
}

.card-grid {
  gap: 10px;
}

.card-grid article,
.service-card,
.step,
.review-card {
  border-radius: 16px;
  border-color: var(--glass-line);
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

[data-theme="light"] .card-grid article,
[data-theme="light"] .service-card,
[data-theme="light"] .step,
[data-theme="light"] .review-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

.availability-panel {
  border-radius: 16px;
  background: var(--accent);
  color: #15100a;
}

[data-theme="light"] .availability-panel {
  background: var(--accent);
}

.section {
  padding: 48px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: translateY(-3px) scaleX(0.5);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 170, 92, 0.34);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.service-card:hover::before {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.service-card.featured-outstation {
  min-height: 230px;
  background: var(--glass-bg);
  border-color: var(--glass-line);
  box-shadow: none;
}

/* Shimmer shine animation for cards */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.service-card::after,
.review-card::after,
.step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
  border-radius: inherit;
}

.service-card:hover::after,
.review-card:hover::after,
.step:hover::after {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}

[data-theme="light"] .service-card::after,
[data-theme="light"] .review-card::after,
[data-theme="light"] .step::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
}

[data-theme="light"] .service-card.featured-outstation {
  background: var(--glass-bg);
  border-color: var(--glass-line);
}

.service-index {
  margin-bottom: auto;
  padding-bottom: 32px;
  color: var(--accent);
}

.service-card h3 {
  margin-top: 0;
}

.service-card p {
  margin: 12px 0 0;
}

.coverage-panel,
.reviews-panel,
.location-panel,
.contact-card {
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
}

.coverage-panel {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.coverage-tags {
  gap: 9px;
}

.coverage-tags span {
  padding: 10px 12px;
  border-radius: 11px;
  color: var(--ink);
  background: var(--glass-bg);
  border-color: var(--glass-line);
  backdrop-filter: blur(12px) saturate(1.12);
  -webkit-backdrop-filter: blur(12px) saturate(1.12);
  font-size: 0.88rem;
}

[data-theme="light"] .coverage-tags span {
  background: var(--glass-bg);
}

.coverage-tags span::before {
  background: var(--leaf);
  box-shadow: none;
}

.reviews-header {
  align-items: center;
  margin-bottom: 26px;
}

.reviews-aggregate {
  border-radius: 16px;
  background: var(--surface-strong);
  border-color: var(--line);
}

.pulse,
.mobile-cta-call,
.mobile-cta-whatsapp {
  animation-duration: 2.4s;
}

@keyframes hero-sheen {
  0% {
    transform: translateX(-18%);
    opacity: 0.42;
  }
  55% {
    opacity: 0.66;
  }
  100% {
    transform: translateX(18%);
    opacity: 0.5;
  }
}

.reviews-aggregate-score {
  font-family: var(--font-display);
  color: var(--accent);
}

.reviews-aggregate-stars {
  color: var(--accent);
}

.reviews-carousel {
  min-height: 206px;
}

.carousel-control {
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.carousel-dot.is-active,
.mobile-cta-call {
  background: var(--accent);
}

.contact-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  background: var(--glass-bg-strong);
  color: #f8ecbf;
}

[data-theme="light"] .contact-card {
  background: var(--surface-strong);
  color: var(--ink);
}

[data-theme="light"] .contact-card .eyebrow,
[data-theme="light"] .contact-card p {
  color: var(--muted);
}

[data-theme="light"] .contact-details strong,
[data-theme="light"] .contact-note a {
  color: var(--accent-deep);
}

[data-theme="light"] .contact-note {
  background: rgba(189, 133, 64, 0.08);
  border-color: rgba(93, 76, 52, 0.14);
}

.contact-actions {
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
}

.icon-action,
.button.icon-action,
.reviews-actions .icon-action {
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  border-radius: 16px;
}

.footer {
  padding-top: 30px;
}

[data-theme="contrast"] .topbar,
[data-theme="contrast"] .hero-content,
[data-theme="contrast"] .hero-copy,
[data-theme="contrast"] .hero-card,
[data-theme="contrast"] .coverage-panel,
[data-theme="contrast"] .reviews-panel,
[data-theme="contrast"] .location-panel,
[data-theme="contrast"] .contact-card,
[data-theme="contrast"] .service-card,
[data-theme="contrast"] .step,
[data-theme="contrast"] .card-grid article,
[data-theme="contrast"] .hero-points li,
[data-theme="contrast"] .hero-brand-panel,
[data-theme="contrast"] .coverage-tags span,
[data-theme="contrast"] .reviews-aggregate,
[data-theme="contrast"] .availability-panel,
[data-theme="contrast"] .map-frame,
[data-theme="contrast"] .review-card {
  background: #000;
  border-color: rgba(255, 224, 45, 0.72);
  box-shadow: none;
}

[data-theme="contrast"] .availability-panel,
[data-theme="contrast"] .availability-panel p,
[data-theme="contrast"] .contact-card,
[data-theme="contrast"] .contact-card p,
[data-theme="contrast"] .contact-details strong,
[data-theme="contrast"] .contact-note a {
  color: #fff;
}

[data-theme="contrast"] .button-primary,
[data-theme="contrast"] .mobile-cta-call,
[data-theme="contrast"] .carousel-dot.is-active {
  background: #ffe700;
  color: #000;
}

[data-theme="contrast"] .mobile-cta-whatsapp,
[data-theme="contrast"] .mobile-nav,
[data-theme="contrast"] .mobile-nav a,
[data-theme="contrast"] .mobile-chip,
[data-theme="contrast"] .topbar-tools {
  background: #000;
  border-color: rgba(255, 224, 45, 0.72);
  color: #fff;
  box-shadow: none;
}

@media (max-width: 980px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
    padding-top: calc(var(--nav-height) + 12px);
  }

  .hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .topbar {
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
    border-radius: 18px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 14px;
    background:
      linear-gradient(180deg, rgba(10, 13, 16, 0.76), rgba(10, 13, 16, 0.58)),
      var(--glass-bg);
  }

  [data-theme="light"] .hero-content {
    background: var(--glass-bg-strong);
  }

  .hero-card {
    border-width: 1px 0 0;
    border-radius: 0 0 22px 22px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card.featured-outstation {
    min-height: 220px;
  }

  .coverage-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    background-color: var(--bg);
    background-attachment: scroll;
    background-position: center top;
    background-size: auto 100vh;
  }

  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: calc(var(--nav-height) + 8px);
  }

  .topbar {
    left: 10px;
    right: 10px;
    top: 10px;
    width: auto;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero-content {
    margin-top: 18px;
    border-radius: 24px;
  }

  .hero-copy,
  .hero-card,
  .coverage-panel,
  .reviews-panel,
  .location-panel,
  .contact-card {
    padding: 22px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.95rem);
    line-height: 1.14;
  }

  h3 {
    font-size: 0.98rem;
  }

  html[lang="ta"] h1 {
    font-size: clamp(1.65rem, 7.2vw, 2.25rem);
    line-height: 1.18;
  }

  html[lang="ta"] h2 {
    font-size: clamp(1.25rem, 5.8vw, 1.75rem);
    line-height: 1.22;
  }

  .section {
    padding: 32px 0;
  }

  .section-heading {
    display: block;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.featured-outstation {
    min-height: auto;
  }

  .hero-logo-mobile-panel {
    border-radius: 18px;
  }

  .button,
  .location-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .contact-actions .icon-action,
  .reviews-actions .icon-action,
  .reviews-actions .button {
    width: 58px;
    min-width: 58px;
    height: 58px;
    min-height: 58px;
    flex: 0 0 58px;
  }

  .mobile-nav {
    border-radius: 18px;
  }
}

/* Theme guardrails after responsive overrides */
[data-theme="contrast"] body,
[data-theme="contrast"] .topbar,
[data-theme="contrast"] .hero-content,
[data-theme="contrast"] .hero-copy,
[data-theme="contrast"] .hero-card,
[data-theme="contrast"] .coverage-panel,
[data-theme="contrast"] .reviews-panel,
[data-theme="contrast"] .location-panel,
[data-theme="contrast"] .contact-card,
[data-theme="contrast"] .service-card,
[data-theme="contrast"] .service-card.featured-outstation,
[data-theme="contrast"] .step,
[data-theme="contrast"] .card-grid article,
[data-theme="contrast"] .hero-points li,
[data-theme="contrast"] .hero-brand-panel,
[data-theme="contrast"] .coverage-tags span,
[data-theme="contrast"] .reviews-aggregate,
[data-theme="contrast"] .review-card,
[data-theme="contrast"] .availability-panel,
[data-theme="contrast"] .map-frame,
[data-theme="contrast"] .mobile-nav,
[data-theme="contrast"] .mobile-nav a,
[data-theme="contrast"] .mobile-chip,
[data-theme="contrast"] .topbar-tools {
  background: #000;
  background-image: none;
  border-color: rgba(255, 224, 45, 0.72);
  box-shadow: none;
}

[data-theme="contrast"] .button-primary,
[data-theme="contrast"] .mobile-cta-call,
[data-theme="contrast"] .carousel-dot.is-active,
[data-theme="contrast"] .lang-button.is-active {
  background: #ffe700;
  color: #000;
}

[data-theme="contrast"] .availability-panel,
[data-theme="contrast"] .availability-panel p,
[data-theme="contrast"] .contact-card,
[data-theme="contrast"] .contact-card p,
[data-theme="contrast"] .contact-details strong,
[data-theme="contrast"] .contact-note a,
[data-theme="contrast"] .coverage-tags span,
[data-theme="contrast"] .hero-points li {
  color: #fff;
}

[data-theme="light"] body {
  background-color: var(--bg);
}

[data-theme="contrast"] .hero-content::before,
[data-theme="contrast"] .service-card::before {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content::before,
  .service-card::before,
  .pulse,
  .mobile-cta-call,
  .mobile-cta-whatsapp {
    animation: none;
  }

  .service-card,
  .button,
  .topbar-links a {
    transition: none;
  }

  .service-card:hover {
    transform: none;
  }
}

/* Dropdown Menus for Theme and Language */
.dropdown-wrapper {
  position: relative;
  display: inline-block;
}
.dropdown-trigger {
  background: transparent;
  border: 1px solid var(--glass-line);
  color: var(--muted);
  font-size: 0.95rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-weight: 600;
}
.dropdown-trigger:hover,
.dropdown-wrapper:hover .dropdown-trigger {
  color: var(--ink);
  background: var(--glass-bg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-line);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
}
[data-theme="light"] .dropdown-menu {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: var(--glass-shadow);
}
.dropdown-wrapper.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu button {
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  width: 100%;
  font-size: 0.95rem;
  transition: all 0.2s;
  font-weight: 500;
}
.dropdown-menu button:hover,
.dropdown-menu button:focus-visible {
  background: rgba(128,128,128,0.1);
  color: var(--ink);
}
.dropdown-menu button.is-active {
  background: var(--accent);
  color: #fff;
}

/* Tariff Section */
.tariff-split {
  margin-top: 60px;
  background: var(--surface-strong);
  border: 1px solid var(--glass-line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.tariff-header {
  text-align: center;
  margin-bottom: 32px;
}
.tariff-header .eyebrow {
  margin-bottom: 8px;
}
.tariff-header h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--ink);
}
.tariff-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}
.tariff-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 4px 0;
}
.tariff-item:hover .tariff-dots {
  opacity: 1;
  border-bottom-color: var(--accent);
}
.tariff-duration {
  white-space: nowrap;
}
.tariff-dots {
  flex-grow: 1;
  border-bottom: 2px dotted var(--glass-line);
  margin: 0 16px;
  opacity: 0.4;
  transition: all 0.2s ease;
  position: relative;
  top: -4px;
}
.tariff-price {
  white-space: nowrap;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}
.tariff-price small {
  font-size: 0.75rem;
  color: var(--ink);
  font-weight: 500;
  font-family: var(--font-sans, system-ui, sans-serif);
  margin-left: 4px;
}

/* Tariff Summary */
.tariff-summary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.summary-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-line);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.2s ease;
}
.summary-card:hover {
  transform: translateY(-2px);
}
.summary-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 600;
}
.summary-value {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--ink);
}

/* Accordion */
.tariff-accordion {
  border: 1px solid var(--glass-line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
}
.tariff-accordion summary {
  padding: 16px 24px;
  background: var(--glass-bg);
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.tariff-accordion summary::-webkit-details-marker {
  display: none;
}
.tariff-accordion summary::after {
  content: '▼';
  font-size: 0.8em;
  transition: transform 0.3s ease;
}
.tariff-accordion[open] summary {
  background: var(--surface-strong);
  border-bottom: 1px solid var(--glass-line);
}
.tariff-accordion[open] summary::after {
  transform: rotate(180deg);
}
.tariff-accordion .tariff-menu-list {
  padding: 24px;
  background: var(--surface);
}

/* Coverage & Tariff Layout Sync */
.coverage-tariff-section {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
}
.coverage-tariff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .coverage-tariff-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .coverage-tariff-grid .coverage-panel {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
}
.tariff-panel {
  padding: 34px;
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.tariff-panel .tariff-header h3 {
  margin-top: 8px;
}
.tariff-panel .tariff-header {
  text-align: left;
}

/* Service Icons */
.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(217, 170, 92, 0.15), rgba(191, 143, 22, 0.1));
  border: 1.5px solid rgba(217, 170, 92, 0.35);
  color: var(--accent);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(217, 170, 92, 0.2);
  pointer-events: none;
}
.service-card:hover .service-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(217, 170, 92, 0.25);
}
.service-icon svg {
  width: 100%;
  height: 100%;
  max-width: 48px;
  max-height: 48px;
  display: block;
  stroke-width: 2;
}

[data-theme="light"] .service-icon {
  background: linear-gradient(145deg, rgba(181, 139, 72, 0.18), rgba(123, 92, 42, 0.12));
  border-color: rgba(181, 139, 72, 0.45);
  color: #8a6a35;
}

[data-theme="light"] .service-icon::before {
  border-color: rgba(181, 139, 72, 0.25);
}

[data-theme="light"] .service-card:hover .service-icon {
  box-shadow: 0 8px 24px rgba(181, 139, 72, 0.2);
}
