/* Hub-Q India LLP - design system */
:root {
  --teal-950: #043f3f;
  --teal-900: #065a5a;
  --teal-800: #0a6e6c;
  --teal-700: #0d807d;
  --teal-600: #128f8b;
  --teal-500: #1aa59f;
  --teal-400: #3bbbb4;
  --teal-300: #75d4ce;
  --teal-200: #b0e8e4;
  --teal-100: #d8f4f2;
  --teal-50: #eefafa;
  --ink: #132525;
  --ink-soft: #3d5555;
  --ink-muted: #5f7575;
  --paper: #f7fbfb;
  --white: #ffffff;
  --line: rgba(10, 110, 108, 0.14);
  --shadow: 0 18px 50px rgba(4, 63, 63, 0.1);
  --radius: 18px;
  --nav-h: 80px;
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.05rem;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* â€”â€” Header / Navigation (A: Floating glass pill) â€”â€” */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.9rem 0 0.7rem;
  background: transparent;
  transition: padding 0.35s var(--ease);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247, 251, 251, 0.97) 0%,
    rgba(247, 251, 251, 0.88) 55%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.site-header.is-scrolled {
  padding-top: 0.55rem;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.nav-wrap {
  position: relative;
  z-index: 1;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 250, 250, 0.92));
  border: 1px solid rgba(26, 165, 159, 0.18);
  border-radius: 999px;
  box-shadow:
    0 10px 40px rgba(4, 63, 63, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header.is-scrolled .nav-wrap {
  box-shadow:
    0 14px 44px rgba(4, 63, 63, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border-color: rgba(26, 165, 159, 0.28);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.1rem 0.35rem;
  transition: transform 0.3s var(--ease);
}

.logo:hover {
  transform: scale(1.03);
}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.15rem;
  margin-left: auto;
}

.nav a:not(.nav-cta) {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav a:not(.nav-cta)::after {
  display: none;
}

.nav a:not(.nav-cta):hover {
  color: var(--teal-800);
  background: rgba(26, 165, 159, 0.1);
}

.nav a:not(.nav-cta).active {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  box-shadow: 0 8px 20px rgba(13, 128, 125, 0.28);
}

.nav a:not(.nav-cta).active:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
}

.nav-actions,
.nav-phone,
.nav-mobile-actions {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(13, 128, 125, 0.28);
}

.btn-primary:hover {
  background: var(--teal-900);
}

.btn-ghost {
  background: transparent;
  color: var(--teal-800);
  border-color: var(--teal-300);
}

.btn-ghost:hover {
  background: var(--teal-50);
  border-color: var(--teal-600);
}

.btn-light {
  background: var(--white);
  color: var(--teal-800);
}

.btn-light:hover {
  background: var(--teal-50);
}

.btn-on-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.nav-cta {
  margin-left: 0.25rem;
  padding: 0.78rem 1.35rem;
  font-size: 0.88rem;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-800));
  border: none;
  box-shadow:
    0 10px 26px rgba(13, 128, 125, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}

.nav-cta:hover::before {
  transform: translateX(120%);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-700));
  transform: translateY(-1px) scale(1.02);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(26, 165, 159, 0.22);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--white), var(--teal-50));
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(4, 63, 63, 0.08);
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal-800);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* —— Banner slider —— */
.banner {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - 12px);
  height: clamp(560px, 86vh, 820px);
  overflow: hidden;
  background: var(--teal-950);
  color: var(--white);
}

.banner-track {
  position: absolute;
  inset: 0;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
  z-index: 0;
}

.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s linear;
}

.banner-slide.is-active img {
  transform: scale(1);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4, 63, 63, 0.88) 0%, rgba(4, 63, 63, 0.62) 46%, rgba(4, 63, 63, 0.28) 100%),
    linear-gradient(to top, rgba(4, 40, 40, 0.72) 0%, transparent 48%);
}

.banner-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(5.5rem, 10vw, 7rem);
  max-width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-200);
  opacity: 0;
  transform: translateY(24px);
}

.banner-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-300), transparent);
}

.banner-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 12ch;
  margin-bottom: 1.1rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(28px);
}

.banner-copy h1 em {
  font-style: normal;
  color: var(--teal-300);
  display: inline-block;
}

.banner-lead {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36ch;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(28px);
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(28px);
}

