:root {
  color-scheme: light;
  --ink: #182237;
  --muted: #627083;
  --line: #dce8e4;
  --brand: #0a5bd3;
  --brand-dark: #063f9a;
  --accent: #14a766;
  --warm: #f6c242;
  --paper: #f8fbfa;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 44, 72, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--line);
}

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

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

.brand small {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #354257;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--brand);
}

.header-whatsapp,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.header-whatsapp,
.button.primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(20, 167, 102, 0.24);
}

.button.secondary {
  color: var(--brand-dark);
  background: var(--white);
  border-color: #b9d6ff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(44px, 8vw, 88px) clamp(18px, 5vw, 72px) 40px;
  background:
    linear-gradient(135deg, rgba(10, 91, 211, 0.08), rgba(20, 167, 102, 0.1)),
    #f6fbff;
}

.eyebrow,
.section-heading p {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.05;
  color: #10203c;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.25rem, 6vw, 5.5rem);
}

.hero-text {
  max-width: 660px;
  margin: 22px 0;
  color: #40506a;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.7;
}

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

.trust-strip {
  margin-top: 24px;
}

.trust-strip span {
  border: 1px solid #cce3dc;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 13px;
  color: #29435c;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-media {
  width: min(100%, 800px);
  justify-self: center;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: auto;
}

.anniversary-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 36px);
  padding: clamp(22px, 4vw, 34px) clamp(18px, 5vw, 72px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 12%, transparent 12% 20%, rgba(255, 255, 255, 0.12) 20% 30%, transparent 30%),
    linear-gradient(135deg, #0a5bd3, #0c7f70 48%, #14a766);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(6, 63, 154, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.offer-badge {
  display: grid;
  width: clamp(96px, 13vw, 132px);
  height: clamp(96px, 13vw, 132px);
  flex: 0 0 auto;
  place-items: center;
  align-content: center;
  border: 3px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  color: #10203c;
  background: #f6c242;
  box-shadow: 0 18px 38px rgba(16, 32, 60, 0.24);
}

.offer-badge span,
.offer-badge small {
  display: block;
  line-height: 1;
}

.offer-badge span {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 950;
}

.offer-badge small {
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0;
}

.offer-copy {
  display: grid;
  max-width: 720px;
  gap: 10px;
}

.offer-copy p,
.offer-copy h2 {
  margin: 0;
}

.offer-copy p {
  color: #fff3c2;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer-copy h2 {
  color: #ffffff;
  font-size: clamp(1.7rem, 3.8vw, 3.25rem);
  line-height: 1.08;
}

.offer-meta,
.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-meta span,
.offer-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 850;
}

.offer-meta span {
  color: #10203c;
  background: #ffffff;
}

.offer-points span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.offer-button {
  flex: 0 0 auto;
  color: #10203c;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 16px 30px rgba(16, 32, 60, 0.18);
}

.section {
  padding: clamp(48px, 8vw, 86px) clamp(18px, 5vw, 72px);
}

.section.tinted {
  background: #eef7f3;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.local-seo-section {
  background: #ffffff;
  padding-top: clamp(42px, 6vw, 68px);
  padding-bottom: clamp(42px, 6vw, 68px);
}

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

.local-seo-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 24px);
  background: #f8fbfa;
}

.local-seo-grid h3 {
  margin: 0 0 10px;
  color: #10203c;
}

.local-seo-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.service-group {
  margin-top: 26px;
}

.service-group:first-of-type {
  margin-top: 0;
}

.service-group > h3 {
  margin: 0 0 14px;
  color: #10203c;
  font-size: 1.25rem;
}

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

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

.service-card,
.product-card,
.image-card,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(30, 51, 78, 0.08);
}

.service-card {
  padding: 22px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 16px;
  border-radius: 6px;
  object-fit: contain;
  background: #f5f8fb;
}

.service-card h3,
.service-card h4,
.product-card h3,
.benefit-panel h3 {
  margin: 0 0 10px;
  color: #10203c;
}

.service-card h4 {
  font-size: 1.05rem;
}

.other-services-card {
  margin-top: 26px;
}

.other-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.other-service-row {
  display: grid;
  width: 100%;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fbfa;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.other-service-row:hover,
.other-service-row:focus-visible {
  border-color: #9dc7ff;
  box-shadow: 0 10px 24px rgba(10, 91, 211, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.other-service-row strong {
  color: #10203c;
}

.other-service-row span {
  color: var(--muted);
  line-height: 1.45;
}

.other-service-row small {
  color: var(--brand);
  font-weight: 900;
}

.service-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 32, 60, 0.58);
}

.service-modal {
  position: relative;
  width: min(100%, 680px);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.service-modal h3 {
  margin: 0 44px 12px 0;
  color: #10203c;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.service-modal p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.service-modal ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: #263950;
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #10203c;
  background: #f8fbfa;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: #9dc7ff;
  outline: none;
}

.service-card p,
.contact-copy p,
.benefit-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.benefit-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.benefit-panel img {
  width: 100%;
  max-width: 360px;
  justify-self: center;
  border-radius: 6px;
}

.benefit-panel ul {
  margin: 0;
  padding-left: 20px;
}

.carousel-shell {
  position: relative;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 14px;
}

.carousel-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #b9d6ff;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(30, 51, 78, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  border-color: var(--brand);
  outline: none;
}

.carousel-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 4px 18px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel-track > * {
  flex: 0 0 clamp(260px, 30vw, 380px);
  scroll-snap-align: start;
}

.carousel-track.service-grid-visual > * {
  flex-basis: clamp(260px, 28vw, 360px);
}

.carousel-track.gallery-grid > * {
  flex-basis: clamp(280px, 33vw, 430px);
}

.carousel-track.nutrition-grid > * {
  flex-basis: clamp(310px, 44vw, 560px);
}

.carousel-track.product-grid > * {
  flex-basis: clamp(235px, 24vw, 320px);
}

.carousel-track::-webkit-scrollbar {
  height: 10px;
}

.carousel-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #edf3f7;
}

