﻿:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --surface-muted: #dce6f1;
  --surface-deep: #d0dceb;
  --text: #141d21;
  --text-soft: #52606d;
  --text-faint: #738190;
  --primary: #f4c430;
  --primary-deep: #d7a90c;
  --secondary: #334db8;
  --secondary-deep: #17379b;
  --secondary-soft: #dfe6ff;
  --accent: #cc2028;
  --accent-deep: #a91920;
  --border: #d4dce8;
  --shadow-soft: 0 24px 60px rgba(28, 54, 124, 0.08);
  --shadow-card: 0 18px 40px rgba(30, 58, 138, 0.12);
  --shadow-button: 0 10px 20px rgba(204, 32, 40, 0.2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbff 0%, #eff4fb 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
}

iframe {
  border: 0;
}

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

.font-headline {
  font-family: "Space Grotesk", sans-serif;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(212, 220, 232, 0.8);
  box-shadow: 0 6px 18px rgba(18, 31, 69, 0.04);
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
  background: #14224c;
  box-shadow: 0 14px 28px rgba(51, 77, 184, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.brand-text {
  min-width: 0;
}

.brand-name {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--secondary-deep);
}

.brand-tagline {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.84rem;
  color: var(--text-faint);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  color: #5d6ea9;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--secondary-deep);
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.65rem;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(212, 220, 232, 0.9);
  background: rgba(255, 255, 255, 0.8);
  color: var(--secondary-deep);
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #d82a32 0%, var(--accent) 100%);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  box-shadow: 0 14px 24px rgba(204, 32, 40, 0.3);
}

.btn-secondary {
  color: var(--secondary-deep);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(212, 220, 232, 0.92);
}

.btn-secondary:hover {
  background: #fff;
}

.btn-accent {
  color: var(--secondary-deep);
  background: var(--primary);
  box-shadow: 0 10px 20px rgba(244, 196, 48, 0.22);
}

.btn-ghost {
  color: var(--secondary-deep);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

.page-main {
  display: block;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(244, 196, 48, 0.28) 0%, rgba(244, 196, 48, 0.02) 42%),
    linear-gradient(180deg, rgba(255, 250, 230, 0.96) 0%, rgba(244, 248, 255, 0.96) 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -12rem;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(51, 77, 184, 0.16) 0%, rgba(51, 77, 184, 0) 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 3rem;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(223, 230, 255, 0.95);
  color: var(--secondary-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-banner h1 {
  margin: 1.4rem 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--secondary-deep);
}

.hero-copy h1 span,
.accent-text {
  color: var(--secondary);
}

.hero-copy .tamil-line,
.page-banner .tamil-line {
  margin: 0 0 1.2rem;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.25;
  color: #4e4735;
}

.lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-pill {
  min-width: 10rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(212, 220, 232, 0.85);
  box-shadow: 0 14px 28px rgba(37, 64, 147, 0.08);
}

.stat-value {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-deep);
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(20, 29, 33, 0.07);
  box-shadow: 0 34px 70px rgba(18, 43, 112, 0.18);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(11, 19, 41, 0) 0%, rgba(11, 19, 41, 0.5) 100%);
  z-index: 1;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.hero-card-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-card-caption small {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #415eaa;
}

.hero-card-caption strong {
  display: block;
  color: var(--text);
}

.hero-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #111827;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(224, 235, 247, 0.5) 0%, rgba(244, 248, 255, 0.1) 100%);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading .kicker {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6273b0;
}

.section-heading h2 {
  margin: 0 0 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--secondary-deep);
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.delamination-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 1rem;
}

.gallery-stack {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 4px solid rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
}

.gallery-card img {
  width: 100%;
  object-fit: cover;
}

.gallery-card.small img {
  height: 13.5rem;
}

.gallery-card.medium img {
  height: 17rem;
}

.gallery-card.tall img {
  height: 31.5rem;
}