.banner-slide.is-active .banner-kicker,
.banner-slide.is-active .banner-copy h1,
.banner-slide.is-active .banner-lead,
.banner-slide.is-active .banner-actions {
  animation: bannerRise 0.85s var(--ease) forwards;
}

.banner-slide.is-active .banner-copy h1 {
  animation-delay: 0.12s;
}

.banner-slide.is-active .banner-lead {
  animation-delay: 0.22s;
}

.banner-slide.is-active .banner-actions {
  animation-delay: 0.32s;
}

.banner-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.6rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.banner-dots,
.banner-arrows {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.banner-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

.banner-dots button.is-active {
  width: 34px;
  background: var(--teal-300);
}

.banner-prev,
.banner-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(4, 63, 63, 0.45);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.banner-prev:hover,
.banner-next:hover {
  background: rgba(26, 165, 159, 0.75);
  transform: translateY(-2px);
}

.banner-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.banner-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-200));
}

.banner-progress.is-running span {
  animation: bannerProgress 6s linear forwards;
}

@keyframes bannerRise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bannerProgress {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 780px) {
  .banner {
    height: clamp(520px, 78vh, 680px);
  }

  .banner-copy h1 {
    max-width: 11ch;
  }

  .banner-arrows {
    display: none;
  }
}


/* â€”â€” Sections â€”â€” */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.65rem;
}

.section-head h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--teal-950);
  margin-bottom: 0.85rem;
}

.section-head p,
.lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* â€”â€” About strip â€”â€” */
.about-strip {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-strip .visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 380px;
  background:
    radial-gradient(circle at 30% 20%, rgba(117, 212, 206, 0.35), transparent 45%),
    linear-gradient(155deg, #0a5c5a 0%, #043f3f 48%, #065a5a 100%);
  border: 1px solid rgba(4, 63, 63, 0.35);
  box-shadow: 0 18px 40px rgba(4, 63, 63, 0.18);
  display: grid;
  place-items: center;
  padding: 1.75rem;
}

.about-strip .visual img,
.about-visual-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--teal-950);
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

/* India highlight */
.hl-india {
  color: var(--teal-900);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 62%, rgba(26, 165, 159, 0.28) 62%);
  padding: 0 0.12em;
  border-radius: 2px;
}

.cta-band .hl-india {
  color: #ffffff;
  background: linear-gradient(180deg, transparent 58%, rgba(117, 212, 206, 0.45) 58%);
}

/* Products catalog listing */
.products-page {
  background:
    radial-gradient(ellipse 55% 50% at 100% 0%, rgba(176, 232, 228, 0.4), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f3fbfa 100%);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.catalog-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 280px;
  background: var(--white);
  border: 1px solid rgba(26, 165, 159, 0.16);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 14px 36px rgba(4, 63, 63, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-300);
  box-shadow: 0 22px 48px rgba(13, 128, 125, 0.14);
}

.catalog-media {
  position: relative;
  background: linear-gradient(145deg, var(--teal-50), #ffffff);
  overflow: hidden;
  min-height: 240px;
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.05);
}

.catalog-badge {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(4, 63, 63, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.catalog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(180deg, #ffffff, #f7fcfb);
}

.catalog-copy .tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.catalog-copy h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--teal-950);
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.catalog-copy > p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.catalog-points {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.catalog-points li {
  position: relative;
  padding-left: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.catalog-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-500);
}

.catalog-copy .more {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-700);
}

.catalog-copy .more::after {
  content: " →";
}

/* Product detail */
.crumb {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.crumb a {
  color: var(--teal-700);
  font-weight: 600;
}

.product-detail {
  padding-top: 2.5rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

/* Spec-style detail (image | title + check features) */
.product-detail-spec {
  padding-top: 1.5rem;
  background: #f7f8f8;
}

.product-spec-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.product-shot {
  background: var(--white);
  border: 3px solid var(--teal-500);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(4, 63, 63, 0.12);
  padding: 1.25rem;
  display: grid;
  place-items: center;
  min-height: 360px;
  aspect-ratio: 1;
}

.product-shot img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
}

.product-spec-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--teal-500);
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.product-spec-model {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-spec-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.product-spec-list li {
  position: relative;
  padding-left: 1.55rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #222;
  line-height: 1.45;
}

.product-spec-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #111;
}

.product-spec-info .share-box {
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .product-spec-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-shot {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1;
    min-height: 0;
  }
}

.product-gallery-main {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--teal-50), #ffffff);
  border: 1px solid rgba(26, 165, 159, 0.14);
  min-height: 360px;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--teal-50);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.product-thumbs img:hover,
