﻿:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --brand: #D4AF37;
  --brand-dark: #A68724;
  --accent: #eab308;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1400px;
}

/* Flat selectors for header/topbar (converted from nested CSS) */
.topbar .topbar-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; flex-wrap: wrap; }
.topbar .topbar-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .topbar-note { color: #94a3b8; }

header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px); background: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(226,232,240,0.9); transition: box-shadow 0.3s ease, padding 0.3s ease; }
header.scrolled { box-shadow: var(--shadow); background: rgba(255,255,255,0.98); }
.header .nav, header .nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 0; transition: padding 0.3s ease; }
header .brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
header .brand .brand-logo { width: auto; height: auto; border-radius: 0; background: none; color: inherit; display: flex; align-items: center; justify-content: center; padding: 0; box-shadow: none; flex-shrink: 0; }
header .brand .brand-copy strong { display: block; font-size: 1.05rem; line-height: 1.2; }
header .brand .brand-copy span { color: var(--muted); font-size: 0.92rem; }
header .nav-links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
header .nav-links a { color: var(--muted); font-weight: 600; transition: color 0.2s ease, transform 0.2s ease; padding: 6px 8px; border-radius: 6px; display: inline-flex; align-items: center; }
header .nav-links a:hover, header .nav-links a:focus-visible { color: var(--brand-dark); background: rgba(204,164,61,0.08); }
header .nav-links a.nav-active { color: var(--brand-dark) !important; transform: scale(1.04); }
header .nav-links .btn { color: #fff; }
header .mobile-menu-btn { display: none; background: none; border: none; color: var(--ink); cursor: pointer; }

/* Services dropdown in primary nav */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  min-width: 280px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 20px 46px rgba(2, 6, 23, 0.12);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.25;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translate(-2px, -1px);
}

/* Allow logo to expand in width while keeping a sensible max-height */
.site-logo { width: 220px; height: auto; max-height: 110px; display: block; object-fit: contain; }

/* Ensure brand images show without decorative box */
.brand-logo img { display: block; width: 220px; height: auto; max-height: 110px; object-fit: contain; }

/* Button flat rules */
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; box-shadow: 0 14px 30px rgba(8,145,178,0.28); }
.btn.btn-secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); }

/* Mobile menu open state */
.nav-links.open { display: flex !important; }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(8, 145, 178, 0.08), transparent 28%),
    radial-gradient(circle at right top, rgba(234, 179, 8, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.bg-light { background-color: rgba(8, 145, 178, 0.03); }

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

/* Base Card Style Used Across Sections */
.stat,
.card,
.product-card,
.contact-card,
.feature,
.about-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover,
.card:hover,
.product-card:hover,
.contact-card:hover,
.feature:hover,
.about-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(8, 145, 178, 0.15);
}

.card h3,
.feature h3,
.product-card h3,
.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p,
.feature p,
.product-card p,
.contact-card p,
.stat p {
  margin: 0;
  color: var(--muted);
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0;
  font-family: "Outfit", sans-serif;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}


/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 150ms; }
.delay-2 { transition-delay: 300ms; }
.delay-3 { transition-delay: 450ms; }

/* Topbar */
.topbar {
  background: var(--ink);
  color: #f8fafc;
  font-size: 0.9rem;

  .topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    flex-wrap: wrap;
  }

  .topbar-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .topbar-note {
    color: #cbd5e1;
    font-size: 0.86rem;
  }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  transition: box-shadow 0.3s ease, padding 0.3s ease;

  &.scrolled {
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.98);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
    transition: padding 0.3s ease;
  }

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

      .brand-logo {
        width: auto;
        height: auto;
        padding: 6px 8px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--brand), var(--brand-dark));
        color: #fff;
        display: grid;
        place-items: center;
        font-weight: 700;
        letter-spacing: 0.02em;
        box-shadow: var(--shadow);
        flex-shrink: 0;
      }

    .brand-copy strong {
      display: block;
      font-size: 1.05rem;
      line-height: 1.2;
    }

    .brand-copy span {
      color: var(--muted);
      font-size: 0.92rem;
    }
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-end;

    a {
      color: var(--muted);
      font-weight: 600;
      transition: color 0.2s ease;

      &:hover,
      &:focus-visible {
        color: var(--brand-dark);
      }
    }
    
    .btn {
       color: #fff;
    }
  }
  
  .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     color: var(--ink);
     cursor: pointer;
  }
}

/* Buttons Tools */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;

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

  &.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    box-shadow: 0 14px 30px rgba(8, 145, 178, 0.28);
  }

  &.btn-secondary {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO BANNER â€” Premium Cinematic Design
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(100deg,
      rgba(6, 12, 28, 0.94) 0%,
      rgba(6, 12, 28, 0.78) 45%,
      rgba(6, 12, 28, 0.30) 100%),
    url('assets/img/E11EOJ9.avif')
      center / cover no-repeat;
  padding: 120px 0 80px;
}

/* Gold shimmer accent line at the bottom of the banner */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* â”€â”€ Two-column inner grid â”€â”€ */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

/* â”€â”€ LEFT COLUMN â”€â”€ */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Headline */
.hero-left h1 {
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.brand-text { color: var(--brand); }

/* Sub-text */
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  margin: 0 0 32px;
  font-weight: 400;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.hero-stat {
  flex: 1;
  padding: 0 20px 0 0;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 5px;
  font-family: "Outfit", sans-serif;
}

.hero-stat span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 24px;
  flex-shrink: 0;
}

/* â”€â”€ RIGHT COLUMN â€” Floating Image Card â”€â”€ */
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-panel {
  width: 100%;
  max-width: 480px;
  background: rgba(6,12,28,0.48);
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(2,6,23,0.28);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
}

.panel-eyebrow {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.panel-title {
  font-size: 1.25rem;
  margin: 6px 0 10px 0;
  line-height: 1.15;
}

.panel-desc { color: rgba(255,255,255,0.92); margin-bottom: 14px; }
.panel-list { display: grid; gap: 12px; }
.panel-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px 14px;
  border-radius: 12px;
}
.panel-item strong { display: block; margin-bottom: 6px; color: #fff; font-size: 0.98rem; }
.panel-item p { margin: 0; color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 380px; gap: 40px; }
  .hero-panel { max-width: 420px; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { justify-content: center; }
  .hero-panel { max-width: 100%; }
}

@media (max-width: 520px) {
  .hero-left h1 { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat-divider { display: none; }
}


/* General Layouts */
section {
  padding: 60px 0;

  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;

    p {
      margin: 12px 0 0;
      max-width: 62ch;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -0.03em;
    }
  }
}

/* About section - editorial split layout */
#about {
  padding: 72px 0;
  background:
    radial-gradient(circle at 8% 24%, rgba(212,175,55,0.14), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,250,252,0.95) 100%);
}
#about .section-head .muted { color: var(--muted); margin-top: 8px; font-weight:600; }
#about .about-grid { display: grid; grid-template-columns: minmax(320px, 520px) 1fr; gap: 48px; align-items: center; }

