@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ink: #10221a;
  --muted: #4b6157;
  --line: rgba(16, 34, 26, 0.12);
  --green-900: #0f2b1f;
  --green-800: #153725;
  --green-700: #1d4f35;
  --green-600: #1f6b45;
  --green-500: #2aa56f;
  --green-400: #4ac58a;
  --green-300: #8adbb3;
  --green-200: #c7efd9;
  --green-100: #e5f6ee;
  --surface: #f4fbf7;
  --white: #ffffff;
  --shadow-lg: 0 24px 60px rgba(12, 39, 29, 0.18);
  --shadow-md: 0 16px 40px rgba(12, 39, 29, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

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

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

button {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 24px;
  top: 24px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--green-500);
  color: white;
  border-radius: 999px;
  z-index: 10000;
}

.container {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #1d7a4d, #2bb37c);
  color: white;
  box-shadow: 0 16px 40px rgba(30, 122, 77, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(30, 122, 77, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--green-500);
  color: var(--green-700);
}

.btn-outline:hover {
  background: var(--green-100);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  backdrop-filter: blur(12px);
  background: rgba(244, 251, 247, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

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

.brand img {
  width: 64px;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1.05rem;
}

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

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 600;
  font-size: 0.95rem;
  align-items: center;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--green-100);
}

.hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  background: #000;
}

.hero .eyebrow {
  color: rgba(216, 255, 236, 0.95);
  font-weight: 800;
  font-size: 0.9rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      120deg,
      rgba(7, 48, 34, 0.85) 0%,
      rgba(7, 48, 34, 0.65) 45%,
      rgba(0, 0, 0, 0.35) 100%
    ),
    radial-gradient(circle at 22% 40%, rgba(46, 167, 115, 0.35), rgba(0, 0, 0, 0) 55%),
    url("../images/hero-iris.jpg");
  background-size: cover, cover, min(760px, 85%) auto;
  background-position: center, center, right 8% center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
}

.hero p {
  font-size: 1.1rem;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.85);
}

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

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  border-width: 2px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 360px;
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.9);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.intro-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-md);
}

.intro-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.doctor-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.doctor-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.doctor-highlight {
  background: linear-gradient(160deg, rgba(42, 165, 111, 0.18), rgba(42, 165, 111, 0.05));
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid rgba(42, 165, 111, 0.2);
}

.services-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 36px;
}

.service-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.service-card p {
  color: var(--muted);
}

.service-card .btn {
  align-self: flex-start;
}

.accent-panel {
  background: linear-gradient(135deg, rgba(20, 55, 37, 0.95), rgba(20, 80, 53, 0.9));
  color: white;
  border-radius: var(--radius-xl);
  padding: 38px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  box-shadow: var(--shadow-lg);
}

.accent-panel h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.accent-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 28px;
}

.process-step {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(42, 165, 111, 0.2);
  box-shadow: 0 12px 30px rgba(16, 34, 26, 0.08);
}

.process-step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 700;
  margin-bottom: 12px;
}

.simulator-section {
  background: #0f2218;
  color: white;
}

.simulator-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(16, 34, 26, 0.98), rgba(8, 18, 13, 0.98));
  box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
  .simulator-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

.sim-controls {
  flex: 1;
}

.sim-display {
  flex: 1.4;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.08);
}

.simulator-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: filter 0.8s ease;
  display: block;
}

.sim-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.sim-btn {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.sim-btn:hover {
  border-color: var(--green-400);
  background-color: rgba(255, 255, 255, 0.15);
}

.sim-btn.reset {
  background-color: var(--green-500);
  color: white;
  border: none;
  font-weight: bold;
  justify-content: center;
}

.sim-btn.reset:hover {
  background-color: var(--green-600);
}

.filter-miopia {
  filter: blur(6px);
}

.filter-cataratta {
  filter: blur(3px) grayscale(50%) brightness(1.1) contrast(0.8);
}

.filter-astigmatismo {
  filter: blur(1px) contrast(1.4) drop-shadow(-4px -4px 0 rgba(255, 255, 255, 0.3))
    drop-shadow(4px 4px 0 rgba(255, 255, 255, 0.2));
}

.filter-perfetto {
  filter: none;
}

.amsler-section {
  background: linear-gradient(180deg, rgba(229, 246, 238, 0.7), rgba(244, 251, 247, 1));
}

.amsler-wrapper {
  display: grid;
  gap: 28px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #ffffff, #eef8f3);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(42, 165, 111, 0.16);
}

@media (min-width: 960px) {
  .amsler-wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    align-items: center;
  }
}

.amsler-content .section-subtitle {
  max-width: 100%;
}

.amsler-steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.amsler-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(42, 165, 111, 0.12);
}

.amsler-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.amsler-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.amsler-btn {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(42, 165, 111, 0.22);
  background: white;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}

.amsler-btn:hover {
  transform: translateY(-1px);
  border-color: var(--green-500);
  box-shadow: 0 12px 24px rgba(12, 39, 29, 0.08);
}

