:root {
  --ink: #142333;
  --ink-soft: #506170;
  --night: #0b1c2d;
  --night-raised: #132f49;
  --cream: #f3f6f8;
  --paper: #ffffff;
  --line: #dce4e9;
  --green: #0c7c6c;
  --green-dark: #095e54;
  --green-soft: #e0f2ef;
  --lime: #7ad7e8;
  --yellow: #f5b83b;
  --red: #b33b32;
  --white: #ffffff;
  --shadow-sm: 0 8px 25px rgba(11, 28, 45, 0.09);
  --shadow-lg: 0 30px 80px rgba(5, 19, 32, 0.22);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html[lang="te"] body {
  font-family: "Noto Sans Telugu", "Manrope", sans-serif;
}

html[lang="hi"] body {
  font-family: "Noto Sans Devanagari", "Manrope", sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.notice-bar {
  position: relative;
  z-index: 30;
  color: #d9e7df;
  background: #07141f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.notice-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.notice-inner p {
  margin: 0;
}

.notice-inner a {
  margin-left: auto;
  color: var(--lime);
}

.open-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #49d784;
  box-shadow: 0 0 0 4px rgba(73, 215, 132, 0.13);
}

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  background: rgba(255, 254, 249, 0.93);
  border-bottom: 1px solid rgba(213, 222, 216, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand > span:last-child {
  display: grid;
}

.brand strong {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.brand small {
  color: #66776f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.095em;
  line-height: 1.4;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #41524a;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-picker {
  position: relative;
  display: flex;
  align-items: center;
}

.language-picker svg {
  position: absolute;
  z-index: 1;
  left: 11px;
  width: 16px;
  fill: none;
  stroke: var(--green-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  pointer-events: none;
}

.language-picker select {
  width: 124px;
  min-height: 40px;
  padding: 7px 28px 7px 34px;
  color: var(--night);
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button:focus-visible,
.language-picker select:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(12, 124, 108, 0.26);
  outline-offset: 3px;
}

.button-primary {
  color: #0f251b;
  background: var(--yellow);
  box-shadow: 0 12px 25px rgba(255, 211, 78, 0.17);
}

.button-primary:hover {
  background: #ffca26;
  box-shadow: 0 16px 30px rgba(255, 211, 78, 0.24);
}

.button-dark {
  color: var(--white);
  background: var(--night);
}

.button-dark:hover {
  background: #1b3228;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.21);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
}

.button-outline {
  background: transparent;
  border-color: #b9c6bf;
}

.button-outline:hover {
  background: var(--white);
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 12px;
}

.button-full {
  width: 100%;
}

.button-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(117deg, rgba(8, 24, 39, 0.99) 0%, rgba(11, 28, 45, 0.97) 55%, rgba(14, 55, 76, 0.94) 100%),
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(122, 215, 232, 0.025) 31px, transparent 32px);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 49%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.1), transparent);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.hero-glow-one {
  top: -190px;
  right: -90px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(68, 173, 202, 0.23), transparent 66%);
}

.hero-glow-two {
  bottom: -300px;
  left: -200px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(245, 184, 59, 0.11), transparent 67%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-block: 72px;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 10px;
  color: #c9dccf;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow > span:last-child {
  min-width: 0;
  line-height: 1.35;
}

.eyebrow-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--lime);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 23px;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