/* Visual side */
#about .about-visual-wrap { position: relative; }
#about .about-visual-shell {
  position: relative;
  min-height: 450px;
  border-radius: 32px;
  border: 1px solid rgba(226,232,240,0.95);
  background: linear-gradient(155deg, rgba(15,23,42,0.95), rgba(15,23,42,0.78));
  box-shadow: 0 34px 80px rgba(2,6,23,0.2);
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease;
  transform-style: preserve-3d;
}
#about .about-visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.26), transparent 42%);
  pointer-events: none;
}
#about .about-photo {
  position: absolute;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.42);
  box-shadow: 0 24px 55px rgba(0,0,0,0.34);
}
#about .about-photo-primary {
  left: 24px;
  top: 24px;
  width: calc(100% - 48px);
  height: 300px;
  object-position: 68% 18%;
  border-radius: 22px;
  z-index: 2;
  animation: aboutFloatPrimary 7.2s ease-in-out infinite;
}
#about .about-photo-accent {
  right: 30px;
  bottom: 26px;
  width: 200px;
  height: 150px;
  z-index: 3;
  transform: rotate(-6deg) translate3d(0, 0, 0);
  animation: aboutFloatAccent 6s ease-in-out infinite;
}
#about .about-shine {
  position: absolute;
  inset: -18%;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.28s ease;
  background: linear-gradient(
    130deg,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0.14) 48%,
    rgba(255,255,255,0.68) 50%,
    rgba(255,255,255,0.14) 52%,
    rgba(255,255,255,0) 60%
  );
}
#about .about-shine-left {
  clip-path: polygon(0 0, 50% 50%, 0 100%);
  transform: translate3d(0, 0, 0) rotate(-10deg);
}
#about .about-shine-right {
  clip-path: polygon(100% 0, 50% 50%, 100% 100%);
  transform: translate3d(0, 0, 0) rotate(-10deg);
}
#about .about-visual-shell:hover .about-shine,
#about .about-visual-shell:focus-within .about-shine {
  opacity: 1;
}
#about .about-visual-shell:hover .about-shine-left,
#about .about-visual-shell:focus-within .about-shine-left {
  transform: translate3d(-30%, -30%, 0) rotate(-10deg);
}
#about .about-visual-shell:hover .about-shine-right,
#about .about-visual-shell:focus-within .about-shine-right {
  transform: translate3d(30%, 30%, 0) rotate(-10deg);
}
#about .about-visual-note {
  position: absolute;
  left: 26px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 16px 34px rgba(2,6,23,0.18);
  animation: aboutNoteGlow 4.8s ease-in-out infinite;
}
#about .about-visual-note strong { display: block; font-size: 1.15rem; color: var(--brand-dark); line-height: 1.2; }
#about .about-visual-note span { font-size: 0.86rem; color: var(--muted); }
#about .about-orbit {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  border: 1px dashed rgba(212,175,55,0.65);
  opacity: 0.8;
  z-index: 1;
  animation: aboutOrbitSpin 14s linear infinite;
}
#about .about-orbit::before,
#about .about-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}
#about .about-orbit::before {
  width: 12px;
  height: 12px;
  background: var(--brand);
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(212,175,55,0.75);
}
#about .about-orbit::after {
  width: 8px;
  height: 8px;
  background: #fff;
  bottom: 20px;
  right: -4px;
}

/* Content side */
#about .about-content { display: flex; flex-direction: column; gap: 14px; }
#about .about-heading {
  width: fit-content;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.16);
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#about .about-sub { font-size: clamp(1.7rem, 3vw, 2.35rem); color: var(--ink); margin: 0 0 6px 0; line-height: 1.15; }
#about p { color: var(--muted); line-height: 1.65; margin: 0; }
#about .about-highlights {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
#about .about-highlight {
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(226,232,240,0.9);
  background: #fff;
  box-shadow: 0 10px 24px rgba(2,6,23,0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#about .about-highlight::before {
  content: "";
  position: absolute;
  inset: -120% auto -120% -55%;
  width: 42%;
  transform: rotate(24deg);
  background: linear-gradient(180deg, rgba(212,175,55,0), rgba(212,175,55,0.33), rgba(212,175,55,0));
  animation: aboutHighlightSweep 4.6s ease-in-out infinite;
  pointer-events: none;
}
#about .about-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(2,6,23,0.12);
}
#about .about-highlight strong {
  display: block;
  font-size: 1rem;
  color: var(--brand-dark);
  line-height: 1.2;
}
#about .about-highlight span { font-size: 0.82rem; color: var(--muted); }
#about .about-cta { margin-top: 8px; display: flex; gap: 12px; flex-wrap: wrap; }
#about .btn-ghost {
  border-color: rgba(2,6,23,0.18);
  color: var(--ink);
  background: rgba(2,6,23,0.02);
}
#about .btn-ghost:hover {
  background: rgba(8,145,178,0.08);
  border-color: rgba(8,145,178,0.35);
}

@keyframes aboutFloatPrimary {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}
@keyframes aboutFloatAccent {
  0%, 100% { transform: rotate(-6deg) translate3d(0, 0, 0); }
  50% { transform: rotate(-3deg) translate3d(0, -10px, 0); }
}
@keyframes aboutNoteGlow {
  0%, 100% { box-shadow: 0 16px 34px rgba(2,6,23,0.18); }
  50% { box-shadow: 0 20px 42px rgba(212,175,55,0.28); }
}
@keyframes aboutOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes aboutHighlightSweep {
  0%, 22% { left: -55%; }
  60%, 100% { left: 130%; }
}

@media (max-width: 1024px) {
  #about .about-grid { grid-template-columns: 1fr; gap: 24px; }
  #about .about-visual-shell { min-height: 420px; }
  #about .about-photo-primary { height: 280px; object-position: 64% 20%; }
  #about .about-photo-accent { width: 180px; height: 132px; right: 22px; bottom: 20px; }
  #about .about-orbit { width: 112px; height: 112px; right: 12px; top: 10px; }
  #about .about-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  #about { padding: 44px 0; }
  #about .about-visual-shell { min-height: 330px; border-radius: 22px; }
  #about .about-photo-primary { left: 14px; top: 14px; width: calc(100% - 28px); height: 215px; object-position: 60% 22%; border-radius: 14px; }
  #about .about-photo-accent { right: 12px; bottom: 14px; width: 124px; height: 88px; border-radius: 10px; }
  #about .about-orbit { width: 82px; height: 82px; right: 8px; top: 8px; }
  #about .about-visual-note { left: 14px; bottom: 12px; padding: 8px 10px; }
  #about .about-visual-note strong { font-size: 0.95rem; }
  #about .about-visual-note span { font-size: 0.75rem; }
  #about .about-sub { font-size: 1.28rem; }
  #about .about-highlights { grid-template-columns: 1fr; }
  #about .about-cta { flex-direction: column; }
  #about .about-cta .btn, #about .about-cta .btn-ghost { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  #about .about-photo-primary,
  #about .about-photo-accent,
  #about .about-shine,
  #about .about-visual-note,
  #about .about-orbit,
  #about .about-highlight::before {
    animation: none !important;
  }
}
/* â”€â”€â”€ Why Choose Us section â”€â”€â”€ */
#why-us { padding: 64px 0; }

.why-alt .why-alt-grid { display: grid; grid-template-columns: 320px 1fr 420px; gap: 28px; align-items: start; }
.why-alt .why-left .meta-eyebrow { color: var(--brand); font-weight:700; font-size:0.85rem; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:8px; }
/* New split checklist Why section */
.why-new { padding: 72px 0; }
.why-new-grid { display: grid; grid-template-columns: 1fr 560px; gap: 42px; align-items: start; }
.why-intro h2 { margin: 0 0 8px 0; font-weight:800; }
.why-intro p { margin: 0 0 20px 0; color:var(--muted); }
.why-checklist { list-style:none; margin:0; padding:0; display:grid; gap:14px; }
.why-checklist li { display:flex; gap:12px; align-items:flex-start; }
.why-checklist .num { width:44px; height:44px; display:grid; place-items:center; border-radius:999px; background: linear-gradient(180deg, rgba(14,165,233,0.06), rgba(14,165,233,0.02)); color:var(--brand-dark); font-weight:700; border: 1px solid rgba(226,232,240,0.9); }
.why-checklist strong { display:block; margin-bottom:4px; font-size:1rem; }
.why-checklist p { margin:0; color:var(--muted); font-size:0.95rem; }