.product-thumbs img.is-active {
  border-color: var(--teal-500);
  transform: translateY(-2px);
}

.product-info .tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.product-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--teal-950);
  margin-bottom: 0.75rem;
}

.product-summary {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.product-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.share-box {
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(238, 250, 250, 0.95), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(26, 165, 159, 0.16);
}

.share-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-800);
  margin-bottom: 0.7rem;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  background: var(--white);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    filter 0.2s var(--ease);
  box-shadow: 0 6px 16px rgba(4, 63, 63, 0.12);
}

.share-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  display: block;
}

.share-btn:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.05);
  box-shadow: 0 10px 22px rgba(4, 63, 63, 0.18);
}

.share-wa {
  background: #25d366;
  color: #fff;
}

.share-fb {
  background: #1877f2;
  color: #fff;
}

.share-x {
  background: #111111;
  color: #fff;
}

.share-li {
  background: #0a66c2;
  color: #fff;
}

.share-copy {
  background: var(--teal-600);
  color: #fff;
  border-color: transparent;
}

.share-feedback {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-700);
}

.product-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.detail-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--teal-950);
  margin-bottom: 1rem;
}

.detail-brand-list {
  display: grid;
  gap: 0.75rem;
}

.detail-brand-list > div {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.detail-brand-list strong {
  font-family: var(--font-display);
  color: var(--teal-900);
}

.detail-brand-list span {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.related-card {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 1rem;
  text-align: center;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(26, 165, 159, 0.16);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-900);
  box-shadow: 0 10px 24px rgba(4, 63, 63, 0.05);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-400);
}

@media (max-width: 900px) {
  .catalog-grid,
  .product-detail-layout,
  .product-content-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .related-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .related-products {
    grid-template-columns: 1fr;
  }

  .product-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-item-grid {
  grid-template-columns: repeat(4, 1fr);
}

.catalog-grid-compact .catalog-card {
  min-height: 240px;
}

.catalog-grid-compact .catalog-copy > p {
  margin-bottom: 0.85rem;
}

.section-head a {
  color: var(--teal-700);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

@media (max-width: 1000px) {
  .product-item-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .product-item-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero-compact {
  padding-top: 7.5rem;
  padding-bottom: 0.5rem;
}

.page-hero-compact h1 {
  margin-bottom: 0;
}

.page-hero-compact .crumb {
  margin-bottom: 0;
}

.product-gallery-single {
  min-height: 420px;
}

.product-gallery-single img {
  object-fit: contain;
  background: linear-gradient(145deg, var(--teal-50), #ffffff);
  padding: 1.25rem;
}

.product-full-section {
  background: var(--white);
  padding-top: 0.5rem;
}

.product-full-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.product-full-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.product-full-copy p:last-child {
  margin-bottom: 0;
}

.product-full-aside {
  padding: 1.25rem;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--teal-50), #ffffff);
  border: 1px solid rgba(26, 165, 159, 0.16);
  position: sticky;
  top: 6.5rem;
}

@media (max-width: 900px) {
  .product-full-layout {
    grid-template-columns: 1fr;
  }

  .product-full-aside {
    position: static;
  }

  .product-gallery-single {
    min-height: 280px;
  }
}


.india-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem 0.45rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 246, 245, 0.95));
  border: 1px solid rgba(26, 165, 159, 0.28);
  box-shadow: 0 8px 22px rgba(4, 63, 63, 0.08);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-800);
}

.india-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff9933 0 33%, #ffffff 33% 66%, #138808 66%);
  box-shadow: 0 0 0 2px rgba(13, 128, 125, 0.15);
  flex-shrink: 0;
}

.note-india {
  margin-top: 1.25rem;
  padding: 1.05rem 1.2rem;
  border-left: 4px solid var(--teal-500);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(232, 246, 245, 0.95), rgba(255, 255, 255, 0.4));
  color: var(--teal-900);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(4, 63, 63, 0.05);
}

.vm-india-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: -0.5rem auto 2rem;
  padding: 0.85rem 1.25rem;
  max-width: 720px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(19, 136, 8, 0.08), rgba(255, 153, 51, 0.1), rgba(26, 165, 159, 0.12));
  border: 1px solid rgba(26, 165, 159, 0.2);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-900);
  text-align: center;
}

@media (max-width: 640px) {
  .vm-india-strip {
    border-radius: 18px;
  }
}


