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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #1f2933;
  background: #f5f7fb;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 251, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  transition: position 0.3s ease;
}

.site-header.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #34d399, #047857);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecfdf3;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark.small {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
}

.brand-text {
  display: flex;
  align-items: center;
}

.brand-text img {
  max-width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-weight: 600;
  font-size: 0.98rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #64748b;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.main-nav a {
  position: relative;
  color: #334155;
  white-space: nowrap;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ac975c, #ac975b);
  transition: width 0.2s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: #0f172a;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn.small {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.btn.primary {
  background: linear-gradient(135deg, #ac965a, #ac985d);
  color: #f9fafb;
  border-color: transparent;
  box-shadow: 0 12px 20px rgb(190 176 175);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgb(189 189 189);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.7);
}

.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.03);
}

.btn.full-width {
  width: 100%;
}

.hero {
  padding-block: 4.5rem 3.5rem;
  background: radial-gradient(circle at top left, #e6d1ba 0, transparent 50%),
    radial-gradient(circle at bottom right, #e6d1ba 0, transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1.2fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.7rem 0.2rem;
  border-radius: 999px;
  background: rgb(229 223 206);
  color: #ac975c;
  font-size: 0.78rem;
  font-weight: 500;
}

.hero-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.hero h1 {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 2.65rem, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #020617;
}

.hero p {
  margin-top: 0.9rem;
  font-size: 0.98rem;
  color: #475569;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.8rem;
  font-size: 0.85rem;
}

.meta-label {
  display: block;
  color: #64748b;
}

.meta-value {
  font-weight: 600;
  color: #0f172a;
}

.hero-card {
  position: relative;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #0f172a, #174e4c);
  color: #e5e7eb;
  border-radius: 1.4rem;
  padding: 1.7rem 1.6rem 1.6rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.6);
  overflow: hidden;
}

.hero-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, #22c55e 0, transparent 50%),
    radial-gradient(circle at bottom left, #0ea5e9 0, transparent 55%);
  opacity: 0.18;
  pointer-events: none;
}

.hero-card-inner h2 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.hero-card-inner p {
  font-size: 0.86rem;
  color: #cbd5f5;
}

.checklist {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.checklist li::before {
  content: "✓";
  color: #bbf7d0;
  margin-right: 0.45rem;
}

.hero-card-footer {
  margin-top: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

.link-inline {
  color: #a5b4fc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding-block: 3.8rem;
}

.section-alt {
  background: linear-gradient(145deg, #efe7e0, #cdb395);/* #f1f5f9;*/
}

.parallax-section {
  position: relative;
  min-height: 260px;
  color: #f9fafb;
  background-image: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.85),
      rgba(15, 118, 110, 0.7)
    ),
    url("parallax-homeopathy.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax-overlay {
  padding-block: 3.8rem;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.3), transparent 55%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.3), transparent 55%);
}

.parallax-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.parallax-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.4);
}

.parallax-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

.parallax-content {
  max-width: 100%;
}

.parallax-section h2 {
  color: #e5e7eb;
}

.parallax-section p {
  color: #e5e7eb;
}

.parallax-points {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.86rem;
}

.parallax-points .meta-label {
  color: #cbd5f5;
}

.parallax-points .meta-value {
  color: #f9fafb;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f766e;
}

.section h2 {
  margin-top: 0.7rem;
  font-size: 1.7rem;
  color: #020617;
  letter-spacing: -0.01em;
}