html[lang="te"] .hero h1 {
  font-size: clamp(38px, 4.8vw, 62px);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 31px;
  color: #b9c9c1;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  max-width: 615px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  margin-bottom: 0;
  padding-top: 24px;
  padding-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.trust-row > li {
  display: grid;
  padding-inline: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-row > li:first-child {
  padding-left: 0;
}

.trust-row > li:last-child {
  border-right: 0;
}

.trust-row strong {
  font-size: 13px;
  line-height: 1.4;
}

.trust-row span {
  color: #81948a;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  width: 112%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-board-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: #f5f7f8;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.hero-board-media {
  position: relative;
  aspect-ratio: 1.45;
  overflow: hidden;
  background: #171a1d;
}

.hero-board-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 62%, rgba(7, 20, 31, 0.32)),
    linear-gradient(120deg, rgba(122, 215, 232, 0.08), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-board-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-board-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-board-media > span {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  color: var(--night);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(11, 28, 45, 0.1);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-board-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 19px 21px;
  background: rgba(11, 28, 45, 0.98);
}

.hero-board-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.hero-board-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-board-card figcaption > span:last-child {
  display: grid;
}

.hero-board-card figcaption strong {
  font-size: 12px;
  line-height: 1.45;
}

.hero-board-card figcaption small {
  color: #94a9b8;
  font-size: 9px;
  line-height: 1.6;
}

.section {
  padding-block: 105px;
}

.section-light {
  background: var(--cream);
}

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

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.booking-copy h2,
.location-copy h2,
.question-section h2,
.faq-section h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

html[lang="te"] .section-heading h2,
html[lang="te"] .booking-copy h2,
html[lang="te"] .location-copy h2,
html[lang="te"] .question-section h2,
html[lang="te"] .faq-section h2 {
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.centered {
  max-width: 650px;
  margin-inline: auto;
  text-align: center;
}

.centered p {
  margin-top: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  background: var(--paper);
  border: 1px solid #e5e7df;
  border-radius: var(--radius);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 14px;
}

.service-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-icon-yellow {
  color: #7a6100;
  background: #fff1b7;
}

.service-icon-green {
  color: #197548;
  background: #dff3e7;
}

.service-icon-blue {
  color: #24658f;
  background: #dfedf6;
}

.service-icon-purple {
  color: #684c98;
  background: #ece6f6;
}

.service-icon-orange {
  color: #a25527;
  background: #fae7d7;
}

.service-icon-dark {
  color: var(--night);
  background: var(--yellow);
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin-bottom: 0;
  color: #65746d;
  font-size: 13px;
  line-height: 1.7;
}

.service-card-accent {
  color: var(--white);
  background: var(--night);
  border-color: var(--night);
}

.service-card-accent p {
  color: #aebdb5;
}

.service-card-accent a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.repair-gallery-section {
  background: #eaf0f3;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: -24px 0 32px;
}

.care-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 28, 45, 0.09);
  border-radius: 16px;
}

.care-grid article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--yellow);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 900;
}

.care-grid strong {
  display: block;
  color: var(--night);
  font-size: 13px;
  line-height: 1.4;
}

.care-grid p {
  margin: 5px 0 0;
  color: #657681;
  font-size: 11px;
  line-height: 1.65;
}

.repair-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}

.repair-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(11, 28, 45, 0.12);
  isolation: isolate;
}

.repair-photo-large {
  grid-row: 1 / 3;
}

.repair-photo::after {
  display: none;
}

.repair-photo img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  transition: transform 0.55s ease;
}

.repair-photo-large img {
  object-position: center;
}

.repair-photo:nth-child(2) img {
  object-position: center;
}

.repair-photo:nth-child(3) img {
  object-position: center;
}

.repair-photo:hover img {
  transform: scale(1.025);
}

.repair-photo figcaption {
  display: grid;
  padding: 22px 24px;
  color: var(--white);
  background: var(--night);
}