/* â€”â€” Service / product grids â€”â€” */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--teal-200);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal-100), var(--teal-50));
  color: var(--teal-800);
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--teal-950);
  margin-bottom: 0.45rem;
}

.feature p {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* About — How we work */
.values-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 8% 20%, rgba(117, 212, 206, 0.28), transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 80%, rgba(26, 165, 159, 0.14), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #eefafa 100%);
}

.values-band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  border-radius: 40% 60% 55% 45%;
  background: linear-gradient(145deg, rgba(176, 232, 228, 0.55), transparent);
  animation: morphBlob 10s ease-in-out infinite;
  pointer-events: none;
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.value-card {
  position: relative;
  padding: 1.75rem 1.5rem 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 165, 159, 0.16);
  box-shadow: 0 14px 36px rgba(4, 63, 63, 0.07);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-300);
  box-shadow: 0 22px 48px rgba(13, 128, 125, 0.14);
}

.value-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.value-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal-600), var(--teal-900));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(13, 128, 125, 0.28);
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal-950);
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.value-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 28ch;
}

.value-line {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-200));
  transition: width 0.35s var(--ease);
}

.value-card:hover .value-line {
  width: 72px;
}

.value-card:nth-child(2) {
  transform: translateY(10px);
}

.value-card:nth-child(2):hover {
  transform: translateY(4px);
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card:nth-child(2) {
    transform: none;
  }

  .value-card:nth-child(2):hover {
    transform: translateY(-6px);
  }

.value-card p {
    max-width: none;
  }
}

/* Vision & Mission */
.vm-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 0% 30%, rgba(117, 212, 206, 0.3), transparent 55%),
    radial-gradient(ellipse 45% 55% at 100% 70%, rgba(26, 165, 159, 0.16), transparent 50%),
    linear-gradient(165deg, #f4fcfb 0%, #ffffff 48%, #e8f6f5 100%);
}

.vm-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.vm-glow-a {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  left: -8%;
  top: 10%;
  background: radial-gradient(circle, rgba(58, 187, 180, 0.28), transparent 70%);
  animation: heroFloat 14s ease-in-out infinite;
}

.vm-glow-b {
  width: min(36vw, 320px);
  height: min(36vw, 320px);
  right: -6%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(13, 128, 125, 0.18), transparent 70%);
  animation: heroFloat 16s ease-in-out infinite reverse;
}

.vm-band .container {
  position: relative;
  z-index: 1;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.vm-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem 1.85rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 165, 159, 0.18);
  box-shadow:
    0 18px 46px rgba(4, 63, 63, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.vm-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-700), var(--teal-300));
}

.vm-card-mission::before {
  background: linear-gradient(90deg, var(--teal-800), var(--teal-500), var(--teal-200));
}

.vm-card:hover {
  transform: translateY(-8px);
  border-color: rgba(26, 165, 159, 0.35);
  box-shadow: 0 28px 56px rgba(13, 128, 125, 0.16);
}

.vm-watermark {
  position: absolute;
  right: 0.6rem;
  top: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 8.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(13, 128, 125, 0.07);
  pointer-events: none;
  user-select: none;
}

.vm-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.vm-kicker {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.2rem;
}

.vm-label h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--teal-950);
  margin: 0;
}

.vm-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal-400), var(--teal-800));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(13, 128, 125, 0.3);
  flex-shrink: 0;
}

.vm-card-mission .vm-icon {
  background: linear-gradient(145deg, var(--teal-700), var(--teal-950));
}

.vm-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vm-lead {
  position: relative;
  z-index: 1;
  margin: 0 0 1.15rem;
  padding: 1.15rem 1.15rem 1.15rem 1.35rem;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(238, 250, 250, 0.95), rgba(216, 244, 242, 0.55));
  border-left: 3px solid var(--teal-500);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--teal-900);
}

.vm-card-mission .vm-lead {
  background: linear-gradient(135deg, rgba(247, 252, 251, 0.98), rgba(232, 246, 245, 0.75));
  border-left-color: var(--teal-800);
}

.vm-card > p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

@media (max-width: 800px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .vm-watermark {
    font-size: 6.5rem;
  }
}

/* —— Image service cards —— */
.services-showcase {
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(176, 232, 228, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(216, 244, 242, 0.7), transparent 50%),
    var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--teal-950);
  color: var(--white);
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 14px 36px rgba(4, 63, 63, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

a.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(4, 63, 63, 0.2);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s var(--ease);
  z-index: -2;
}

