* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0b6b57;
  --primary-dark: #064b3e;
  --primary-soft: #e8f7f2;
  --secondary: #f4b942;
  --ink: #12322c;
  --muted: #6c7f7a;
  --surface: #ffffff;
  --surface-2: #f5faf8;
  --border: #dcebe6;
  --shadow: 0 20px 60px rgba(11, 107, 87, 0.12);
  --radius: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", "Tajawal", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,235,230,.7);
  transition: .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-left: auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary), #19a47f);
  color: white;
  font-size: 23px;
  box-shadow: 0 10px 24px rgba(11,107,87,.22);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: #526661;
  font-size: 13px;
  font-weight: 700;
  transition: .25s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: .25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-call {
  margin-right: 4px;
  padding: 10px 19px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(11,107,87,.2);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: .25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  padding: 160px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(45,185,145,.15), transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(244,185,66,.12), transparent 25%),
    linear-gradient(135deg, #f4fbf8 0%, #ffffff 55%, #edf8f4 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 60px;
  direction: ltr;
}

.hero-content {
  direction: rtl;
  text-align: right;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: #24ae83;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(36,174,131,.1);
}

.hero h1 {
  max-width: 690px;
  margin-top: 18px;
  color: #103c32;
  font-size: clamp(35px, 4.3vw, 64px);
  line-height: 1.2;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--primary);
}

.hero-text {
  max-width: 630px;
  margin: 22px 0 30px;
  color: #647873;
  font-size: 16px;
  line-height: 2;
}

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

.btn {
  min-height: 50px;
  padding: 11px 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
  transition: .25s ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #13876c);
  box-shadow: 0 13px 28px rgba(11,107,87,.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 35px rgba(11,107,87,.28);
}

.btn-secondary {
  color: var(--primary);
  background: white;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.hero-meta {
  display: flex;
  gap: 35px;
  margin-top: 38px;
}

.hero-meta div {
  padding-right: 17px;
  border-right: 2px solid #d9ebe5;
}

.hero-meta strong {
  display: block;
  font-size: 18px;
  color: var(--ink);
}

.hero-meta span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.hero-visual {
  direction: rtl;
  display: grid;
  place-items: center;
}

.visual-card {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.92), rgba(255,255,255,.1) 42%),
    linear-gradient(145deg, #0a735d, #064d40);
  box-shadow: 0 35px 80px rgba(6,75,62,.24);
  overflow: visible;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 35px;
}

.visual-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  top: -50px;
  left: -40px;
}

.medical-cross {
  width: 85px;
  height: 85px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: var(--primary);
  background: white;
  font-size: 45px;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(0,0,0,.14);
}

.animal-icons {
  display: flex;
  gap: 11px;
  margin-top: 24px;
  font-size: 30px;
  filter: drop-shadow(0 7px 9px rgba(0,0,0,.13));
}

.visual-label {
  margin-top: 24px;
  text-align: center;
  color: white;
}

.visual-label small {
  display: block;
  opacity: .75;
  font-size: 11px;
}

.visual-label strong {
  display: block;
  margin-top: 2px;
  font-size: 17px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 185px;
  padding: 12px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 17px;
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.floating-top {
  top: 55px;
  right: -35px;
}

.floating-bottom {
  bottom: 48px;
  left: -35px;
}

.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 11px;
}

.floating-card small {
  color: var(--muted);
  font-size: 9px;
}

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

.glow-one {
  width: 300px;
  height: 300px;
  background: rgba(11,107,87,.04);
  right: -120px;
  top: 170px;
}

.glow-two {
  width: 200px;
  height: 200px;
  background: rgba(244,185,66,.06);
  left: -80px;
  bottom: 100px;
}