.why-image-wrap { position: relative; border-radius:16px; overflow:hidden; box-shadow: 0 30px 70px rgba(2,6,23,0.06); border:1px solid rgba(226,232,240,0.9); }
.why-image-wrap img { width:100%; height:100%; max-height:560px; object-fit:cover; display:block; }
.overlay-card { position:absolute; right:20px; background: #fff; padding:12px 14px; border-radius:12px; box-shadow: 0 18px 40px rgba(2,6,23,0.08); border:1px solid rgba(226,232,240,0.92); }
.overlay-trust { bottom: 22px; width: 180px; text-align:center; }
.overlay-trust strong { display:block; font-size:1.15rem; color:var(--brand-dark); }
.overlay-trust span { color:var(--muted); font-size:0.92rem; }
.overlay-cta { top: 22px; right: 22px; display:flex; flex-direction:column; gap:10px; align-items:flex-end; }
.overlay-cta h4 { margin:0; font-size:1rem; }

@media (max-width: 1024px) {
  .why-new-grid { grid-template-columns: 1fr; }
  .overlay-cta { position: static; margin: 12px; box-shadow:none; }
  .overlay-trust { position: static; margin: 12px; box-shadow:none; }
  .why-image-wrap img { max-height:420px; }
}

@media (max-width: 680px) {
  .why-new { padding: 42px 0; }
  .why-image-wrap img { height: 220px; }
}

/* Styles for new 3-part Why section */
.why-three { padding: 72px 0; }
.why-three-top { display: grid; grid-template-columns: 1fr 520px; gap: 32px; align-items: center; margin-bottom: 24px; }
.why-three-text .section-title { font-weight:800; margin-bottom:10px; }
.why-three-text p { color: var(--muted); margin-bottom: 12px; }
.why-three-collage { min-width: 0; }
.why-three-collage .collage { position: relative; width: 100%; height: 360px; display: block; overflow: visible; }
.collage-large { position: absolute; left: 0; top: 12px; width: 68%; height: calc(100% - 24px); object-fit: cover; border-radius: 16px; box-shadow: 0 24px 60px rgba(2,6,23,0.06); border:1px solid rgba(226,232,240,0.9); }
.collage-small { position: absolute; right: 0; top: 0; width: 44%; height: 44%; object-fit: cover; border-radius: 12px; box-shadow: 0 14px 36px rgba(2,6,23,0.06); border:1px solid rgba(226,232,240,0.9); transform: translate(8%, -8%); }

.why-three-middle { margin: 18px 0 28px; }
.pill-features { display:flex; gap:12px; flex-wrap:wrap; }
.pill { background:#fff; border:1px solid rgba(226,232,240,0.9); padding:12px 16px; border-radius:999px; box-shadow:0 10px 30px rgba(2,6,23,0.04); font-weight:700; color:var(--ink); }

.why-three-bottom { margin-top: 8px; }
.why-three .services-slider { padding: 10px 0 30px; }
.why-three .services-slider,
.why-three .services-slider .products-grid,
.why-three .services-slider .slider-nav { background: transparent !important; }
.why-three .product-card { background:#fff !important; border-radius:14px; overflow:hidden; box-shadow: var(--shadow) !important; }
.why-three .product-card .card-img { height:200px; }
.why-three .product-card .card-content { padding:16px; }
.why-three .product-card .card-content h3 {
  margin: 0 0 6px;
  line-height: 1.2;
  min-height: calc(1.2em * 2);
  max-height: calc(1.2em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.why-three .product-card .card-content p {
  margin: 0;
  line-height: 1.55;
  min-height: calc(1.55em * 4);
  max-height: calc(1.55em * 4);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media (max-width: 1024px) {
  .why-three-top { grid-template-columns: 1fr; }
  .why-three-collage .collage { height: auto; display: grid; gap: 14px; }
  .collage-large, .collage-small { position: relative; width: 100%; height: 220px; transform:none; top: auto; left: auto; right: auto; }
}

@media (max-width: 680px) {
  .why-three { padding: 42px 0; }
  .why-three-top { gap: 18px; }
  .collage-large { height: 180px; }
  .collage-small { height: 140px; }
  .why-three .services-slider .products-grid { padding-inline: 8px; }
}

.why-alt .why-center .feature-cards { display:flex; flex-direction:column; gap:12px; }
.icon-card { display:flex; gap:12px; align-items:flex-start; background:#fff; border:1px solid rgba(226,232,240,0.9); padding:14px; border-radius:12px; box-shadow: 0 12px 30px rgba(2,6,23,0.04); }
.icon-card .icon { width:58px; height:58px; border-radius:12px; display:grid; place-items:center; background: linear-gradient(180deg, rgba(8,145,178,0.06), rgba(8,145,178,0.02)); font-size:22px; }
.icon-card h3 { margin:0 0 6px 0; font-size:1.02rem; }
.icon-card p { margin:0; color:var(--muted); font-size:0.95rem; }

.why-alt .why-right .why-image-panel { position: relative; border-radius:16px; overflow:hidden; }
.why-alt .why-right img { width:100%; height:520px; object-fit:cover; display:block; }
.why-alt .stat-badges { position: absolute; left: 18px; bottom: 18px; display:flex; gap:12px; }
.why-alt .stat { background: rgba(255,255,255,0.96); padding:10px 12px; border-radius:12px; box-shadow: 0 10px 28px rgba(2,6,23,0.06); border:1px solid rgba(226,232,240,0.9); text-align:center; }
.why-alt .stat strong { display:block; font-size:1.05rem; color:var(--brand-dark); }
.why-alt .stat span { font-size:0.86rem; color:var(--muted); }

@media (max-width: 1100px) {
  .why-alt .why-alt-grid { grid-template-columns: 1fr; }
  .why-alt .why-right img { height: 320px; }
  .why-alt .why-center .feature-cards { flex-direction:row; gap:10px; }
  .icon-card { flex:1 1 0; }
}



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

  .stat strong {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 6px;
    color: var(--brand-dark);
  }
}

/* â”€â”€â”€ #services product card styling â”€â”€â”€ */
#services .product-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#services .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(8, 145, 178, 0.12);
}
#services .product-card .card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
#services .product-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
#services .product-card:hover .card-img img {
  transform: scale(1.07);
}
#services .product-card .card-content {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#services .product-card span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  align-self: flex-start;
}
#services .product-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--ink);
}
#services .product-card p {
  font-size: 0.94rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* â”€â”€â”€ Services Slider wrapper â€” refined visuals â”€â”€â”€ */
.services-slider {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  position: relative;
  padding: 6px 0 18px; /* space for nav below */
}
/* Ensure no background/overlay sits behind the scroll track */
.services-slider { background: transparent; }

/* Prev / Next arrow buttons */
.slider-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  color: var(--brand-dark);
  box-shadow: 0 10px 30px rgba(2,6,23,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  user-select: none;
}
.slider-btn:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(2,6,23,0.12); }
.slider-btn:disabled { opacity: 0.38; cursor: default; box-shadow: none; }

/* The scrollable card row â€” this is the scroll container */
.services-slider .products-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  flex: 1;
  padding: 8px 16px; /* comfortable inner padding */
}
.services-slider .products-grid::-webkit-scrollbar { display: none; }
/* Remove any darker backdrop from the track */
.services-slider .products-grid { background: transparent; box-shadow: none; }

/* Card width: show ~3 on desktop, adjust via responsive rules */
.services-slider .product-card {
  flex: 0 0 calc(33.333% - 18px);
  scroll-snap-align: center;
  min-width: 240px;
  max-width: 360px;
}

/* Make service cards fully opaque to avoid showing darker background behind the track */
.services-slider .product-card {
  background: #fff; /* solid white */
  border: 1px solid rgba(226,232,240,0.92);
  box-shadow: 0 10px 30px rgba(2,6,23,0.05);
}


/* Ensure no container or backdrop remains behind the slider (keep cards opaque) */
.services-slider,
.services-slider .products-grid,
.services-slider .slider-nav {
  background: transparent !important;
  box-shadow: none !important;
}

/* Keep individual product cards visible with a white surface and subtle shadow */
.services-slider .product-card {
  background: #fff !important;
  box-shadow: 0 10px 30px rgba(2,6,23,0.05) !important;
  border: 1px solid rgba(226,232,240,0.9);
}

/* Dots (full-width row under slider) */
.slider-dots {
  order: 2;
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
  width: 100%;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(15,23,42,0.14);
  cursor: pointer;
  transition: background 0.18s, width 0.18s;
}
.slider-dots button.active { background: var(--brand); width: 26px; border-radius: 999px; box-shadow: 0 8px 28px rgba(212,175,55,0.08); }