a.service-card:hover img {
  transform: scale(1.1);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 40, 40, 0.94) 0%,
    rgba(4, 63, 63, 0.55) 48%,
    rgba(4, 63, 63, 0.18) 100%
  );
  z-index: -1;
  transition: background 0.35s var(--ease);
}

a.service-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(4, 40, 40, 0.96) 0%,
    rgba(10, 110, 108, 0.62) 55%,
    rgba(4, 63, 63, 0.25) 100%
  );
}

.service-card .body {
  margin-top: auto;
  padding: 1.35rem 1.3rem 1.4rem;
}

.service-card .tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-200);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-200);
}

.service-card .more::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

a.service-card:hover .more::after {
  transform: translateX(4px);
}

.service-card.wide {
  grid-column: span 2;
  min-height: 300px;
}

@media (max-width: 1000px) {
  .service-grid,
  .service-grid.compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.wide {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .service-grid,
  .service-grid.compact {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
  }
}

/* Home services: image + description separated */
.service-split-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.service-split {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(4, 63, 63, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.service-split:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(4, 63, 63, 0.12);
  border-color: var(--teal-200);
}

.service-split-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--teal-100);
}

.service-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-split:hover .service-split-media img {
  transform: scale(1.06);
}

.service-split-copy {
  padding: 1.25rem 1.2rem 1.4rem;
  background: var(--white);
}

.service-split-copy .tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.service-split-copy h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal-950);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.service-split-copy p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.service-split-copy .more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-700);
}

.service-split-copy .more::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.service-split:hover .service-split-copy .more::after {
  transform: translateX(4px);
}

.service-split-media {
  position: relative;
}

.service-split-index {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(4, 63, 63, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-page {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(176, 232, 228, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(216, 244, 242, 0.75), transparent 50%),
    linear-gradient(180deg, #f7fcfb 0%, #ffffff 55%, #f0faf9 100%);
}

.services-page-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.services-page .service-split {
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(4, 63, 63, 0.08);
}

.services-page .service-split-media {
  aspect-ratio: 16 / 11;
}

.services-page .service-split-copy {
  padding: 1.35rem 1.25rem 1.45rem;
  background: linear-gradient(180deg, #ffffff, #f7fcfb);
}

.services-page .service-split-copy h3 {
  font-size: 1.18rem;
}

.pillars-band {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--teal-50) 100%);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.pillar-card {
  position: relative;
  padding: 1.5rem 1.25rem 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 165, 159, 0.16);
  box-shadow: 0 12px 30px rgba(4, 63, 63, 0.06);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pillar-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-700));
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(13, 128, 125, 0.12);
}

.pillar-num {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-950);
  margin-bottom: 0.45rem;
}

.pillar-card p {
  color: var(--ink-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .service-split-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .service-split-grid {
    grid-template-columns: 1fr;
  }

  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Product tiles —— */
.product-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  color: var(--white);
  isolation: isolate;
}

.product-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  z-index: -2;
}

.product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 63, 63, 0.92), rgba(4, 63, 63, 0.25));
  z-index: -1;
}

.product-tile:hover img {
  transform: scale(1.06);
}

.product-tile .body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
}