.gallery-card .label {
  padding: 0.65rem 0.8rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.label-danger {
  background: #fff;
  color: #ce2427;
}

.label-neutral {
  background: #fff;
  color: #5b6a88;
}

.label-success {
  background: var(--primary);
  color: #4e3910;
}

.panel {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.feature-list {
  display: grid;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--secondary);
  background: rgba(51, 77, 184, 0.08);
}

.feature-item h3,
.feature-item h4 {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: var(--secondary-deep);
}

.feature-item p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-soft);
}

.services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(212, 220, 232, 0.92);
}

.chip-soft {
  background: #eef0ff;
  color: #5b61ae;
}

.chip-gold {
  background: rgba(244, 196, 48, 0.25);
  color: #765b00;
}

.chip-muted {
  background: rgba(223, 230, 255, 0.45);
  color: var(--text-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card,
.wide-card,
.review-card,
.info-card,
.faq-card,
.contact-card,
.mini-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 220, 232, 0.95);
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(26, 51, 126, 0.05);
}

.service-card {
  position: relative;
  padding: 1.75rem;
  min-height: 15.6rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(244, 196, 48, 0.2) 100%);
}

.service-card:hover,
.wide-card:hover,
.review-card:hover,
.info-card:hover,
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  color: var(--secondary);
  font-size: 2.2rem;
}

.service-card h3,
.wide-card h3,
.page-section-card h3,
.info-card h3,
.mini-card h3 {
  margin: 1rem 0 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  color: var(--secondary-deep);
}

.service-card p,
.wide-card p,
.info-card p,
.mini-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.wide-card {
  position: relative;
  grid-column: span 2;
  padding: 1.95rem;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 55, 155, 0.98) 0%, rgba(56, 77, 184, 0.95) 100%);
}

.wide-card::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -2.2rem;
  width: 7rem;
  height: 9rem;
  border-radius: 26px;
  transform: rotate(12deg);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.wide-card::before {
  content: "";
  position: absolute;
  right: 2.2rem;
  bottom: 1.5rem;
  width: 0.55rem;
  height: 4.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    -0.9rem 0 0 rgba(255, 255, 255, 0.2),
    -1.8rem 0 0 rgba(255, 255, 255, 0.2);
}

.wide-card h3,
.wide-card p {
  color: #fff;
}

.wide-card .btn {
  margin-top: 1.55rem;
}

.page-banner {
  position: relative;
  padding: 4.4rem 0 3.6rem;
  background:
    radial-gradient(circle at 12% 5%, rgba(244, 196, 48, 0.26) 0%, rgba(244, 196, 48, 0) 42%),
    linear-gradient(180deg, rgba(250, 252, 255, 1) 0%, rgba(237, 243, 251, 0.96) 100%);
}

.page-banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.page-banner-card {
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(212, 220, 232, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.page-banner-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
}

.page-banner-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.page-banner-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--text-soft);
}

.cards-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.cards-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.info-card,
.contact-card,
.mini-card {
  padding: 1.6rem;
}

.info-card .material-symbols-outlined,
.contact-card .material-symbols-outlined,
.mini-card .material-symbols-outlined {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  color: var(--secondary);
  background: rgba(51, 77, 184, 0.08);
}

.review-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(240, 245, 251, 0.88) 100%);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(212, 220, 232, 0.95);
  color: var(--secondary-deep);
  box-shadow: 0 12px 24px rgba(26, 51, 126, 0.08);
}

.stars {
  color: #f4b400;
  letter-spacing: 0.05em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.review-card {
  padding: 1.6rem;
}

.review-card .review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.review-card strong {
  display: block;
  color: var(--secondary-deep);
}

.review-card small {
  color: var(--text-faint);
}

.review-card p {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.map-panel,
.hours-panel {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 220, 232, 0.95);
  box-shadow: var(--shadow-card);
}

.map-frame {
  width: 100%;
  min-height: 100%;
  height: 100%;
}

.map-frame iframe {
  width: 100%;
  min-height: 28rem;
  height: 100%;
}

.hours-panel {
  padding: 2rem;
}

.contact-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.contact-point .icon-box {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--secondary);
  background: rgba(51, 77, 184, 0.08);
}

