:root {
  --charcoal: #f7fcf9;
  --charcoal-2: #eef8f2;
  --burgundy: #047857;
  --rose: #10b981;
  --ivory: #10332b;
  --sand: #c59f52;
  --muted: #5f756e;
  --line: rgba(4, 120, 87, 0.16);
  --glass: rgba(255, 255, 255, 0.76);
  --white: #ffffff;
  --green: #047857;
  --shadow: 0 24px 70px rgba(11, 79, 60, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", Verdana, sans-serif;
  --arabic: "Noto Kufi Arabic", "Outfit", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 10%, rgba(16, 185, 129, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 4%, rgba(4, 120, 87, 0.12), transparent 32rem),
    linear-gradient(135deg, #ffffff 0%, #f7fcf9 45%, #eef8f2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

html[dir="rtl"] body {
  font-family: var(--arabic);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(4, 120, 87, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 120, 87, 0.055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000 0 68%, transparent);
}

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

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

button {
  color: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.cursor-light {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at var(--cursor-x, 70%) var(--cursor-y, 20%), rgba(16, 185, 129, 0.16), transparent 22rem);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1180px, calc(100% - 28px));
  margin: 18px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 70px rgba(11, 79, 60, 0.12);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    var(--burgundy);
  box-shadow: 0 18px 40px rgba(4, 120, 87, 0.24);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
}

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

.brand strong {
  font-size: 1rem;
  font-weight: 800;
}

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

.main-nav {
  justify-self: center;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(4, 120, 87, 0.12);
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.06);
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: #38554c;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #ffffff;
  background: var(--green);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.language-toggle,
.nav-cta,
.nav-toggle {
  border: 0;
  cursor: pointer;
}

.language-toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(4, 120, 87, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.language-toggle small {
  color: var(--muted);
  font-weight: 800;
}

.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--burgundy);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(4, 120, 87, 0.26);
  font-weight: 800;
}

.nav-toggle {
  display: none;
}

main,
.site-footer {
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 70px 0 88px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #047857;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title,
.about-quote h2,
.section-head h2,
.hospital-copy h2,
.contact-copy h2,
.story-copy h2 {
  margin: 0;
  color: #10332b;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero-title {
  max-width: 680px;
  font-size: clamp(4.7rem, 8.7vw, 9.2rem);
  line-height: 0.93;
}

.hero-title em,
.hospital-copy em {
  color: #047857;
  font-style: italic;
  font-weight: 600;
}

html[dir="rtl"] .hero-title,
html[dir="rtl"] .about-quote h2,
html[dir="rtl"] .section-head h2,
html[dir="rtl"] .hospital-copy h2,
html[dir="rtl"] .contact-copy h2,
html[dir="rtl"] .story-copy h2 {
  font-family: var(--arabic);
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.hero-subtitle {
  margin: 16px 0 0;
  color: #8a6a22;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 700;
}

.hero-desc,
.section-head p,
.hospital-copy p,
.contact-copy p,
.story-copy p {
  max-width: 690px;
  margin: 22px 0 0;
  color: #4f675f;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 12%, rgba(255, 255, 255, 0.28), transparent 42%);
  transform: translateX(-120%);
}

.button:hover::after {
  animation: sheen 800ms ease;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--burgundy), var(--rose));
  box-shadow: 0 22px 54px rgba(4, 120, 87, 0.24);
}

.button-ghost {
  border: 1px solid rgba(4, 120, 87, 0.18);
  color: #064e3b;
  background: rgba(255, 255, 255, 0.82);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.hero-stats article {
  min-height: 122px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.hero-stats strong {
  display: block;
  color: #064e3b;
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 18px;
  color: #5f756e;
  font-weight: 700;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  perspective: 1200px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% -10% 2% 2%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.24), transparent 58%);
  filter: blur(18px);
}

.hero-photo,
.glass-card,
.info-card,
.service-card,
.hospital-panel,
.booking-form,
.contact-blocks article {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(235, 249, 241, 0.74)),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  transform-style: preserve-3d;
}

.hero-photo img,
.hero-video {
  display: block;
  width: 100%;
  height: min(64vh, 660px);
  min-height: 560px;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.015);
  animation: portraitBreathe 10s ease-in-out infinite alternate;
}

.hero-video {
  display: none;
}

.hero-video.is-active {
  display: block;
}

.hero-fallback.is-hidden {
  display: none;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 78, 59, 0.52), transparent 45%),
    linear-gradient(120deg, rgba(16, 185, 129, 0.12), transparent 48%);
}

.photo-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(6, 78, 59, 0.72);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.live-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #76e1b7;
  box-shadow: 0 0 0 0 rgba(118, 225, 183, 0.5);
  animation: pulse 1.8s infinite;
}

.hero-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.hero-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  color: #10332b;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(4, 120, 87, 0.07);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 20px 0;
  animation: marquee 28s linear infinite;
}