.product-tile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.product-tile p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Home products — brighter panels */
.products-bright {
  background:
    linear-gradient(180deg, #ffffff 0%, #f0faf9 55%, #e8f7f6 100%);
}

.product-bright-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.product-bright {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 220px;
  background: var(--white);
  border: 1px solid rgba(26, 165, 159, 0.16);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 32px rgba(4, 63, 63, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.product-bright:hover {
  transform: translateY(-4px);
  border-color: var(--teal-300);
  box-shadow: 0 18px 42px rgba(13, 128, 125, 0.14);
}

.product-bright-media {
  position: relative;
  min-height: 200px;
  background: linear-gradient(145deg, var(--teal-50), #ffffff);
  overflow: hidden;
}

.product-bright-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.product-bright:hover .product-bright-media img {
  transform: scale(1.05);
}

.product-bright-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.45rem;
  background: linear-gradient(180deg, #ffffff, #f7fcfb);
}

.product-bright-copy h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.product-bright-copy p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 0.95rem;
}

.product-bright-copy .more {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-700);
}

.product-bright-copy .more::after {
  content: " →";
  transition: margin-left 0.25s var(--ease);
}

.product-bright:hover .product-bright-copy .more::after {
  margin-left: 4px;
}

@media (max-width: 780px) {
  .product-bright-grid {
    grid-template-columns: 1fr;
  }

  .product-bright {
    grid-template-columns: 1fr;
  }

  .product-bright-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

/* —— Brands —— */
.brands {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(176, 232, 228, 0.4), transparent 60%),
    linear-gradient(180deg, #f7fcfb 0%, #ffffff 100%);
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.brand-chip {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-900);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.brand-chip:hover {
  border-color: var(--teal-400);
  transform: translateY(-3px);
}

.brand-chip small {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.brand-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.brand-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(26, 165, 159, 0.16);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 30px rgba(4, 63, 63, 0.07);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-300);
  box-shadow: 0 20px 44px rgba(13, 128, 125, 0.14);
}

.brand-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--teal-50), #ffffff 70%);
  overflow: hidden;
}

.brand-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.brand-card:hover .brand-card-media img {
  transform: scale(1.06);
}

.brand-card-copy {
  padding: 1.2rem 1.15rem 1.35rem;
  border-top: 1px solid rgba(26, 165, 159, 0.1);
  background: linear-gradient(180deg, #ffffff, #f6fbfb);
}

.brand-card-copy h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.brand-card-copy p {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.brand-card-copy .more {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-700);
}

.brand-card-copy .more::after {
  content: " →";
  transition: margin-left 0.25s var(--ease);
}

.brand-card:hover .brand-card-copy .more::after {
  margin-left: 4px;
}

@media (max-width: 1000px) {
  .brand-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .brand-gallery {
    grid-template-columns: 1fr;
  }
}

/* —— CTA band —— */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--teal-950), var(--teal-800) 55%, var(--teal-600));
  color: var(--white);
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 212, 206, 0.28), transparent 70%);
  animation: floatOrb 8s ease-in-out infinite;
}

.cta-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 48ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* â€”â€” Page hero (inner pages) â€”â€” */
.page-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(58, 187, 180, 0.18), transparent 55%),
    linear-gradient(180deg, var(--teal-50), var(--paper));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: 8%;
  top: 10%;
  border-radius: 40% 60% 55% 45%;
  background: linear-gradient(145deg, var(--teal-200), transparent);
  opacity: 0.45;
  animation: morphBlob 10s ease-in-out infinite;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* â€”â€” Content blocks â€”â€” */
.prose {
  max-width: 720px;
}

.prose p + p {
  margin-top: 1rem;
}

.prose p {
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.split .media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--teal-100);
  min-height: 320px;
}

.split .media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.checklist {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d807d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / 12px no-repeat;
}

.feature-points-wrap {
  max-width: 820px;
}

.feature-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  counter-reset: feature-point;
}

.feature-points li {
  counter-increment: feature-point;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7fcfb, #ffffff);
  border: 1px solid rgba(26, 165, 159, 0.16);
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}

.feature-points li::before {
  content: counter(feature-point, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal-700);
  background: var(--teal-100);
  border: 1px solid rgba(26, 165, 159, 0.22);
  min-width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  margin-top: 0.05rem;
}

/* —— Gallery —— */
.gallery-page {
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(176, 232, 228, 0.35), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfb 100%);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.25rem;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 165, 159, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(4, 63, 63, 0.06);
  width: fit-content;
  max-width: 100%;
}

.gallery-filter {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.gallery-filter:hover {
  background: var(--teal-50);
}

.gallery-filter.is-active {
  background: var(--teal-600);
  color: #fff;
}

.gallery-category {
  margin-bottom: 2.75rem;
}

.gallery-category.is-hidden {
  display: none;
}

.gallery-category-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.15rem;
}

.gallery-category-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--teal-950);
  letter-spacing: -0.02em;
}

.gallery-category-link {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-700);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 26px rgba(4, 63, 63, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.9rem 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(4, 63, 63, 0.82));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
}