@media (max-width: 1100px) {
  .services-slider .product-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 680px) {
  .services-slider .product-card { flex: 0 0 84%; }
  .slider-btn { width: 40px; height: 40px; font-size: 18px; }
}

/* Slider nav row: line + buttons */
.services-slider .slider-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.services-slider .slider-nav .slider-dots { width: 100%; }
.services-slider .slider-nav .slider-btns { display: flex; gap: 10px; justify-content: center; }
.services-slider .slider-nav .slider-btns .slider-btn { width: 44px; height: 44px; }



#why-us {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;

    .feature strong {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--brand-dark);
      font-size: 0.92rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--surface-alt);
      padding: 6px 12px;
      border-radius: 6px;
    }
  }
}

/* Testimonial strip gallery */
#testimonials {
  padding: 72px 0;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 30%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf9 100%);
}

#testimonials .section-head {
  justify-content: center;
  text-align: center;
}

#testimonials .section-head > div {
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-strip-grid {
  display: flex;
  gap: 18px;
  align-items: stretch;
  justify-content: center;
  min-height: 500px;
  padding-inline: 28px;
  overflow: visible;
}

.testimonial-strip {
  position: relative;
  width: 150px;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  flex: 0 0 150px;
  cursor: pointer;
  transition: width 0.45s ease, flex-basis 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.testimonial-strip:hover,
.testimonial-strip:focus-within,
.testimonial-strip:focus {
  width: 500px;
  flex-basis: 500px;
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.2);
  outline: none;
}