.hero-wave {
  position: absolute;
  height: 85px;
  width: 120%;
  left: -10%;
  bottom: -55px;
  border-radius: 50% 50% 0 0;
  background: white;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -4px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.trust-item {
  min-height: 94px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

.trust-item > span {
  font-size: 25px;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 12px;
}

.trust-item small {
  color: var(--muted);
  font-size: 9px;
}

/* General sections */
.section {
  padding: 115px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.section-kicker {
  margin-bottom: 10px;
}

.section-content h2,
.section-heading h2 {
  font-size: clamp(28px, 3.2vw, 43px);
  line-height: 1.3;
  color: #123c33;
}

.section-content h2 span,
.section-heading h2 span {
  color: var(--primary);
}

.section-content > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.about-art {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.about-circle {
  position: relative;
  width: 310px;
  height: 310px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 25%, #dff4ed 26%, #effaf6 68%, #d3eee5 100%);
  box-shadow: inset 0 0 0 1px white, 0 25px 65px rgba(11,107,87,.12);
}

.large-paw {
  font-size: 105px;
  filter: drop-shadow(0 15px 20px rgba(11,107,87,.14));
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(11,107,87,.25);
  border-radius: 50%;
}

.orbit-a {
  inset: -25px;
}

.orbit-b {
  inset: 28px;
}

.experience-card {
  position: absolute;
  right: 4%;
  bottom: 35px;
  width: 210px;
  padding: 16px 20px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 45px rgba(0,0,0,.1);
  border: 1px solid var(--border);
}

.experience-card strong {
  display: block;
  color: var(--primary);
  font-size: 20px;
}

.experience-card span {
  color: var(--muted);
  font-size: 10px;
}

.feature-list {
  margin-top: 28px;
  display: grid;
  gap: 13px;
}

.feature {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.feature > span {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

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

.feature strong {
  font-size: 12px;
}

.feature small {
  color: var(--muted);
  font-size: 10px;
}

.services {
  background: var(--surface-2);
}

.section-heading {
  max-width: 650px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading .section-kicker {
  justify-content: center;
}

.section-heading p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.service-card {
  min-height: 245px;
  padding: 28px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: #b9dfd4;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 18px;
  background: var(--primary-soft);
  font-size: 30px;
}

.service-card h3 {
  font-size: 15px;
}

.service-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.service-note {
  margin: 28px auto 0;
  max-width: 850px;
  padding: 13px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff9e9;
  border: 1px solid #f4dfaa;
  color: #725a24;
}

.service-note p {
  font-size: 10px;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.stats {
  display: flex;
  gap: 35px;
  margin-top: 30px;
}

.stats div {
  padding-right: 18px;
  border-right: 2px solid var(--border);
}

.stats strong {
  display: block;
  color: var(--primary);
  font-size: 17px;
}

.stats span {
  color: var(--muted);
  font-size: 9px;
}

.why-cards {
  display: grid;
  gap: 13px;
}

.why-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 15px;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: white;
  transition: .25s;
}

.why-card:hover {
  transform: translateX(-5px);
  box-shadow: 0 15px 40px rgba(11,107,87,.08);
}

.why-card > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 800;
}

.why-card strong {
  font-size: 13px;
}

.why-card p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

/* CTA */
.cta-section {
  padding: 0 0 110px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 45px 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #075845, #0d8267);
  box-shadow: 0 25px 70px rgba(7,88,69,.22);
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: -90px;
  top: -130px;
  border-radius: 50%;
  border: 45px solid rgba(255,255,255,.05);
}

.section-kicker.light {
  color: #a9ead6;
}

.cta-box h2 {
  color: white;
  font-size: 35px;
  line-height: 1.35;
}

.cta-box p {
  margin-top: 6px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.btn-white {
  position: relative;
  z-index: 2;
  background: white;
  color: var(--primary);
  white-space: nowrap;
  min-width: 210px;
}

/* Contact */
.contact {
  background: #f8fcfa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: stretch;
}

.contact-info {
  display: grid;
  gap: 12px;
}

.contact-card {
  min-height: 91px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 17px;
  background: white;
  border: 1px solid var(--border);
  transition: .25s;
}

a.contact-card:hover {
  transform: translateY(-3px);
  border-color: #afdace;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary-soft);
  font-size: 22px;
}

.contact-card small,
.contact-card strong,
.contact-card p {
  display: block;
}

.contact-card small {
  color: var(--muted);
  font-size: 9px;
}

.contact-card strong {
  font-size: 12px;
}

.contact-card p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.8;
}

.map-card {
  position: relative;
  min-height: 100%;
  padding: 42px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 26px;
  background:
    linear-gradient(rgba(226,243,237,.88), rgba(226,243,237,.88)),
    repeating-linear-gradient(45deg, transparent 0 25px, rgba(11,107,87,.07) 26px 27px);
  border: 1px solid #cfe7df;
}

.map-pattern {
  position: absolute;
  inset: 0;
  opacity: .55;
  background:
    linear-gradient(20deg, transparent 48%, rgba(11,107,87,.09) 49% 50%, transparent 51%),
    linear-gradient(110deg, transparent 48%, rgba(11,107,87,.08) 49% 50%, transparent 51%);
  background-size: 70px 70px;
}

.map-pin {
  position: relative;
  font-size: 50px;
  filter: drop-shadow(0 12px 12px rgba(11,107,87,.2));
}

.map-card h3,
.map-card p,
.map-card .btn {
  position: relative;
}

.map-card h3 {
  margin-top: 10px;
  font-size: 20px;
}

.map-card p {
  margin: 5px 0 20px;
  color: #617670;
  font-size: 11px;
  line-height: 2;
}

/* Footer */
.site-footer {
  padding: 26px 0;
  background: #073f34;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 25px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
  box-shadow: none;
}

.footer-brand strong {
  font-size: 11px;
}

.footer-brand p {
  margin-top: 2px;
  color: rgba(255,255,255,.58);
  font-size: 8px;
}

.footer-copy {
  color: rgba(255,255,255,.55);
  font-size: 9px;
}

.back-top {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255,255,255,.1);
  font-size: 18px;
}

/* Floating call */
.floating-call {
  position: fixed;
  z-index: 999;
  left: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  display: none;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--primary);
  box-shadow: 0 12px 30px rgba(11,107,87,.3);
  font-size: 22px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 12px 30px rgba(11,107,87,.3); }
  50% { box-shadow: 0 12px 30px rgba(11,107,87,.3), 0 0 0 10px rgba(11,107,87,.08); }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1000px) {
  .main-nav {
    gap: 16px;
  }

  .hero-grid,
  .section-grid {
    gap: 45px;
  }

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

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

@media (max-width: 800px) {
  .nav-wrap {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
    order: 1;
  }

  .brand {
    order: 2;
    margin-left: 0;
    margin-right: auto;
  }

  .nav-call {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 12px;
    border-bottom: 1px solid #edf3f1;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 125px;
  }

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

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

  .hero-text {
    margin-inline: auto;
  }

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

  .hero-visual {
    margin-top: 35px;
  }

  .visual-card {
    width: min(380px, 90%);
  }

  .section-grid {
    text-align: center;
  }

  .feature {
    text-align: right;
  }

  .about-art {
    min-height: 350px;
    order: 2;
  }

  .why-grid .section-content {
    text-align: center;
  }

  .stats {
    justify-content: center;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }

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

  .footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    order: 3;
  }

  .floating-call {
    display: grid;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

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

  .brand small {
    font-size: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 90px;
  }

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

  .hero-text {
    font-size: 13px;
  }

  .hero-meta {
    gap: 18px;
  }

  .hero-meta strong {
    font-size: 14px;
  }

  .floating-top {
    right: -8px;
    top: 28px;
  }

  .floating-bottom {
    left: -8px;
    bottom: 25px;
  }

  .floating-card {
    min-width: 155px;
    padding: 9px;
  }

  .trust-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 78px;
  }

  .section {
    padding: 80px 0;
  }

  .about-circle {
    width: 250px;
    height: 250px;
  }

  .large-paw {
    font-size: 80px;
  }

  .experience-card {
    right: 0;
    bottom: 10px;
  }

  .cta-section {
    padding-bottom: 80px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .map-card {
    padding: 30px;
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .back-top {
    display: none;
  }
}


/* Image-rich visual system */
.image-hero-card {
  padding: 0;
  display: block;
  border-radius: 48px;
  overflow: visible;
}

.image-hero-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 48px;
  filter: saturate(.92) contrast(1.02);
}

.image-overlay {
  position: absolute;
  inset: 0;
  border-radius: 48px;
  background: linear-gradient(180deg, rgba(5,61,50,.03) 25%, rgba(4,59,49,.72) 100%);
  pointer-events: none;
}

.hero-photo-badge {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  color: white;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px;
  background: rgba(3,54,44,.48);
  backdrop-filter: blur(10px);
}

.badge-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: white;
  color: var(--primary);
  font-size: 23px;
}

.hero-photo-badge small,
.hero-photo-badge strong {
  display: block;
}

.hero-photo-badge small {
  color: rgba(255,255,255,.72);
  font-size: 9px;
}

.hero-photo-badge strong {
  font-size: 13px;
}

.about-photo {
  position: relative;
  width: min(410px, 100%);
  height: 390px;
  padding: 10px;
  border-radius: 36px;
  background: white;
  box-shadow: 0 25px 65px rgba(11,107,87,.14);
  transform: rotate(-2deg);
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 28px;
}

.photo-corner {
  position: absolute;
  right: -18px;
  top: 28px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: white;
  background: var(--primary);
  box-shadow: 0 15px 30px rgba(11,107,87,.25);
  font-size: 28px;
}

.service-image-card {
  overflow: hidden;
  padding: 0 0 24px;
}

.service-image {
  position: relative;
  height: 165px;
  overflow: hidden;
  margin-bottom: 21px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.service-image-card:hover .service-image img {
  transform: scale(1.07);
}

.service-image > span {
  position: absolute;
  right: 15px;
  bottom: 13px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
  font-size: 24px;
}

.service-image-card h3,
.service-image-card p {
  margin-inline: 24px;
}

.mini-gallery {
  background: white;
  padding-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  grid-template-rows: 190px 190px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #dcebe6;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.55));
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 14px;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px 160px;
  }

  .gallery-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}

@media (max-width: 560px) {
  .about-photo {
    height: 310px;
  }

  .hero-photo-badge {
    right: 17px;
    bottom: 17px;
    left: 17px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 190px);
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }
}