.gallery-item.wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .gallery-filters {
    border-radius: 22px;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Contact —— */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 3.5rem;
  background: linear-gradient(165deg, #eefafa 0%, #f7fbfb 45%, #ffffff 100%);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: floatOrb 10s ease-in-out infinite;
}

.contact-orb-a {
  width: 340px;
  height: 340px;
  top: -80px;
  right: -40px;
  background: radial-gradient(circle, rgba(117, 212, 206, 0.45), transparent 70%);
}

.contact-orb-b {
  width: 260px;
  height: 260px;
  bottom: -40px;
  left: -60px;
  background: radial-gradient(circle, rgba(26, 165, 159, 0.22), transparent 70%);
  animation-delay: -3s;
}

.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(13, 128, 125, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 128, 125, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
}

.contact-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.contact-hero-logo {
  display: block;
  width: min(220px, 55vw);
  height: auto;
  margin: 0.85rem 0 1rem;
  animation: contactLogoIn 0.9s var(--ease) both;
}

.contact-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.04em;
  color: var(--teal-950);
  margin-bottom: 0.85rem;
  max-width: 14ch;
  animation: contactFadeUp 0.8s var(--ease) 0.1s both;
}

.contact-hero-copy > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 36rem;
  margin-bottom: 1.5rem;
  animation: contactFadeUp 0.8s var(--ease) 0.2s both;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: contactFadeUp 0.8s var(--ease) 0.3s both;
}

.contact-hero-panel {
  padding: 1.25rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 165, 159, 0.18);
  box-shadow: 0 22px 50px rgba(4, 63, 63, 0.1);
  backdrop-filter: blur(14px);
}

.contact-hero-panel-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.85rem;
  padding-left: 0.25rem;
}

.contact-quick {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.contact-quick + .contact-quick {
  margin-top: 0.35rem;
}

.contact-quick:hover {
  background: var(--teal-50);
  transform: translateX(4px);
}

.contact-quick-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--teal-100);
  color: var(--teal-700);
}

.contact-quick-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.contact-quick-wa .contact-quick-icon {
  background: #e8fff1;
  color: #128c47;
}

.contact-quick strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--teal-950);
  margin-bottom: 0.15rem;
}

.contact-quick em {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.contact-main {
  background: linear-gradient(180deg, #ffffff 0%, #f3fbfa 100%);
  padding-top: 1rem;
}

.contact-card-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background:
    radial-gradient(ellipse 55% 80% at 10% 20%, rgba(117, 212, 206, 0.35), transparent 55%),
    radial-gradient(ellipse 45% 70% at 95% 80%, rgba(26, 165, 159, 0.18), transparent 50%),
    linear-gradient(165deg, #dff5f3 0%, #eefafa 42%, #f3fbfa 100%);
  border-block: 1px solid rgba(26, 165, 159, 0.14);
}

.contact-card-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.contact-card-visual {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(26, 165, 159, 0.22);
  box-shadow: 0 20px 48px rgba(4, 63, 63, 0.14);
}

.contact-card-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.contact-card-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  color: var(--teal-950);
  margin: 0.35rem 0 0.75rem;
}

.contact-card-copy > p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .contact-card-layout {
    grid-template-columns: 1fr;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.25rem;
  align-items: start;
}

.contact-side h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  color: var(--teal-950);
  margin: 0.35rem 0 0.85rem;
}

.contact-side-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.contact-meta {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-meta li {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26, 165, 159, 0.14);
}

.contact-meta span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.contact-meta strong,
.contact-meta a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-950);
}

.contact-meta a:hover {
  color: var(--teal-700);
}

.contact-hours {
  padding: 1.15rem 1.25rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(238, 250, 250, 0.95), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(26, 165, 159, 0.16);
}

.contact-hours-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-800);
  margin-bottom: 0.4rem;
}

.contact-hours p:last-child {
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-form {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(26, 165, 159, 0.16);
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(4, 63, 63, 0.1);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-300));
}

.contact-form-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.45rem;
}

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--teal-950);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.contact-form > p {
  color: var(--ink-muted);
  margin-bottom: 1.35rem;
  font-size: 0.98rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(26, 165, 159, 0.18);
  border-radius: 14px;
  background: #f7fcfb;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-400);
  box-shadow: 0 0 0 4px rgba(26, 165, 159, 0.14);
  background: var(--white);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.form-note {
  margin-top: 0.95rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  text-align: center;
}

.form-note a {
  color: var(--teal-700);
  font-weight: 700;
}

.contact-map {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.contact-map-media {
  position: absolute;
  inset: 0;
}

.contact-map-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: contactMapDrift 18s ease-in-out infinite alternate;
}

.contact-map-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 63, 63, 0.88) 10%, rgba(4, 63, 63, 0.55) 55%, rgba(4, 63, 63, 0.35));
}