.strip-gold {
  background: linear-gradient(180deg, #f6c453 0%, #c88d1d 100%);
}

.strip-coral {
  background: linear-gradient(180deg, #ff9a6b 0%, #d6544c 100%);
}

.strip-teal {
  background: linear-gradient(180deg, #49c3c7 0%, #1d6f78 100%);
}

.strip-navy {
  background: linear-gradient(180deg, #5e7ce2 0%, #203a84 100%);
}

.strip-rose {
  background: linear-gradient(180deg, #ff9eb5 0%, #d34f77 100%);
}

.strip-label {
  position: absolute;
  inset: 82px auto 18px 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.strip-icon {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  animation: stripFloat 2.8s ease-in-out infinite;
}

.strip-icon svg {
  width: 24px;
  height: 24px;
}

.testimonial-strip:hover .strip-label,
.testimonial-strip:focus-within .strip-label,
.testimonial-strip:focus .strip-label {
  opacity: 0;
  transform: translateX(-40%);
}

.testimonial-strip:hover .strip-icon,
.testimonial-strip:focus-within .strip-icon,
.testimonial-strip:focus .strip-icon {
  opacity: 0;
  transform: translateX(-50%) translateY(-12px) scale(0.92);
}

.strip-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-strip:hover .strip-panel,
.testimonial-strip:focus-within .strip-panel,
.testimonial-strip:focus .strip-panel {
  opacity: 1;
  transform: translateX(0);
}

.strip-image {
  height: 280px;
  overflow: hidden;
}

.strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strip-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 20px;
  height: 220px;
  text-align: center;
}

.patient-chip {
  display: inline-flex;
  align-items: center;
  align-self: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.strip-body h3 {
  font-size: 1.35rem;
  margin: 0;
}

.strip-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.strip-body strong {
  margin-top: auto;
  font-size: 1rem;
  color: var(--ink);
  text-align: center;
}

@media (max-width: 1200px) {
  .testimonial-strip:hover,
  .testimonial-strip:focus-within,
  .testimonial-strip:focus {
    width: 420px;
    flex-basis: 420px;
  }
}

@media (max-width: 920px) {
  .testimonial-strip-grid {
    flex-direction: column;
    min-height: auto;
  }

  .testimonial-strip,
  .testimonial-strip:hover,
  .testimonial-strip:focus-within,
  .testimonial-strip:focus {
    width: 100%;
    height: auto;
    min-height: 500px;
    flex-basis: auto;
    transform: none;
  }

  .strip-label {
    writing-mode: initial;
    text-orientation: initial;
    inset: 92px auto auto 18px;
    transform: none;
    letter-spacing: 0.08em;
  }

  .strip-icon {
    left: 18px;
    transform: none;
  }

  .strip-panel {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  #testimonials {
    padding: 42px 0;
  }

  .testimonial-strip,
  .testimonial-strip:hover,
  .testimonial-strip:focus-within,
  .testimonial-strip:focus {
    min-height: auto;
  }

  .strip-image {
    height: 220px;
  }

  .strip-body {
    height: auto;
    padding: 16px;
  }
}

@keyframes stripFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Services strip gallery override */
#services {
  padding: 72px 0;
  background:
    radial-gradient(circle at right top, rgba(212, 175, 55, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
}

#services .section-head {
  justify-content: center;
  text-align: center;
}

#services .section-head > div {
  max-width: 760px;
  margin: 0 auto;
}

.service-strip-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  min-height: 400px;
  padding-inline: 28px;
  overflow: visible;
}

.service-strip {
  position: relative;
  width: 128px;
  height: 400px;
  flex: 0 0 128px;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.12);
  transition: width 0.4s ease, flex-basis 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.service-strip:hover,
.service-strip:focus,
.service-strip:focus-within {
  width: 420px;
  flex-basis: 420px;
  transform: translateY(-4px);
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.18);
  outline: none;
}

.service-strip-amber { background: linear-gradient(180deg, #efc15c 0%, #b98422 100%); }
.service-strip-blush { background: linear-gradient(180deg, #f1a8a2 0%, #ca6571 100%); }
.service-strip-sand { background: linear-gradient(180deg, #e6c79f 0%, #b98659 100%); }
.service-strip-coral { background: linear-gradient(180deg, #ff9c74 0%, #d15d4d 100%); }
.service-strip-sky { background: linear-gradient(180deg, #84c4f4 0%, #3e74b6 100%); }
.service-strip-navy { background: linear-gradient(180deg, #607ee2 0%, #243f8a 100%); }
.service-strip-forest { background: linear-gradient(180deg, #78c2a2 0%, #2f7a65 100%); }
.service-strip-mint { background: linear-gradient(180deg, #8bd8cf 0%, #3a9689 100%); }

.service-strip-icon {
  position: absolute;
  top: 86px;
  left: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
  color: rgba(255, 255, 255, 0.98);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-strip-label {
  text-align: center;
  position: absolute;
  inset: 90px auto 18px 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.service-strip:hover .service-strip-label,
.service-strip:focus .service-strip-label,
.service-strip:focus-within .service-strip-label,
.service-strip:hover .service-strip-icon,
.service-strip:focus .service-strip-icon,
.service-strip:focus-within .service-strip-icon {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
}

.service-strip-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.service-strip:hover .service-strip-panel,
.service-strip:focus .service-strip-panel,
.service-strip:focus-within .service-strip-panel {
  opacity: 1;
  transform: translateX(0);
}

.service-strip-image {
  height: 210px;
  overflow: hidden;
}

.service-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-strip-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 18px 20px;
  text-align: center;
  height: 190px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-strip-body h3 {
  margin: 0;
  font-size: 1.22rem;
  color: var(--ink);
}

.service-strip-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

.home-doctor {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at left top, rgba(8,145,178,0.10), transparent 36%),
    radial-gradient(circle at right bottom, rgba(212,175,55,0.10), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.home-doctor::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.35), rgba(212,175,55,0.0) 62%);
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
}

.home-doctor-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 48px;
  align-items: center;
}

.home-doctor-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 28px 74px rgba(2,6,23,0.10);
}

.home-doctor-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.home-doctor-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(2,6,23,0.10);
  border: 1px solid rgba(226,232,240,0.92);
}

.home-doctor-badge span {
  font-weight: 800;
  color: var(--brand-dark);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.home-doctor-degree {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(212,175,55,0.12);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin: 6px 0 14px;
}

.home-doctor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.home-doctor-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2,6,23,0.03);
  border: 1px solid rgba(226,232,240,0.95);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
}

.home-doctor-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

@media (max-width: 1024px) {
  .home-doctor { padding: 64px 0; }
  .home-doctor-grid { grid-template-columns: 1fr; gap: 26px; }
  .home-doctor-photo { height: 440px; }
}

@media (max-width: 680px) {
  .home-doctor { padding: 52px 0; }
  .home-doctor-photo { height: 340px; }
  .home-doctor-actions .btn,
  .home-doctor-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .service-strip:hover,
  .service-strip:focus,
  .service-strip:focus-within {
    width: 420px;
    flex-basis: 420px;
  }
}

/* Services: tablet layout (1024px down to 769px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .service-strip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-inline: 0;
    min-height: auto;
    justify-content: center;
    align-items: stretch;
    max-width: 542px;
    margin-inline: auto;
  }

  .service-strip,
  .service-strip:focus,
  .service-strip:focus-within {
    width: 128px;
    height: 400px;
    min-height: 400px;
    flex: 0 0 128px;
  }

  .service-strip:hover,
  .service-strip:focus,
  .service-strip:focus-within {
    width: 360px;
    flex-basis: 360px;
  }

  /* Keep rows independent: only shrink strips in the active row */
  .service-strip-grid:has(.service-strip:nth-child(-n+4):hover) .service-strip:nth-child(-n+4):not(:hover),
  .service-strip-grid:has(.service-strip:nth-child(-n+4):focus) .service-strip:nth-child(-n+4):not(:focus),
  .service-strip-grid:has(.service-strip:nth-child(-n+4):focus-within) .service-strip:nth-child(-n+4):not(:focus-within),
  .service-strip-grid:has(.service-strip:nth-child(n+5):hover) .service-strip:nth-child(n+5):not(:hover),
  .service-strip-grid:has(.service-strip:nth-child(n+5):focus) .service-strip:nth-child(n+5):not(:focus),
  .service-strip-grid:has(.service-strip:nth-child(n+5):focus-within) .service-strip:nth-child(n+5):not(:focus-within) {
    width: 50px;
    flex-basis: 50px;
  }
}

@media (max-width: 768px) {
  .service-strip-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    min-height: auto;
    padding-inline: 0;
    overflow-x: auto;
    justify-content: flex-start;
    align-items: stretch;
  }

  .service-strip,
  .service-strip:focus,
  .service-strip:focus-within {
    width: 116px;
    height: 360px;
    min-height: 360px;
    flex: 0 0 116px;
  }

  .service-strip:hover,
  .service-strip:focus,
  .service-strip:focus-within {
    width: 300px;
    flex-basis: 300px;
  }
}

@media (max-width: 640px) {
  #services {
    padding: 42px 0;
  }

  .service-strip,
  .service-strip:hover,
  .service-strip:focus,
  .service-strip:focus-within {
    min-height: auto;
  }

  .service-strip-image {
    height: 200px;
  }

  .service-strip-body {
    height: auto;
    padding: 16px;
  }
}

/* Testimonial editorial layout override */
#testimonials {
  padding: 76px 0;
  background:
    radial-gradient(circle at left top, rgba(212, 175, 55, 0.14), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf8 100%);
}

#testimonials .section-head {
  justify-content: center;
  text-align: center;
}

#testimonials .section-head > div {
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 26px;
  align-items: stretch;
}

.testimonial-feature-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 520px;
  overflow: hidden;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.1);
}

.testimonial-feature-media {
  position: relative;
  min-height: 100%;
}

.testimonial-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 38px 42px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff9f0 100%);
}

.testimonial-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.testimonial-quote {
  margin: 0 0 24px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  color: var(--ink);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-meta strong {
  font-size: 1rem;
  color: var(--ink);
}

.testimonial-meta span {
  font-size: 0.95rem;
  color: var(--muted);
}

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

.testimonial-note {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px 22px 22px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-note:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.note-sand {
  background: linear-gradient(180deg, #fff2d9 0%, #ffe5bc 100%);
}

.note-sky {
  background: linear-gradient(180deg, #e7f6ff 0%, #ccecff 100%);
}

.note-blush {
  background: linear-gradient(180deg, #ffe6ec 0%, #ffd2dd 100%);
}

.note-ink {
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  color: #f8fafc;
}

.note-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.note-ink .note-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
}

.testimonial-note p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  line-height: 1.55;
}

.testimonial-note strong {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.98rem;
}

@media (max-width: 1100px) {
  .testimonial-editorial {
    grid-template-columns: 1fr;
  }

  .testimonial-feature-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .testimonial-feature-card {
    grid-template-columns: 1fr;
  }

  .testimonial-feature-media {
    min-height: 260px;
  }

  .testimonial-note-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #testimonials {
    padding: 42px 0;
  }

  .testimonial-feature-copy {
    padding: 24px 20px 26px;
  }

  .testimonial-note {
    min-height: 0;
    padding: 20px 18px 18px;
  }

  .testimonial-note p {
    font-size: 1rem;
  }
}


/* Call to Action */
.cta {
  position: relative;
  padding: 96px 0;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
}

.cta .cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 14, 28, 0.68), rgba(18, 41, 76, 0.5)),
    url('assets/img/hero-img.png') center center / cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
  z-index: -2;
}

.cta .cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(7, 12, 24, 0.1), rgba(7, 12, 24, 0.4));
  pointer-events: none;
}

.cta .cta-content {
  position: relative;
  z-index: 1;
}

.cta .cta-panel {
  background: rgba(8, 15, 32, 0.58);
  color: #f8fafc;
  border-radius: 32px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta .cta-panel p {
  color: #d7deea;
  margin-bottom: 0;
  font-size: 1.1rem;
  margin-top: 10px;
}

.cta .cta-panel .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cta .cta-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.cta .cta-panel .btn-secondary:hover,
.cta .cta-panel .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .cta {
    padding: 56px 0;
  }

  .cta .cta-bg {
    transform: none;
  }

  .cta .cta-content {
    display: block;
  }

  .cta .cta-panel {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .cta .cta-panel .cta-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .cta .cta-bg {
    background-attachment: fixed;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta .cta-bg {
    transform: none !important;
    background-attachment: scroll !important;
  }
}

/* Contact */
#contact {
  .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), rgba(8, 145, 178, 0.15));
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: start;

    .contact-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;

      .contact-row {
        padding: 18px 20px;
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        background: var(--surface-alt);
        transition: background 0.3s ease;
        
        &:hover {
           background: #fff;
        }

        strong {
          display: block;
          margin-bottom: 4px;
        }
      }
    }

    .contact-media {
      margin-top: 18px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
      flex: 1 1 0;
      min-height: 0;
    }

    .contact-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .contact-form {
      display: grid;
      gap: 14px;

      input,
      textarea,
      select {
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 16px;
        font: inherit;
        color: var(--ink);
        background: #fff;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        outline: none;
        
        &:focus {
           border-color: var(--brand);
           box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
        }
      }

      textarea {
        min-height: 130px;
        resize: vertical;
      }
      
      button {
         margin-top: 10px;
         width: 100%;
         padding: 16px;
      }
    }
  }
}

/* Footer */
footer {
  padding: 48px 0 44px;
  margin-top: 22px;
  border-top: 1px solid var(--line);

  .footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.75fr 1.15fr;
    gap: 40px;
    align-items: start;

    p,
    a {
      color: var(--muted);
    }
    
    .brand {
       display: flex;
       align-items: center;
       gap: 12px;
       margin-bottom: 16px;
       
       .brand-logo {
         width: auto;
         height: auto;
         padding: 6px 8px;
          background: var(--brand);
          color: #fff;
          display: grid;
          place-items: center;
          border-radius: 12px;
          font-weight: bold;
       }
       .brand-copy strong {
           display: block;
           color: var(--ink);
       }
       .brand-copy span {
           font-size: 0.85rem;
       }
    }

  .footer-links {
      display: grid;
      gap: 10px;
      
      strong {
         margin-bottom: 10px;
      }
      
      a:hover {
         color: var(--brand-dark);
      }
    }
  }

  .footer-grid > :last-child {
    max-width: 430px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .footer-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.1);
  }

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .footer-note .footer-credit {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.86rem;
    opacity: 0.9;
  }

  .footer-note .footer-credit .tm-logo {
    flex: 0 0 auto;
  }

  .footer-note .footer-credit .tm-text {
    line-height: 1.25;
  }