.amsler-btn.is-active {
  background: linear-gradient(135deg, #1d7a4d, #2bb37c);
  color: white;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(30, 122, 77, 0.22);
}

.amsler-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.amsler-display {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.amsler-board {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(12, 39, 29, 0.14);
  overflow: hidden;
}

.amsler-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.amsler-grid-art {
  transform-origin: center;
  transition: filter 0.45s ease, transform 0.45s ease;
}

.amsler-board.is-ondulata .amsler-grid-art {
  filter: url(#amslerWaveGentle);
}

.amsler-board.is-distorta .amsler-grid-art {
  filter: url(#amslerWaveStrong);
  transform: scale(1.015);
}

.amsler-scotoma,
.amsler-distortion-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.amsler-scotoma {
  width: 28%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 19, 14, 0.96) 0%, rgba(9, 19, 14, 0.82) 42%, rgba(9, 19, 14, 0.1) 75%, rgba(9, 19, 14, 0) 100%);
}

.amsler-distortion-ring {
  width: 44%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 197, 138, 0) 48%, rgba(74, 197, 138, 0.18) 64%, rgba(74, 197, 138, 0.08) 76%, rgba(74, 197, 138, 0) 100%);
  mix-blend-mode: multiply;
}

.amsler-board.is-macchia .amsler-scotoma {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.amsler-board.is-distorta .amsler-distortion-ring,
.amsler-board.is-ondulata .amsler-distortion-ring {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.amsler-label {
  align-self: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(15, 43, 31, 0.08);
  color: var(--green-700);
  font-weight: 700;
}

.booking-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 620px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(12, 39, 29, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 26px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-bar .title {
  font-weight: 700;
}

.booking-bar .subtitle {
  font-size: 0.78rem;
  color: var(--muted);
}

.pulse-btn {
  background: linear-gradient(135deg, #00c896 0%, #00a87e 100%);
  color: white;
  font-weight: bold;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
  transition: transform 0.2s;
  cursor: pointer;
  font-size: 0.95rem;
  text-transform: uppercase;
  animation: pulse 2.6s infinite;
}

.pulse-btn:hover {
  transform: scale(1.04);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(0, 200, 150, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 150, 0);
  }
}

.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal.show {
  display: flex;
}

.booking-card {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  padding: 26px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(42, 165, 111, 0.12);
  animation: modalIn 0.25s ease;
  max-height: 88vh;
  overflow-y: auto;
}

@keyframes modalIn {
  from {
    transform: translateY(20px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #7a8d84;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.modal-subtitle {
  color: var(--muted);
  margin-bottom: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
}

.modal-input,
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #dde7e1;
  border-radius: 10px;
  background: #f7fbf9;
  font-size: 0.95rem;
  color: #1f2f28;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: white;
}

.phone-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-input select {
  flex: 0 0 120px;
}

.phone-input input {
  flex: 1 1 auto;
  min-width: 0;
}

.flag {
  margin-right: 6px;
  font-size: 1rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-consent input {
  margin-top: 4px;
}


.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 10px;
}

.form-grid .form-field {
  margin-bottom: 0;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.modal-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-700);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem;
}

.modal-submit:hover {
  background: var(--green-800);
}

.service-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
}

.service-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content h2 {
  font-family: var(--font-display);
  margin-top: 24px;
  margin-bottom: 10px;
}

.service-content p + p,
.service-content p + ul,
.service-content ul + p,
.service-content ul + ul {
  margin-top: 14px;
}

.service-content ul {
  margin-left: 20px;
  padding-left: 18px;
}

.service-content li + li {
  margin-top: 10px;
}

.service-sidebar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 120px;
  height: fit-content;
}

.service-sidebar h3 {
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.locations-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 26px;
}

.location-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(42, 165, 111, 0.15);
}

.location-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.map-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-700);
  font-weight: 600;
}

.map-link:hover {
  text-decoration: underline;
}

.site-footer {
  background: #0f2218;
  color: rgba(255, 255, 255, 0.8);
  padding: 50px 0 40px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-brand img {
  width: 90px;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-note {
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero {
  padding: 100px 0 60px;
  background-color: #000;
  background-image:
    linear-gradient(
      120deg,
      rgba(7, 48, 34, 0.85) 0%,
      rgba(7, 48, 34, 0.65) 45%,
      rgba(0, 0, 0, 0.35) 100%
    ),
    radial-gradient(circle at 22% 40%, rgba(46, 167, 115, 0.35), rgba(0, 0, 0, 0) 55%),
    url("../images/hero-iris.jpg");
  background-size: cover, cover, min(760px, 85%) auto;
  background-position: center, center, right 8% center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  color: white;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.page-hero p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
}

.notice {
  padding: 14px;
  border-radius: 12px;
  background: rgba(42, 165, 111, 0.12);
  border: 1px solid rgba(42, 165, 111, 0.22);
  color: #1c4b34;
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  body {
    padding-bottom: 120px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .booking-bar {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 22px;
    width: calc(100% - 24px);
    bottom: 12px;
    text-align: center;
  }

  .booking-bar .title {
    font-size: 1rem;
  }

  .booking-bar .subtitle {
    font-size: 0.8rem;
  }

  .booking-bar .pulse-btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 110px 0 70px;
  }

  .section {
    padding: 60px 0;
  }

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

  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 1.35rem;
  }

  .service-card .btn {
    width: 100%;
    justify-content: center;
  }

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

}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