.contact-map-content {
  position: relative;
  padding: 3.5rem 0;
  max-width: 36rem;
}

.contact-map-content .eyebrow {
  color: var(--teal-200);
}

.contact-map-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.75rem;
}

.contact-map-content > p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes contactLogoIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes contactFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes contactMapDrift {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.1) translateY(-12px);
  }
}

@media (max-width: 900px) {
  .contact-hero-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding-top: 7.5rem;
  }

  .contact-hero-copy h1 {
    max-width: none;
  }
}

/* Headquarters panel */
.hq-section {
  background: linear-gradient(180deg, #f3fbfa 0%, #ffffff 100%);
}

.hq-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(26, 165, 159, 0.16);
  box-shadow: 0 20px 48px rgba(4, 63, 63, 0.08);
}

.hq-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  color: var(--teal-950);
  margin: 0.35rem 0 0.75rem;
}

.hq-copy > p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.35rem;
  max-width: 38rem;
}

.hq-details {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.hq-details li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(26, 165, 159, 0.12);
}

.hq-details span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.hq-details strong,
.hq-details a {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--teal-950);
}

.hq-details a:hover {
  color: var(--teal-700);
}

.hq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hq-aside {
  padding: 1.35rem;
  border-radius: 22px;
  background: linear-gradient(160deg, var(--teal-950), var(--teal-800));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hq-aside-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-200);
}

.hq-loc {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.3rem;
}

.hq-loc.is-hq {
  background: rgba(117, 212, 206, 0.16);
  border-color: rgba(176, 232, 228, 0.35);
}

.hq-loc strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.hq-loc span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hq-loc a {
  margin-top: 0.35rem;
  color: var(--teal-200);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
}

.hq-loc a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .hq-panel {
    grid-template-columns: 1fr;
  }
}

/* —— Footer —— */
.site-footer {
  background: var(--teal-950);
  color: var(--teal-100);
  padding: 3.5rem 0 1.5rem;
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-office-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(176, 232, 228, 0.16);
  min-height: 100%;
}

.footer-office-card.is-india {
  background: linear-gradient(145deg, rgba(26, 165, 159, 0.18), rgba(255, 255, 255, 0.05));
  border-color: rgba(117, 212, 206, 0.28);
}

.footer-office-card.is-qatar {
  background: rgba(255, 255, 255, 0.05);
}

.footer-hq-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 0.35rem;
}

.footer-office-card p {
  color: rgba(216, 244, 242, 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.footer-office-card p + p {
  margin-top: 0.2rem;
}

.footer-office-card a {
  color: #fff;
  font-weight: 600;
}

.footer-office-card a:hover {
  color: var(--teal-200);
}

.footer-hq-link {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal-200) !important;
  margin-top: auto;
  align-self: flex-start;
}

.footer-hq-link:hover {
  color: #fff !important;
}

@media (max-width: 780px) {
  .footer-offices {
    grid-template-columns: 1fr;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  padding: 0.55rem 0.75rem;
  background: var(--white);
  border-radius: 12px;
}

.footer-brand p {
  color: rgba(216, 244, 242, 0.75);
  font-size: 0.95rem;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(216, 244, 242, 0.78);
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(216, 244, 242, 0.55);
}

.footer-bottom a {
  color: var(--teal-300);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* â€”â€” Reveal motion â€”â€” */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* â€”â€” Animations â€”â€” */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -22px) scale(1.05);
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 165, 159, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(26, 165, 159, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(26, 165, 159, 0);
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 20px);
  }
}

@keyframes morphBlob {
  0%,
  100% {
    border-radius: 40% 60% 55% 45%;
    transform: rotate(0deg) translate(0, 0);
  }
  50% {
    border-radius: 55% 45% 40% 60%;
    transform: rotate(12deg) translate(-12px, 16px);
  }
}

/* â€”â€” Responsive â€”â€” */
@media (max-width: 1000px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-strip,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    border-radius: 28px;
    padding: 0.55rem 0.7rem 0.55rem 0.9rem;
  }

  .nav-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(26, 165, 159, 0.18);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(4, 63, 63, 0.14);
    backdrop-filter: blur(16px);
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
  }

  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a:not(.nav-cta) {
    padding: 0.85rem 1rem;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.25rem;
    width: 100%;
  }
}

@media (max-width: 780px) {
  .grid-3,
  .grid-2,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .grid-4,
  .brand-row,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(1180px, calc(100% - 1.5rem));
  }
}