.carousel-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #b9d6ff;
}

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

.image-card {
  margin: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f5f8fb;
}

.image-card figcaption {
  padding: 13px 15px;
  font-weight: 850;
  color: #22324b;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
}

.product-group {
  margin-top: 28px;
}

.product-group:first-of-type {
  margin-top: 0;
}

.product-group > h3 {
  margin: 0 0 14px;
  color: #10203c;
  font-size: 1.25rem;
}

.product-group-copy {
  margin: -4px 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.nutrition-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
  box-shadow: 0 16px 34px rgba(30, 51, 78, 0.08);
  overflow: hidden;
}

.nutrition-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f5f8fb;
}

.nutrition-feature div {
  padding: clamp(20px, 4vw, 34px);
}

.nutrition-feature h3 {
  margin: 0 0 12px;
  color: #10203c;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.nutrition-feature p {
  max-width: 560px;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: contain;
  background: #f5f8fb;
}

.product-card div {
  padding: 16px;
}

.product-card a {
  color: var(--accent);
  font-weight: 900;
}

.carousel-shell .carousel-track {
  display: flex;
}

.faq-section {
  background: #f8fbfa;
}

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

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 24px);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(30, 51, 78, 0.06);
}

.faq-grid h3 {
  margin: 0 0 10px;
  color: #10203c;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.reviews-section {
  background: #eef7f3;
}

.google-review-card {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(30, 51, 78, 0.08);
}

.google-review-card h3 {
  max-width: 680px;
  margin: 0;
  color: #10203c;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.15;
}

.google-review-card > p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.google-review-button {
  gap: 10px;
}

.google-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #4285f4;
  background: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.review-note {
  font-size: 0.92rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background: #ffffff;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-copy > p {
  max-width: 640px;
}

.contact-copy {
  min-width: 0;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  color: #263950;
  font-weight: 850;
}

.contact-lines a {
  color: var(--brand);
}

.contact-name {
  color: #10203c;
  font-size: 1.08rem;
  font-weight: 950;
}

.disclaimer {
  max-width: 720px;
  padding: 14px 16px;
  border-left: 4px solid var(--warm);
  background: #fff9e8;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.map-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(30, 51, 78, 0.08);
}

.map-card h3 {
  margin: 0;
  color: #10203c;
}

.map-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.map-card iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 6px;
}

.map-link {
  width: 100%;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: #2b3850;
  font-weight: 850;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd8e5;
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: #0bbf61;
  font-weight: 950;
  box-shadow: 0 14px 36px rgba(11, 191, 97, 0.34);
}

footer {
  padding: 24px clamp(18px, 5vw, 72px);
  color: #dce8ff;
  background: #10203c;
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 1000px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .contact-section,
  .benefit-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid-general,
  .service-grid-visual,
  .local-seo-grid,
  .faq-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .header-whatsapp {
    width: 100%;
  }

  .hero {
    padding-top: 34px;
  }

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

  .anniversary-offer {
    align-items: stretch;
    flex-direction: column;
  }

  .offer-button {
    width: 100%;
  }

  .service-grid,
  .service-grid-general,
  .service-grid-visual,
  .other-services-list,
  .local-seo-grid,
  .faq-grid,
  .gallery-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .image-card img,
  .product-card img {
    aspect-ratio: 1 / 0.72;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }

  .carousel-track {
    gap: 12px;
    padding-inline: 0;
  }

  .carousel-track.reviews-grid > * {
    flex-basis: min(100%, calc(100vw - 48px));
  }

  .reviews-showcase .carousel-controls {
    justify-content: flex-start;
  }
}

.reviews-showcase {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  margin-top: 0;
}

.reviews-heading {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.reviews-showcase .carousel-controls {
  margin-top: -0.25rem;
}

.carousel-shell .reviews-grid.carousel-track {
  display: flex;
  gap: 1rem;
}

.carousel-track.reviews-grid > * {
  flex: 0 0 clamp(250px, 32vw, 360px);
}

.review-card {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow-wrap: anywhere;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #059669);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.review-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0;
}

.review-stars {
  font-size: 0.8rem;
  color: #d1d5db;
  letter-spacing: 1px;
}

.review-stars .star.filled {
  color: #f59e0b;
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #4b5563;
  font-style: italic;
  margin: 0;
}