.marquee span {
  color: rgba(6, 78, 59, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-style: italic;
  white-space: nowrap;
}

.section-pad {
  padding: 110px 0;
}

.section-label {
  margin-bottom: 22px;
  color: #047857;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.about-quote h2,
.section-head h2,
.hospital-copy h2,
.contact-copy h2,
.story-copy h2 {
  font-size: clamp(3rem, 6.2vw, 6.8rem);
}

.about-cards {
  display: grid;
  gap: 16px;
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.info-card span,
.service-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--burgundy);
  font-weight: 800;
}

.info-card h3,
.service-card h3 {
  margin: 0 0 8px;
  color: #10332b;
  font-size: 1.45rem;
  font-weight: 800;
}

.info-card p,
.service-card p {
  margin: 0;
  color: #5f756e;
  line-height: 1.7;
}

.section-head {
  max-width: 860px;
  margin-bottom: 32px;
}

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

.service-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-xl);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40% -25% auto auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 68%);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(4, 120, 87, 0.34);
  background:
    linear-gradient(145deg, rgba(16, 185, 129, 0.12), rgba(255, 255, 255, 0.92)),
    #ffffff;
  transform: translateY(-4px);
}

.service-card h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

html[dir="rtl"] .service-card h3 {
  font-family: var(--arabic);
}

.procedure-visual {
  position: relative;
  display: grid;
  height: 228px;
  place-items: center;
  overflow: hidden;
  margin: -2px -2px 18px;
  border: 1px solid rgba(4, 120, 87, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 36%, rgba(14, 165, 233, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(236, 253, 245, 0.98), rgba(224, 242, 254, 0.9));
}

.procedure-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(3, 105, 161, 0.16);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.procedure-visual::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 26px;
  bottom: 18px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(6, 78, 59, 0.18), transparent 70%);
}

.procedure-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(6, 78, 59, 0.18));
  animation: procedureFloat 5.8s ease-in-out infinite;
  transform-origin: center;
}

.service-card:nth-child(2n) .procedure-visual img {
  animation-delay: -1.4s;
}

.service-card:nth-child(3n) .procedure-visual img {
  animation-delay: -2.6s;
}

.hospital-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(28px, 5vw, 62px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 14% 20%, rgba(16, 185, 129, 0.16), transparent 19rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(235, 249, 241, 0.76)),
    #ffffff;
}

.hospital-details {
  display: grid;
  gap: 14px;
}

.hospital-details article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.hospital-details span,
.contact-blocks span {
  display: block;
  margin-bottom: 8px;
  color: #047857;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hospital-details strong,
.contact-blocks strong {
  color: #173f36;
  line-height: 1.55;
}

.insurance {
  margin-top: 26px;
}

.insurance p {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 800;
}

.insurance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.insurance-tags span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #28574b;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 124px;
}

.contact-blocks {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-blocks article {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 42px;
}

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

.booking-form label {
  display: grid;
  gap: 9px;
  color: #28574b;
  font-size: 0.9rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(4, 120, 87, 0.16);
  border-radius: 18px;
  outline: none;
  padding: 16px 17px;
  color: #10332b;
  background: rgba(255, 255, 255, 0.86);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-form select option {
  color: #151515;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(4, 120, 87, 0.56);
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.14);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px !important;
  color: #5f756e !important;
  font-size: 0.86rem !important;
  line-height: 1.55;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--burgundy);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr auto;
  gap: 22px;
  align-items: start;
  padding: 32px 0 96px;
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer p,
.site-footer small,
.site-footer span {
  margin: 0;
  color: #5f756e;
  line-height: 1.65;
}

.footer-link {
  display: inline-block;
  margin-top: 6px;
  color: #5f756e;
  font-size: 0.86rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(95, 117, 110, 0.3);
  transition: color 220ms ease, border-color 220ms ease;
}

.footer-link:hover {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
}

.consent a {
  color: rgba(247, 239, 227, 0.88);
  border-bottom: 1px solid rgba(247, 239, 227, 0.3);
  transition: color 200ms ease, border-color 200ms ease;
}

.consent a:hover {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), #075d52);
  box-shadow: 0 18px 44px rgba(5, 84, 74, 0.38);
  cursor: pointer;
  font-weight: 800;
}

html[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 22px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 100;
  max-width: min(360px, calc(100vw - 44px));
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #10332b;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  transform: translateY(calc(var(--base-y, 0px) + 22px + var(--parallax-y, 0px)));
  transition: transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  transform: translateY(calc(var(--base-y, 0px) + var(--parallax-y, 0px)));
}

.tilt-card,
.magnetic {
  will-change: transform;
}

@keyframes sheen {
  to {
    transform: translateX(120%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(118, 225, 183, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(118, 225, 183, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(118, 225, 183, 0);
  }
}

@keyframes portraitBreathe {
  from {
    transform: scale(1.015) translateY(0);
  }
  to {
    transform: scale(1.055) translateY(-8px);
  }
}

@keyframes procedureFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateZ(-1deg) scale(1);
  }
  50% {
    transform: translateY(-12px) rotateX(5deg) rotateZ(1.8deg) scale(1.035);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    border-radius: 30px;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--burgundy);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: -5px 0;
    border-radius: 999px;
    background: var(--ivory);
    transition: transform 220ms ease;
  }

  .site-header.nav-open .nav-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-stats,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-title {
    font-size: clamp(4.4rem, 21vw, 6.8rem);
  }

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

  .hero-photo img {
    min-height: 460px;
    height: 460px;
  }

  .hero-video {
    min-height: 460px;
    height: 460px;
  }

  .section-pad {
    padding: 74px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 92px;
  }

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

  html[dir="rtl"] .floating-whatsapp {
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