.section p {
  margin-top: 0.7rem;
  color: #4b5563;
  font-size: 0.96rem;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.3rem 1.3rem 1.2rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.card.small {
  padding: 1.1rem 1.15rem;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.card ul {
  margin-left: 1rem;
  margin-top: 0.3rem;
  font-size: 0.87rem;
  color: #4b5563;
}

.cards-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.cards-grid .card p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

.steps-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.step {
  padding: 1.1rem 1.1rem 1rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgb(237 229 221);
  color:  #ac965a;
  font-size: 0.8rem;
  font-weight: 600;
}

.step h3 {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  color: #0f172a;
}

.step p {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.testimonials-slider-wrapper {
  position: relative;
  margin-top: 1.7rem;
}

.testimonials-slider {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  gap: 1.2rem;
}

.testimonial {
  flex: 0 0 calc(33.333% - 0.8rem);
  scroll-snap-align: start;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.testimonial p {
  font-size: 0.9rem;
  color: #111827;
}

.testimonial-name {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.slider-btn:hover {
  background: #f8fafc;
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.98);
}

.slider-btn-prev {
  left: -20px;
}

.slider-btn-next {
  right: -20px;
}

.slider-btn.hidden {
  display: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-dots:empty {
  display: none;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.slider-dot.active {
  background: #0f766e;
  transform: scale(1.3);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-info {
  list-style: none;
  margin-top: 1.1rem;
  display: grid;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
}

.contact-info a {
  color: #0f766e;
}

.form-card {
  margin-top: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-top: 0.75rem;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.55rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-size: 0.88rem;
  outline: none;
  background: #f9fafb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35);
  background: #ffffff;
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.form-success {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #047857;
  background: #ecfdf3;
  border-radius: 0.6rem;
  padding: 0.55rem 0.7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: 2.2rem;
  align-items: center;
}

.contact-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-badges span {
  font-size: 0.8rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background:  #ac975b;
  color:  #eee6df;
}

.parallax-appointments {
  position: relative;
  color: #f9fafb;
  background-image: linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.9),
      rgba(30, 64, 175, 0.8)
    ),
    url("appointments-parallax.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax-appointments-overlay {
  padding-block: 3.8rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.32), transparent 55%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.3), transparent 55%);
}

.booking-flex {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: center;
}

.booking-copy h2 {
  color: #e5e7eb;
}

.booking-copy p {
  color: #e5e7eb;
}

.booking-copy .contact-info {
  margin-top: 1.2rem;
}

.booking-copy .contact-info a {
  color: #bfdbfe;
}

.booking-cta-card {
  background: rgba(15, 23, 42, 0.88);
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem 1.3rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(191, 219, 254, 0.5);
}

.booking-cta-text {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.9rem;
}

.btn.large {
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
}

.booking-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #bfdbfe;
}

.map-placeholder {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-size: 0.88rem;
  color: #4b5563;
}

/* Gallery */
.gallery-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  background: #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 1001;
  max-width: 90vw;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1002;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.modal-nav:hover {
  background: rgba(15, 23, 42, 1);
  transform: translateY(-50%) scale(1.1);
}

.modal-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.modal-nav-prev {
  left: 1rem;
}

.modal-nav-next {
  right: 1rem;
}

.modal-close:hover {
  background: rgba(15, 23, 42, 1);
  transform: scale(1.1);
}

.modal-close:active {
  transform: scale(0.95);
}

.modal-content img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.site-footer {
  padding-block: 2.4rem 1.4rem;
  background: #020617;
  color: #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.9fr));
  gap: 2rem;
  align-items: flex-start;
}

.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-text {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.86rem;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.footer-links a {
  color: #e5e7eb;
}

.footer-links a:hover {
  color: #a5b4fc;
}

.footer-social {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  text-align: center;
}

.social-icons {
  display: flex; 
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #e5e7eb;
  background: rgba(148, 163, 184, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgb(176 156 108);
  color: #e5e7eb !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .section-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .parallax-section,
  .parallax-appointments {
    background-attachment: scroll; /* better behavior on mobile browsers */
  }

  .parallax-section {
    background-attachment: scroll; /* better behavior on mobile browsers */
  }

  .parallax-content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

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

  .testimonial {
    flex: 0 0 calc(50% - 0.6rem);
  }

  .slider-btn-prev {
    left: -10px;
  }

  .slider-btn-next {
    right: -10px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    inset-inline: 1.25rem;
    top: 100%;
    margin-top: 0.4rem;
    background: rgba(248, 250, 252, 0.97);
    border-radius: 0.9rem;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
    padding: 0.6rem 0.7rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    transform-origin: top center;
    transform: scaleY(0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

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

  .main-nav a.btn {
    align-self: stretch;
    justify-content: center;
    margin-top: 0.35rem;
  }

  .hero {
    padding-block: 3.2rem 3rem;
  }

  .hero-meta {
    gap: 1rem;
  }

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

  .testimonial {
    flex: 0 0 100%;
  }

  .modal {
    padding: 1rem;
  }

  .modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }

  .modal-close {
    width: 36px;
    height: 36px;
    top: 0.5rem;
    right: 0.5rem;
  }

  .modal-nav {
    width: 40px;
    height: 40px;
  }

  .modal-nav-prev {
    left: 0.5rem;
  }

  .modal-nav-next {
    right: 0.5rem;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .slider-btn-prev {
    left: 0;
  }

  .slider-btn-next {
    right: 0;
  }

  .booking-flex {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer {
    padding-block: 2rem 1.2rem;
  }

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

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ac975c, #beb0af);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.4);
}

.scroll-to-top:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-to-top {
    width: 44px;
    height: 44px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