.repair-photo figcaption > span {
  width: fit-content;
  margin-bottom: 7px;
  padding: 4px 8px;
  color: var(--night);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.repair-photo figcaption strong {
  font-size: 18px;
  letter-spacing: -0.025em;
}

.repair-photo figcaption p {
  max-width: 480px;
  margin: 4px 0 0;
  color: #c5d4dc;
  font-size: 11px;
  line-height: 1.6;
}

.repair-photo:not(.repair-photo-large) figcaption {
  padding: 17px 20px;
}

.repair-photo:not(.repair-photo-large) figcaption strong {
  font-size: 15px;
}

.repair-photo:not(.repair-photo-large) figcaption p {
  display: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(50px, 8vw, 105px);
}

.booking-copy {
  position: sticky;
  top: 125px;
}

.booking-copy > p {
  margin: 20px 0 32px;
  color: var(--ink-soft);
  font-size: 15px;
}

.expectation-card {
  padding: 25px;
  background: var(--cream);
  border: 1px solid #e2e7e1;
  border-radius: var(--radius);
}

.expectation-card h3 {
  margin-bottom: 16px;
  font-size: 13px;
  text-transform: uppercase;
}

.expectation-card ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expectation-card li {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 10px;
}

.expectation-card li > span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.expectation-card p {
  margin: 0;
  color: #64736c;
  font-size: 11px;
  line-height: 1.6;
}

.expectation-card strong {
  color: var(--ink);
}

.owner-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 17px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease;
}

.owner-card:hover {
  border-color: var(--green);
}