/* Global footer column balance override */
footer .footer-grid {
  grid-template-columns: minmax(260px, 1.05fr) minmax(180px, 0.75fr) minmax(380px, 1.2fr);
  align-items: start;
}

footer .footer-grid > :last-child {
  max-width: none;
}

  .floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 60;
  }

  .floating-action {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 32px rgba(2, 6, 23, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.85);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
  }

  .floating-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(2, 6, 23, 0.22);
  }

  .floating-action.call {
    background: linear-gradient(135deg, #0f172a, #334155);
    color: #fff;
  }

  .floating-action.call svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  .floating-action.whatsapp {
    background: #25d366;
  }

  .floating-action.whatsapp img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .footer-note {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
  }
}

/* Media Queries */
@media (max-width: 1024px) {
  .container {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .hero .hero-grid,
  #about .about-grid,
  .cta .cta-panel,
  #contact .contact-grid,
  footer .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  #why-us .features-grid,
  #about .mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta .cta-panel .cta-actions {
    justify-content: flex-start;
  }

  /* Make hero stack on narrower screens */
  .hero {
    padding: 48px 0 36px;
    min-height: 50vh;
  }

  .hero .container {
    display: block;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  header .nav,
  header .nav-links,
  .hero .hero-actions,
  .topbar .topbar-wrap,
  .topbar .topbar-meta,
  .hero .hero-points {
    flex-direction: column;
    align-items: flex-start;
  }
  
  header {
     .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 28px;
     }
     
     .nav-links {
        display: none;
        width: 100%;
        padding-top: 20px;
        gap: 16px;
        
        a {
           padding: 10px 0;
           width: 100%;
           border-bottom: 1px solid var(--line);
        }
        
        .btn {
           margin-top: 10px;
        }
     }
  }

  .hero .hero-points,
  .stats-grid,
  #services .products-grid,
  #why-us .features-grid,
  #about .mission-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero .hero-visual {
    min-height: 420px;
  }

  .cta .cta-panel,
  .about-panel,
  .card,
  .feature,
  .product-card,
  .contact-card,
  .stat {
    padding: 22px;
  }

  /* Reduce logo size on small screens */
  .site-logo { height: 48px; }
  header .brand .brand-logo, footer .brand .brand-logo { width: 48px; height: 48px; }
}