.contact-point strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: var(--secondary-deep);
}

.contact-point p,
.contact-point a {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.hours-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed rgba(212, 220, 232, 0.9);
  color: var(--text-soft);
}

.hours-list span:first-child {
  font-weight: 600;
  color: var(--text);
}

.cta-section {
  padding: 0 0 5.5rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 3rem clamp(1.4rem, 5vw, 4rem);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(51, 77, 184, 0.97) 0%, rgba(37, 64, 147, 0.96) 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 48px rgba(26, 51, 126, 0.18);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.cta-panel h2 {
  position: relative;
  margin: 0 0 0.85rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-panel p {
  position: relative;
  margin: 0 auto;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.site-footer {
  padding-top: 4rem;
  background: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(212, 220, 232, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr) minmax(0, 0.75fr);
  gap: 2rem;
}

.footer-brand p {
  max-width: 24rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6171ae;
}

.footer-list,
.footer-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-list a,
.footer-info-list a,
.footer-info-list span {
  color: var(--text-soft);
  line-height: 1.65;
}

.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-info-list .icon-box {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(51, 77, 184, 0.08);
  color: var(--secondary);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.35rem 0 1.9rem;
  border-top: 1px solid rgba(212, 220, 232, 0.95);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-faint);
  font-size: 0.92rem;
}

.footer-bottom-row strong {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.2em;
  color: #9ba6bc;
}

.faq-wrap {
  display: grid;
  gap: 1rem;
}

.faq-card {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border: 0;
  background: transparent;
  color: var(--secondary-deep);
  text-align: left;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
}

.faq-question .material-symbols-outlined {
  transition: transform 0.2s ease;
}

.faq-card[data-open="true"] .faq-question .material-symbols-outlined {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.4rem 1.35rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.faq-card[data-open="true"] .faq-answer {
  display: block;
}

.accent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-list {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.process-list li {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(212, 220, 232, 0.92);
  box-shadow: 0 12px 24px rgba(26, 51, 126, 0.06);
}

.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.05rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--secondary-deep);
  background: rgba(244, 196, 48, 0.36);
}

.process-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--secondary-deep);
}

.process-list p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.service-checklist {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.service-checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text-soft);
  line-height: 1.65;
}

.service-checklist .material-symbols-outlined {
  color: var(--secondary);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 220, 232, 0.95);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 600;
  color: var(--secondary-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(190, 203, 223, 0.95);
  background: rgba(247, 250, 255, 0.92);
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: rgba(51, 77, 184, 0.7);
  box-shadow: 0 0 0 3px rgba(51, 77, 184, 0.12);
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--text-faint);
  line-height: 1.65;
  font-size: 0.95rem;
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.service-area-pill {
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  background: rgba(223, 230, 255, 0.68);
  color: var(--secondary-deep);
  font-weight: 600;
  font-size: 0.92rem;
}

.notice-bar {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(244, 196, 48, 0.18);
  border: 1px solid rgba(244, 196, 48, 0.38);
  color: #614b00;
  line-height: 1.65;
}

.spacer-top {
  margin-top: 1.5rem;
}

.page-section-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(212, 220, 232, 0.95);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.page-section-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-faint);
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: var(--secondary-deep);
}

.empty-state {
  text-align: center;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-banner-grid,
  .delamination-layout,
  .map-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.1rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(212, 220, 232, 0.95);
    box-shadow: 0 20px 40px rgba(18, 31, 69, 0.08);
  }

  .nav-wrap.open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .site-nav a {
    padding: 0.8rem 0.1rem;
  }

  .site-nav a::after {
    bottom: 0.2rem;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cards-two,
  .accent-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

  .hero-section,
  .section,
  .page-banner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .services-grid,
  .cards-three,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: span 1;
  }

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

  .gallery-card.small img,
  .gallery-card.medium img,
  .gallery-card.tall img {
    height: 14.5rem;
  }

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

  .stat-pill {
    width: 100%;
  }

  .brand-tagline {
    display: none;
  }
}