.owner-avatar {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.owner-card > span:nth-child(2) {
  display: grid;
}

.owner-card small {
  color: #7a8982;
  font-size: 9px;
  line-height: 1.4;
}

.owner-card strong {
  font-size: 12px;
  line-height: 1.5;
}

.owner-card b {
  color: var(--green);
  font-size: 10px;
}

.round-arrow {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border-radius: 50%;
  font-size: 13px;
}

.booking-form {
  padding: clamp(25px, 4vw, 42px);
  background: #fbfcf8;
  border: 1px solid #e0e6e0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.form-header h3 {
  margin: 3px 0 0;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.form-step {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.secure-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64736c;
  font-size: 9px;
  font-weight: 700;
}

.secure-note svg {
  width: 15px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.field-row-three {
  grid-template-columns: 1fr 1fr 0.65fr;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 19px;
}

.field > span,
.field legend {
  color: #34473e;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.field > span i {
  color: #8a978f;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
}

.field input,
.field select,
.field textarea,
.question-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid #d5ddd7;
  border-radius: 10px;
  font-size: 12px;
  outline: 0;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.field textarea,
.question-form textarea {
  min-height: auto;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.question-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(12, 124, 108, 0.08);
}

.field input::placeholder,
.field textarea::placeholder,
.question-form textarea::placeholder {
  color: #9ba69f;
}

.field select {
  cursor: pointer;
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: var(--red);
}

.field-error {
  min-height: 0;
  color: var(--red);
  font-size: 9px;
  font-weight: 600;
}

.field-error:empty {
  display: none;
}

.choice-field {
  min-width: 0;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.choice-field legend {
  margin-bottom: 8px;
  padding: 0;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.choice-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.choice {
  position: relative;
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice > span {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid #d5ddd7;
  border-radius: 10px;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.choice:hover > span {
  border-color: #97ad9f;
}

.choice input:checked + span {
  background: #f1f8f3;
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}

.choice input:focus-visible + span {
  outline: 3px solid rgba(12, 124, 108, 0.18);
  outline-offset: 2px;
}

.choice svg {
  width: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.choice b {
  font-size: 10px;
}

.service-choice > span {
  min-height: 85px;
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
}

.service-choice svg {
  grid-row: span 2;
  width: 22px;
}

.service-choice small {
  color: #8a978f;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.service-choice input:checked + span small {
  color: var(--green);
}

.charge-note {
  display: flex;
  gap: 8px;
  margin: 9px 0 0;
  padding: 10px 12px;
  color: #715a00;
  background: #fff7cf;
  border: 1px solid #f4e294;
  border-radius: 9px;
  font-size: 9px;
  line-height: 1.55;
}

[hidden] {
  display: none !important;
}

.form-footnote {
  margin: 9px 0 0;
  color: #86938c;
  font-size: 9px;
  text-align: center;
}

.process-section {
  color: var(--white);
  background: var(--night);
}

.process-section .section-kicker {
  color: var(--lime);
}

.process-section .section-heading p {
  color: #9caf9f;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: steps;
}

.process-grid article {
  position: relative;
  padding: 15px 42px 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.process-grid article:first-child {
  padding-left: 0;
}

.process-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-number {
  position: absolute;
  top: 10px;
  right: 25px;
  color: rgba(255, 255, 255, 0.11);
  font-size: 53px;
  font-weight: 800;
  line-height: 1;
}

.process-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  font-size: 21px;
}

.process-grid h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.process-grid p {
  max-width: 260px;
  margin: 0;
  color: #93a69c;
  font-size: 12px;
  line-height: 1.7;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  gap: 75px;
}

.location-map {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #e7e9e3;
  border: 8px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: saturate(0.7) contrast(1.05);
}

.map-overlay {
  position: absolute;
  right: 17px;
  bottom: 17px;
  left: 17px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  color: var(--white);
  background: rgba(11, 28, 45, 0.95);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 800;
}

.map-overlay svg {
  width: 18px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.location-copy {
  align-self: center;
}

.location-copy h2 {
  max-width: 500px;
}

.location-landmark {
  margin: 17px 0 27px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.info-list {
  display: grid;
  margin-bottom: 29px;
}

.info-list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  padding: 18px 0;
  border-bottom: 1px solid #dfe3dd;
}

.info-list > div:last-child {
  border-bottom: 0;
}

.info-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 12px;
}

.info-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.info-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
}

.info-list p,
.info-list a,
.info-list small {
  display: block;
  margin: 0;
  color: #5f7067;
  font-size: 11px;
  line-height: 1.65;
}

.info-list a {
  color: var(--green);
  font-weight: 800;
}

.info-list small {
  color: #8a978f;
  font-size: 9px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.question-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.question-section::before {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 184, 59, 0.17), transparent 68%);
  border-radius: 50%;
  content: "";
}

.question-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.light-kicker {
  color: var(--lime);
}

.question-section h2 {
  color: var(--white);
}

.question-section p {
  margin: 16px 0 0;
  color: #c2d5ca;
  font-size: 13px;
}

.question-form {
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.question-form textarea {
  color: var(--ink);
  background: transparent;
  border: 0;
}

.question-form .button {
  width: 100%;
  margin-top: 7px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: start;
  gap: 90px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.accordion details[open] summary i {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 680px;
  margin: -4px 45px 24px 0;
  color: #617269;
  font-size: 12px;
  line-height: 1.8;
}

.site-footer {
  padding: 70px 0 18px;
  color: #aebfb6;
  background: #07141f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 55px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  padding: 3px;
  background: var(--white);
}

.footer-grid > div:first-child > p {
  max-width: 300px;
  margin: 21px 0 0;
  color: #788b81;
  font-size: 11px;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  margin: 0;
  color: #93a69c;
  font-size: 10px;
  line-height: 1.8;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #64786e;
  font-size: 9px;
}

.footer-photo-credits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 13px;
  margin-top: 12px;
  color: #526a78;
  font-size: 8px;
  line-height: 1.5;
}

.footer-photo-credits span {
  color: #718894;
  font-weight: 800;
}

.footer-photo-credits a {
  text-decoration: underline;
  text-decoration-color: rgba(122, 215, 232, 0.25);
  text-underline-offset: 2px;
}

.footer-photo-credits a:hover {
  color: var(--lime);
}

.mobile-actions {
  display: none;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  color: var(--white);
  background: var(--night);
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

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

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(42px, 6.2vw, 64px);
  }

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

  .repair-gallery {
    grid-template-rows: repeat(2, 260px);
  }

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

  .booking-copy {
    position: static;
  }

  .booking-copy > p {
    max-width: 650px;
  }

  .expectation-card,
  .owner-card {
    max-width: 650px;
  }

  .location-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-lead,
  .trust-row {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 490px;
    margin-inline: auto;
  }

  .split-heading,
  .location-grid,
  .question-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 20px;
  }

  .split-heading p {
    max-width: 620px;
  }

  .process-grid article {
    padding-inline: 25px;
  }

  .location-map,
  .location-map iframe {
    min-height: 430px;
  }

  .question-grid,
  .faq-grid {
    gap: 45px;
  }

  .question-form {
    max-width: 700px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .notice-inner {
    justify-content: flex-start;
  }

  .notice-inner a {
    display: none;
  }

  .notice-inner p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark svg {
    width: 28px;
  }

  .brand strong {
    font-size: 15px;
  }

  .desktop-call {
    display: none;
  }

  .language-picker select {
    min-height: 38px;
  }

  .hero-grid {
    padding-block: 55px 65px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(39px, 12vw, 54px);
  }

  html[lang="te"] .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  html[lang="hi"] .hero h1 {
    font-size: clamp(35px, 10.5vw, 48px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.7;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 35px;
    padding-top: 0;
    text-align: left;
  }

  .trust-row > li {
    grid-template-columns: 1fr auto;
    padding: 12px 2px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .trust-row > li:last-child {
    border-bottom: 0;
  }

  .trust-row span {
    align-self: center;
  }

  .hero-board-card {
    border-radius: 20px;
  }

  .hero-board-card figcaption {
    padding: 16px;
  }

  .section {
    padding-block: 76px;
  }

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

  .section-heading h2,
  .booking-copy h2,
  .location-copy h2,
  .question-section h2,
  .faq-section h2 {
    font-size: 34px;
  }

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

  .repair-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .care-grid {
    grid-template-columns: 1fr;
    margin-top: -8px;
    margin-bottom: 24px;
  }

  .care-grid article {
    padding: 17px;
  }

  .repair-photo,
  .repair-photo-large {
    height: 340px;
    grid-row: auto;
  }

  .repair-photo:not(.repair-photo-large) figcaption {
    padding: 24px;
  }

  .repair-photo:not(.repair-photo-large) figcaption strong {
    font-size: 17px;
  }

  .service-card {
    min-height: 0;
  }

  .field-row,
  .field-row-three,
  .choice-grid-two,
  .choice-grid-three {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 25px 18px;
    border-radius: 22px;
  }

  .field input,
  .field select,
  .field textarea,
  .question-form textarea {
    font-size: 16px;
  }

  .form-header {
    align-items: flex-start;
  }

  .secure-note {
    max-width: 80px;
    text-align: right;
  }

  .service-choice > span {
    min-height: 63px;
  }

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

  .process-grid article,
  .process-grid article:first-child,
  .process-grid article:last-child {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-grid article:first-child {
    padding-top: 0;
  }

  .process-grid article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .process-number {
    right: 0;
  }

  .location-map,
  .location-map iframe {
    min-height: 350px;
  }

  .location-map {
    border-width: 5px;
    border-radius: 22px;
  }

  .location-grid {
    gap: 45px;
  }

  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .question-form {
    padding: 9px;
  }

  .accordion summary {
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 66px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 5px max(6px, env(safe-area-inset-left)) max(5px, env(safe-area-inset-bottom));
    background: rgba(255, 254, 249, 0.97);
    border-top: 1px solid #d8ded9;
    box-shadow: 0 -8px 30px rgba(12, 26, 19, 0.09);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #52635a;
    border-radius: 9px;
    font-size: 9px;
    font-weight: 800;
  }

  .mobile-actions a + a {
    border-left: 1px solid #e4e8e4;
  }

  .mobile-actions .mobile-whatsapp {
    color: var(--white);
    background: var(--green);
    border-left: 0;
  }

  .mobile-actions svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .toast {
    bottom: 80px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand small {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .language-picker select {
    width: 108px;
    padding-right: 24px;
    padding-left: 31px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .button {
    padding-inline: 14px;
  }

  .repair-photo,
  .repair-photo-large {
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .notice-bar,
  .site-header,
  .hero-actions,
  .booking-form,
  .question-section,
  .mobile-actions {
    display: none !important;
  }
}