/* New Why-modern card row style (appended) */
.why-modern { padding: 64px 0; background: linear-gradient(180deg, rgba(250,251,252,1), #ffffff); }
.why-modern-head { text-align: center; max-width: 900px; margin: 0 auto 28px; }
.why-modern-head .muted { color: var(--muted); margin-top: 8px; }
.why-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.why-card { background: #fff; border-radius: 16px; padding: 28px 18px 20px; text-align: center; border: 1px solid rgba(226,232,240,0.9); box-shadow: 0 12px 36px rgba(2,6,23,0.05); transition: transform 0.28s ease, box-shadow 0.28s ease; }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 28px 80px rgba(2,6,23,0.08); }
.why-media { width: 96px; height: 96px; margin: -58px auto 12px; border-radius: 999px; overflow: hidden; border: 6px solid #fff; box-shadow: 0 12px 34px rgba(2,6,23,0.06); }
.why-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-card h3 { margin: 6px 0 8px; font-size: 1.05rem; color: var(--ink); }
.why-card p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.5; }

@media (max-width: 1024px) {
  .why-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .why-cards { grid-template-columns: 1fr; }
  .why-media { margin-top: 0; margin-bottom: 12px; }
  .why-card { padding: 18px; }
}

/* Premium Why Choose Us section */
.why-premium { padding: 72px 0; }
.why-premium-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.why-image-panel { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 70px rgba(2,6,23,0.06); border: 1px solid rgba(226,232,240,0.9); }
.why-image-panel img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; display: block; }

.trust-badge { position: absolute; right: 20px; bottom: 20px; background: #ffffff; color: var(--ink); padding: 14px 16px; border-radius: 12px; box-shadow: 0 20px 48px rgba(2,6,23,0.08); border: 1px solid rgba(226,232,240,0.9); width: 220px; }
.trust-badge strong { display: block; font-size: 1.2rem; color: var(--brand-dark); }
.trust-badge span { display: block; font-size: 0.92rem; color: var(--muted); margin-bottom: 8px; }
.trust-badge ul { margin:0; padding:0; list-style:none; display:flex; gap:8px; flex-direction:column; }
.trust-badge li { font-size: 0.9rem; color:var(--muted); }

.why-right .why-head .section-title { font-weight:800; font-size: clamp(1.5rem, 2.8vw, 2.4rem); margin-bottom:8px; }
.why-right .subhead { margin-bottom: 18px; color:var(--muted); }

.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.reason { display:flex; gap:12px; align-items:flex-start; background:#fff; border-radius:12px; padding:12px 14px; border:1px solid rgba(226,232,240,0.9); box-shadow: 0 12px 36px rgba(2,6,23,0.04); }
.reason-icon { width:44px; height:44px; border-radius:10px; display:grid; place-items:center; background: linear-gradient(180deg, rgba(14,165,233,0.08), rgba(14,165,233,0.02)); color: var(--brand-dark); font-size:20px; flex-shrink:0; }
.reason h4 { margin:0 0 6px 0; font-size:1rem; }
.reason p { margin:0; color:var(--muted); font-size:0.94rem; }

@media (max-width: 1024px) {
  .why-premium-grid { grid-template-columns: 1fr; }
  .trust-badge { right: 16px; bottom: 16px; width: 200px; }
  .why-image-panel img { max-height: 420px; }
}

@media (max-width: 680px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .trust-badge { position: static; margin: 12px; box-shadow:none; border-radius:10px; }
  .why-image-panel img { height: 220px; object-position: center; }
}

/* Contact equal-height cards override */
#contact .contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

#contact .contact-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 1024px (Tablets / Small Laptops)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {

  /* Contact */
  #contact .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Only show the contact image when there's "extra" height to fill */
  #contact .contact-media {
    display: none;
  }

  /* Hero: stack two columns */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-right {
    justify-content: center;
  }
  .hero-panel {
    max-width: 100%;
  }

  /* About: stack collage + content */
  #about .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-collage .collage {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .collage-img.main {
    position: relative;
    width: 100%;
    height: 280px;
    transform: none;
    top: auto; left: auto;
  }
  .collage-img.top-right,
  .collage-img.bottom-left {
    position: relative;
    width: calc(50% - 6px);
    height: 140px;
    transform: none;
    top: auto; left: auto; right: auto; bottom: auto;
  }

  /* Why-Us: stack top row */
  .why-three-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-three-collage .collage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .collage-large,
  .collage-small {
    position: relative;
    width: 100%;
    height: 200px;
    transform: none;
    top: auto; left: auto; right: auto;
    border-radius: 14px;
  }

  /* Slider cards: 2 visible */
  .services-slider .product-card {
    flex: 0 0 calc(50% - 12px);
  }

  /* Testimonials: stack editorial grid */
  .testimonial-editorial {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .testimonial-feature-card {
    min-height: 0;
  }

  /* CTA panel: stack */
  .cta .cta-panel {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .cta .cta-panel .cta-actions {
    justify-content: flex-start;
  }

  /* Footer: 2-column */
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* Section padding */
  section { padding: 52px 0; }
  .why-three { padding: 52px 0; }
  #testimonials { padding: 52px 0; }
  #services { padding: 52px 0; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 768px (Tablets portrait / phablets)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* Tablet structure cleanup: keep 1024 layout consistent across sections */
@media (max-width: 1024px) and (min-width: 769px) {
  .container {
    width: min(calc(100% - 40px), var(--max-width));
  }

  section,
  .why-three,
  #testimonials,
  #services {
    padding: 52px 0;
  }

  header .nav {
    padding: 10px 0;
  }

  header .nav-links {
    gap: 10px;
  }

  .site-logo {
    width: 155px;
    max-height: 80px;
  }

  .hero {
    min-height: auto;
    padding: 88px 0 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero-panel {
    max-width: 100%;
  }

  #about .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-collage .collage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .collage-img.main {
    position: relative;
    grid-column: 1 / -1;
    width: 100%;
    height: 300px;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }

  .collage-img.top-right,
  .collage-img.bottom-left {
    position: relative;
    width: 100%;
    height: 150px;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0;
    transform: none;
  }

  .why-three-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-three-collage .collage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .collage-large,
  .collage-small {
    position: relative;
    width: 100%;
    height: 210px;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    border-radius: 14px;
  }

  .testimonial-editorial {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .testimonial-note-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta .cta-panel {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  #contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  /* Topbar: hide note, stack meta */
  .topbar .topbar-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0;
  }
  .topbar .topbar-meta {
    flex-direction: column;
    gap: 2px;
  }
  .topbar .topbar-note {
    display: none;
  }

  /* Header: show hamburger, hide nav links */
  header {
    position: sticky;
    top: 0;
  }
  .mobile-menu-btn {
    display: block !important;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 18px;
    flex-direction: column !important;
    gap: 4px !important;
    box-shadow: 0 14px 36px rgba(2,6,23,0.08);
    z-index: 25;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-links a {
    padding: 12px 8px !important;
    width: 100%;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav-dropdown {
    width: 100%;
    display: block;
  }
  .nav-dropdown-toggle {
    justify-content: space-between;
  }
  .nav-dropdown-toggle::after {
    margin-left: auto;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    border-left: 2px solid rgba(212, 175, 55, 0.38);
    border-radius: 0;
    padding: 6px 0 0 10px;
    margin: 0 0 8px 0;
    background: transparent;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }
  .nav-dropdown.open .nav-dropdown-toggle::after {
    transform: rotate(-135deg) translate(-2px, -1px);
  }
  .nav-dropdown-menu a {
    font-size: 0.92rem;
    border-bottom: 0;
    padding: 10px 8px;
  }
  .nav-links .btn {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }
  header .nav {
    padding: 10px 0;
    position: relative;
  }
  .site-logo {
    width: 140px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 80px 0 48px;
  }
  .hero-left h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-stat-divider {
    display: none;
  }
  .hero-stat {
    flex: 0 0 auto;
    padding: 0;
  }
  .hero-panel {
    padding: 18px;
  }

  /* About */
  #about { padding: 44px 0; }
  .collage-img.main { height: 240px; }
  .collage-img.top-right,
  .collage-img.bottom-left {
    width: calc(50% - 6px);
    height: 120px;
  }
  #about .about-sub { font-size: 1.3rem; }
  #about .about-cta {
    flex-direction: column;
    gap: 10px;
  }
  #about .about-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Services */
  #services { padding: 44px 0; }
  #services .container {
    position: relative;
  }
  #services .container::after {
    display: none;
  }
  .service-strip-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    padding-inline: 0;
    padding-bottom: 8px;
    min-height: auto;
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    align-items: stretch;
    scroll-padding-inline: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--brand) rgba(15, 23, 42, 0.12);
  }
  .service-strip-grid::before,
  .service-strip-grid::after {
    content: "";
    flex: 0 0 96px;
  }
  #services .service-strip-dots {
    margin-top: 14px;
  }
  .service-strip-grid::-webkit-scrollbar {
    height: 6px;
  }
  .service-strip-grid::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.12);
    border-radius: 999px;
  }
  .service-strip-grid::-webkit-scrollbar-thumb {
    background: var(--brand);
    border-radius: 999px;
  }
  .service-strip,
  .service-strip:focus,
  .service-strip:focus-within {
    width: 116px;
    height: 360px;
    min-height: 360px;
    flex: 0 0 116px;
    border-radius: 20px;
  }
  .service-strip:hover,
  .service-strip:focus,
  .service-strip:focus-within {
    width: 300px;
    flex-basis: 300px;
  }
  .service-strip-image { height: 190px; }
  .service-strip-body { height: auto; padding: 14px 16px 18px; }

  /* Why-Us cards: keep text clearly below image */
  #why-us .product-card {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
  }
  #why-us .product-card .card-img {
    flex-shrink: 0;
    margin: 0;
  }
  #why-us .product-card .card-content {
    position: relative;
    z-index: 1;
    background: #fff;
    margin-top: 0;
    padding: 14px 16px 18px;
  }

  /* Why-Us */
  .why-three { padding: 44px 0; }
  .pill-features { gap: 8px; }
  .pill { font-size: 0.9rem; padding: 10px 14px; }
  .why-three-collage .collage {
    grid-template-columns: 1fr;
  }
  .collage-large,
  .collage-small {
    height: 180px;
  }
  .services-slider .product-card {
    flex: 0 0 80%;
    min-width: 220px;
  }
  .slider-btn { width: 42px; height: 42px; font-size: 18px; }

  /* Testimonials */
  #testimonials { padding: 44px 0; }
  .testimonial-feature-card {
    grid-template-columns: 1fr;
  }
  .testimonial-feature-media {
    min-height: 240px;
  }
  .testimonial-feature-copy {
    padding: 26px 22px 28px;
  }
  .testimonial-quote {
    font-size: 1.3rem;
  }
  .testimonial-note-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .testimonial-note {
    min-height: 0;
    padding: 18px 16px 16px;
  }

  /* CTA */
  .cta { padding: 52px 0; }
  .cta .cta-panel {
    padding: 28px 20px;
    border-radius: 22px;
  }

  /* Contact */
  #contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-card { padding: 22px 18px; }

  /* Footer */
  footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  footer .footer-note {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 0.86rem;
  }

  /* Section titles */
  .section-title { font-size: clamp(1.6rem, 4.5vw, 2.2rem) !important; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 520px (Small phones)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 520px) {

  /* Topbar: minimal */
  .topbar { font-size: 0.8rem; }
  .topbar .topbar-meta span:not(:first-child) {
    display: none;
  }

  /* Header */
  .site-logo { width: 120px; }
  header .nav { padding: 10px 0; }

  /* Hero */
  .hero {
    padding: 72px 0 40px;
  }
  .hero-left h1 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    letter-spacing: -0.02em;
  }
  .eyebrow {
    font-size: 0.74rem;
    padding: 6px 14px;
  }
  .hero-sub { font-size: 0.95rem; }
  .hero-stat strong { font-size: 1.5rem; }
  .hero-stat span { font-size: 0.82rem; }
  .hero-panel { padding: 16px 14px; }
  .panel-title { font-size: 1.05rem; }
  .panel-item { padding: 10px 12px; }

  /* About */
  #about { padding: 36px 0; }
  .collage-img.main { height: 200px; }
  .collage-img.top-right,
  .collage-img.bottom-left {
    width: 100%;
    height: 120px;
  }
  #about .about-sub { font-size: 1.15rem; }
  #about p { font-size: 0.95rem; }

  /* Services */
  #services { padding: 36px 0; }
  .service-strip,
  .service-strip:hover,
  .service-strip:focus,
  .service-strip:focus-within {
    min-height: 300px;
    border-radius: 16px;
  }
  .service-strip-image { height: 160px; }
  .service-strip-body { padding: 12px 14px; }
  .service-strip-body h3 { font-size: 1.05rem; }
  .service-strip-body p { font-size: 0.88rem; }

  /* Why-Us */
  .why-three { padding: 36px 0; }
  .why-three-text .section-title { font-size: 1.6rem !important; }
  .collage-large { height: 160px; }
  .collage-small { display: none; }
  .pill { font-size: 0.82rem; padding: 8px 12px; }
  .pill-features { gap: 6px; }
  .services-slider .product-card {
    flex: 0 0 88%;
  }
  .why-three .product-card .card-img { height: 160px; }
  .why-three .product-card .card-content { padding: 14px 14px 16px; }
  .slider-btn { width: 38px; height: 38px; font-size: 16px; }
  .slider-dots button { width: 8px; height: 8px; }
  .slider-dots button.active { width: 20px; }

  /* Testimonials */
  #testimonials { padding: 36px 0; }
  .testimonial-feature-media { min-height: 200px; }
  .testimonial-feature-copy { padding: 20px 16px 22px; }
  .testimonial-quote { font-size: 1.1rem; }
  .testimonial-kicker { font-size: 0.72rem; }
  .testimonial-note-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .testimonial-note { padding: 16px 14px; }
  .testimonial-note p { font-size: 0.95rem; }

  /* CTA */
  .cta { padding: 40px 0; }
  .cta .cta-panel {
    padding: 22px 16px;
    border-radius: 18px;
    gap: 14px;
  }
  .cta .cta-panel .cta-actions {
    flex-direction: column;
    gap: 10px;
  }
  .cta .cta-panel .cta-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Contact */
  #contact { padding: 36px 0 48px; }
  .contact-card { padding: 18px 14px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 13px 14px;
    font-size: 0.95rem;
  }
  .contact-form button { padding: 14px; }
  .contact-list .contact-row { padding: 14px 16px; }

  /* Footer */
  footer { padding: 36px 0 28px; }
  .footer-grid { gap: 20px; }
  .site-logo { width: 110px; }
  .footer-links { gap: 6px; }
  .footer-note { margin-top: 24px; padding-top: 18px; font-size: 0.82rem; }
  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }
  .floating-action {
    width: 50px;
    height: 50px;
  }
  .floating-action.call {
    font-size: 0.78rem;
  }

  /* General */
  section { padding: 36px 0; }
  .section-title { font-size: clamp(1.45rem, 5vw, 1.9rem) !important; }
  .btn { padding: 12px 18px; font-size: 0.92rem; }
.btn-ghost { padding: 11px 18px; font-size: 0.92rem; }
}

/* Floating quick actions (global, outside footer scope) */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-action {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.22);
}

.floating-action.call {
  background: linear-gradient(135deg, #0f172a, #334155);
  color: #fff;
}

.floating-action.call svg {
  width: 22px;
  height: 22px;
  display: block;
}

.floating-action.whatsapp {
  background: #25d366;
}

.floating-action.whatsapp img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* Home page unique hover interactions */
@media (hover: hover) and (pointer: fine) {
  /* Hero */
  .hero .hero-panel {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }
  .hero .hero-panel::before {
    content: "";
    position: absolute;
    inset: -140% -20% auto -20%;
    height: 260%;
    background: linear-gradient(120deg, rgba(212,175,55,0), rgba(212,175,55,0.26), rgba(212,175,55,0));
    transform: translateX(-120%) rotate(14deg);
    pointer-events: none;
  }
  .hero .hero-panel:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(212,175,55,0.34);
    box-shadow: 0 30px 80px rgba(2,6,23,0.4);
  }
  .hero .hero-panel:hover::before {
    animation: heroPanelSweep 820ms cubic-bezier(0.22, 0.61, 0.36, 1) 1;
  }
  .hero .hero-stat {
    transition: transform 0.25s ease;
  }
  .hero .hero-stat:hover {
    transform: translateY(-4px);
  }

  /* About */
  #about .about-visual-shell {
    transition: transform 260ms ease, box-shadow 260ms ease;
  }
  #about .about-visual-shell:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 38px 90px rgba(2,6,23,0.28);
  }

  /* Services */
  #services .service-strip {
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center center;
  }
  #services .service-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }
  #services .service-strip:hover {
    transform: translateY(-6px) scale(1.01);
    filter: saturate(1.08);
  }
  #services .service-strip:hover::after {
    border-color: rgba(212,175,55,0.55);
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.35), 0 18px 42px rgba(2,6,23,0.18);
  }
  #services .service-strip .service-strip-label {
    transition: letter-spacing 0.28s ease, color 0.28s ease;
  }
  #services .service-strip:hover .service-strip-label {
    letter-spacing: 0.16em;
    color: #fff;
  }

  /* Why Us */
  #why-us .product-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #why-us .product-card::before {
    content: "";
    position: absolute;
    inset: auto -35% -55% -35%;
    height: 70%;
    background: radial-gradient(closest-side, rgba(212,175,55,0.22), rgba(212,175,55,0));
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }
  #why-us .product-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow: 0 26px 58px rgba(2,6,23,0.22);
  }
  #why-us .product-card:hover::before {
    opacity: 1;
    transform: translateY(0);
  }
  #why-us .product-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(0.5deg);
  }

  /* Testimonials */
  #testimonials .testimonial-feature-card,
  #testimonials .testimonial-note {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }
  #testimonials .testimonial-feature-card:hover {
    transform: translateY(-8px) skewX(-0.6deg);
    box-shadow: 0 26px 60px rgba(2,6,23,0.2);
  }
  #testimonials .testimonial-note:hover {
    transform: translateY(-7px) rotate(-0.6deg);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 20px 42px rgba(2,6,23,0.16);
  }
  #testimonials .testimonial-note:nth-child(even):hover {
    transform: translateY(-7px) rotate(0.6deg);
  }

  /* CTA */
  .cta .cta-panel {
    position: relative;
    overflow: hidden;
    transition: transform 0.32s ease, box-shadow 0.32s ease, background-position 0.45s ease;
    background-size: 120% 120%;
    background-position: 50% 50%;
  }
  .cta .cta-panel::before {
    content: "";
    position: absolute;
    inset: auto -18% -45% -18%;
    height: 72%;
    border-radius: 999px;
    background: radial-gradient(closest-side, rgba(255,255,255,0.22), rgba(255,255,255,0));
    opacity: 0;
    transform: translateY(24px) scale(0.9);
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .cta .cta-panel::after {
    content: "";
    position: absolute;
    top: -18%;
    left: -28%;
    width: 42%;
    height: 136%;
    background: linear-gradient(115deg, rgba(255,255,255,0), rgba(255,255,255,0.34), rgba(255,255,255,0));
    opacity: 0;
    transform: translateX(-220%) skewX(-16deg);
    transition: opacity 0.28s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
  }
  .cta .cta-panel:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 34px 80px rgba(2,6,23,0.3);
    background-position: 58% 42%;
  }
  .cta .cta-panel:hover::before {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .cta .cta-panel:hover::after {
    opacity: 1;
    transform: translateX(340%) skewX(-16deg);
  }

  /* Contact */
  #contact .contact-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }
  #contact .contact-card::before {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, rgba(212,175,55,0.85), rgba(212,175,55,0.25));
    transform: rotate(45deg) scale(0.3);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  #contact .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(2,6,23,0.18);
  }
  #contact .contact-card:hover::before {
    transform: rotate(45deg) scale(1);
    opacity: 1;
  }
}

@keyframes heroPanelSweep {
  from { transform: translateX(-120%) rotate(14deg); }
  to { transform: translateX(120%) rotate(14deg); }
}

/* Mobile readability: justify larger descriptive paragraphs only */
@media (max-width: 768px) {
  .hero-sub,
  .panel-desc,
  #about .about-content p,
  .why-three-text p,
  #testimonials .section-head p,
  .testimonial-note p,
  #contact .contact-card > p,
  .contact-row span,
  .services-hero-sub,
  .service-body p,
  .services-seo-card p,
  .about-hero-intro,
  .about-who-content p,
  .philosophy-lead,
  .philosophy-text p,
  .doctor-content p,
  .contact-hero-sub,
  .contact-intro-copy p,
  .contact-page .contact-card > p,
  .service-sub,
  .service-overview-card p,
  .service-inner-card p,
  .service-cta-panel p {
    text-align: justify;
    text-justify: inter-word;
  }
}
