:root {
  --magenta: #D81E5B;
  --magenta-deep: #A8174A;
  --magenta-glow: #FF4787;
  --blush-50: #FFFBFA;
  --blush-100: #FDF3F1;
  --blush-200: #FBEAF0;
  --blush-300: #F4D4DF;
  --rose-petal: #F0997B;
  --plum: #2a1820;
  --plum-soft: #4a3540;
  --plum-muted: #6a525c;
  --gold: #D4A574;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Sacramento', cursive;
  --sans: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  color: var(--plum);
  background: var(--blush-50);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255, 251, 250, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(216, 30, 91, 0.08);
  transition: padding 0.4s var(--ease);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex; gap: 38px;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--plum-soft); font-weight: 400;
}
.nav-links a { position: relative; transition: color 0.3s; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 50%;
  width: 0; height: 1px; background: var(--magenta);
  transition: all 0.3s var(--ease);
}
.nav-links a:hover { color: var(--magenta); }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-cta {
  background: var(--magenta); color: white;
  padding: 12px 28px; border-radius: 999px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(216, 30, 91, 0.25);
}
.nav-cta:hover {
  background: var(--magenta-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(216, 30, 91, 0.35);
}
.nav-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--magenta); cursor: pointer; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  padding: 140px 64px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(216,30,91,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(240,153,123,0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--blush-50) 0%, var(--blush-100) 100%);
}
.hero-deco { position: absolute; pointer-events: none; opacity: 0.4; }
.hero-deco-1 { top: 8%; left: 4%; width: 180px; transform: rotate(-15deg); }
.hero-deco-2 { bottom: 6%; right: 8%; width: 240px; transform: rotate(20deg); }
.hero-deco-3 { top: 40%; left: 45%; width: 80px; opacity: 0.25; }

.hero-content { position: relative; z-index: 2; animation: fadeUp 1.2s var(--ease) both; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--magenta); font-weight: 500; margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--magenta); opacity: 0.5; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 0.98; color: var(--plum); font-weight: 400;
  letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero-title .script {
  font-family: var(--script); font-weight: 400; color: var(--magenta);
  font-size: 1.15em; line-height: 0.9;
  display: inline-block; transform: translateY(8px);
}
.hero-sub {
  font-size: 17px; line-height: 1.75; color: var(--plum-muted);
  max-width: 460px; margin-bottom: 40px; font-weight: 300;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--magenta); color: white;
  padding: 18px 36px; border-radius: 999px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 30px rgba(216, 30, 91, 0.3);
  cursor: pointer; border: none; font-family: var(--sans);
}
.btn-primary:hover {
  background: var(--magenta-deep);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(216, 30, 91, 0.4);
}
.btn-primary i { transition: transform 0.3s; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-ghost {
  color: var(--plum); padding: 18px 8px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--plum-soft);
  transition: all 0.3s;
  background: none; cursor: pointer; font-family: var(--sans);
}
.btn-ghost:hover { color: var(--magenta); border-color: var(--magenta); gap: 14px; }

.hero-trust {
  display: flex; align-items: center; gap: 24px;
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(216, 30, 91, 0.15);
  flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--plum-muted); letter-spacing: 0.5px; }
.hero-trust-item i { color: var(--magenta); font-size: 18px; }

.hero-visual {
  position: relative; aspect-ratio: 4/5;
  max-width: 560px; margin-left: auto;
  animation: fadeIn 1.4s var(--ease) 0.3s both;
}
.hero-frame {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blush-200) 0%, var(--blush-100) 60%, #fff 100%);
  border-radius: 50% 50% 48% 52% / 60% 55% 45% 40%;
  box-shadow: 0 30px 80px rgba(216, 30, 91, 0.15), inset 0 0 60px rgba(255,255,255,0.5);
  animation: morph 12s ease-in-out infinite;
}
.hero-frame-2 {
  position: absolute; inset: -20px; z-index: -1;
  border: 1px dashed rgba(216, 30, 91, 0.3);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.hero-logo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 8%;
}
.hero-logo img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(216, 30, 91, 0.2));
}
.floating-badge {
  position: absolute; background: white;
  padding: 14px 20px; border-radius: 16px;
  box-shadow: 0 20px 40px rgba(42, 24, 32, 0.12);
  display: flex; align-items: center; gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.floating-badge-1 { top: 12%; left: -8%; animation-delay: 0s; }
.floating-badge-2 { bottom: 18%; right: -6%; animation-delay: 2s; }
.floating-badge-3 { top: 50%; right: -10%; animation-delay: 1s; }
.badge-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-200), var(--blush-300));
  display: flex; align-items: center; justify-content: center;
  color: var(--magenta); font-size: 18px;
}
.badge-text { font-size: 12px; }
.badge-label { font-weight: 500; color: var(--plum); }
.badge-sub { font-size: 11px; color: var(--plum-muted); letter-spacing: 0.5px; }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--plum); color: var(--blush-200);
  overflow: hidden; padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex; gap: 60px;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--serif); font-size: 28px; font-style: italic;
  display: flex; align-items: center; gap: 60px; letter-spacing: 1px;
}
.marquee-item::after {
  content: '✦'; color: var(--magenta-glow); font-style: normal; font-size: 14px;
}

/* ============ SERVICES ============ */
.services { padding: 120px 64px; background: var(--blush-50); position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--magenta); font-weight: 500; margin-bottom: 18px;
}
.section-eyebrow::before { content: '— '; }
.section-eyebrow::after { content: ' —'; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05; color: var(--plum); font-weight: 400; letter-spacing: -0.5px;
}
.section-title .script {
  font-family: var(--script); color: var(--magenta);
  font-size: 1.15em;
}
.section-sub { font-size: 16px; color: var(--plum-muted); margin-top: 18px; line-height: 1.7; }

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: white; border-radius: 24px; padding: 48px 40px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(216, 30, 91, 0.08);
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(216, 30, 91, 0.08) 0%, transparent 70%);
  border-radius: 50%; transform: translate(50%, -50%);
  transition: all 0.6s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(216, 30, 91, 0.15);
  border-color: rgba(216, 30, 91, 0.2);
}
.service-card:hover::before { transform: translate(30%, -30%) scale(1.5); }
.service-card:hover .service-arrow { transform: translate(4px, -4px); color: var(--magenta); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blush-200), var(--blush-100));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--magenta); font-size: 26px;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.service-title { font-family: var(--serif); font-size: 32px; font-weight: 500; color: var(--plum); margin-bottom: 10px; }
.service-desc { font-size: 15px; line-height: 1.7; color: var(--plum-muted); margin-bottom: 28px; max-width: 380px; }
.service-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.service-list li {
  font-size: 12px; padding: 6px 14px;
  background: var(--blush-100); border-radius: 999px;
  color: var(--magenta-deep); letter-spacing: 0.3px;
}
.service-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--blush-200);
}
.service-price { font-family: var(--serif); font-size: 22px; color: var(--plum); font-style: italic; }
.service-price small { font-size: 12px; color: var(--plum-muted); letter-spacing: 1.5px; text-transform: uppercase; font-style: normal; font-family: var(--sans); }
.service-arrow { color: var(--plum-muted); font-size: 24px; transition: all 0.4s var(--ease); }

/* ============ ABOUT ============ */
.about {
  padding: 120px 64px;
  background: linear-gradient(180deg, var(--blush-100) 0%, var(--blush-200) 100%);
  position: relative; overflow: hidden;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-visual { position: relative; aspect-ratio: 4/5; }
.about-img-main {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blush-300), var(--rose-petal));
  border-radius: 200px 200px 24px 24px;
  box-shadow: 0 30px 80px rgba(216, 30, 91, 0.2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-img-main i { font-size: 200px; color: rgba(255,255,255,0.4); }
.about-img-acc {
  position: absolute; bottom: -30px; right: -30px;
  width: 50%; aspect-ratio: 1;
  background: var(--plum);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(42, 24, 32, 0.3);
}
.about-img-acc-inner { text-align: center; color: var(--blush-100); }
.about-img-acc-num { font-family: var(--serif); font-size: 56px; font-style: italic; line-height: 1; color: var(--magenta-glow); }
.about-img-acc-lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; opacity: 0.8; }
.about-img-stamp {
  position: absolute; top: -20px; left: -20px;
  width: 110px; height: 110px;
  animation: spin 24s linear infinite;
}
.about-text { padding: 20px 0; }
.about-text .section-eyebrow { margin-bottom: 18px; }
.about-text .section-title { text-align: left; }
.about-text .section-sub { max-width: 480px; margin-left: 0; margin-top: 24px; }
.about-signature { font-family: var(--script); font-size: 36px; color: var(--magenta); margin-top: 32px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px;
  padding-top: 40px; border-top: 1px solid rgba(216, 30, 91, 0.2);
}
.stat-num { font-family: var(--serif); font-size: 44px; color: var(--magenta); font-style: italic; line-height: 1; }
.stat-lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--plum-muted); margin-top: 8px; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 120px 64px; background: var(--plum); color: var(--blush-100);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(216, 30, 91, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.testimonials::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240, 153, 123, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.testimonials .section-head { position: relative; z-index: 1; }
.testimonials .section-title { color: var(--blush-100); }
.testimonials .section-eyebrow { color: var(--magenta-glow); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(216, 30, 91, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
}
.review-card:hover { transform: translateY(-4px); border-color: var(--magenta); background: rgba(255,255,255,0.06); }
.review-stars { color: var(--magenta-glow); margin-bottom: 20px; letter-spacing: 2px; }
.review-text { font-family: var(--serif); font-size: 19px; line-height: 1.6; font-style: italic; color: var(--blush-100); margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--magenta-glow));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 500; font-size: 15px;
}
.review-name { font-size: 14px; color: var(--blush-100); font-weight: 500; }
.review-meta { font-size: 11px; color: var(--blush-300); letter-spacing: 1px; text-transform: uppercase; opacity: 0.7; }

/* ============ CTA ============ */
.cta-section {
  padding: 140px 64px; background: var(--blush-50);
  text-align: center; position: relative; overflow: hidden;
}
.cta-bg-flower { position: absolute; opacity: 0.06; pointer-events: none; }
.cta-bg-flower-1 { top: 10%; left: 8%; width: 200px; transform: rotate(-20deg); }
.cta-bg-flower-2 { bottom: 10%; right: 8%; width: 240px; transform: rotate(30deg); }
.cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1; color: var(--plum); font-weight: 400;
  letter-spacing: -1px; margin-bottom: 24px;
}
.cta-title .script { font-family: var(--script); color: var(--magenta); font-size: 1.2em; }
.cta-sub { font-size: 17px; color: var(--plum-muted); margin-bottom: 44px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer { background: var(--plum); color: var(--blush-200); padding: 80px 64px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  max-width: 1200px; margin: 0 auto 60px;
}
.footer-brand img { height: 80px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-tag { font-size: 14px; line-height: 1.7; opacity: 0.65; max-width: 280px; }
.footer-col h5 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--magenta-glow); margin-bottom: 22px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 14px; opacity: 0.75; transition: all 0.3s; }
.footer-col li:hover { opacity: 1; color: var(--magenta-glow); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--magenta); border-color: var(--magenta); transform: translateY(-2px); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; opacity: 0.5; letter-spacing: 0.5px;
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--magenta-glow); opacity: 1; }

/* ============ BOOKING / FORM PAGE ============ */
.page-section {
  padding: 140px 64px 80px;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at top right, rgba(216,30,91,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--blush-50) 0%, var(--blush-100) 100%);
}
.page-container { max-width: 720px; margin: 0 auto; }
.page-header { text-align: center; margin-bottom: 56px; }

.booking-card {
  background: white;
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 30px 80px rgba(216, 30, 91, 0.1);
  border: 1px solid rgba(216, 30, 91, 0.08);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--plum-soft); font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--plum);
  padding: 14px 16px; border: 1px solid rgba(216, 30, 91, 0.15);
  border-radius: 12px; background: var(--blush-50);
  transition: all 0.3s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--magenta);
  background: white; box-shadow: 0 0 0 4px rgba(216, 30, 91, 0.08);
}
.field textarea { min-height: 120px; resize: vertical; font-family: var(--sans); }
.field-hint { font-size: 12px; color: var(--plum-muted); }

.form-submit-row { margin-top: 32px; display: flex; justify-content: center; }
.form-submit-row .btn-primary { width: 100%; justify-content: center; max-width: 360px; }

.alert { padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; font-size: 14px; }
.alert-success { background: #ECF8F2; color: #1d6e4a; border: 1px solid #b8e0cb; }
.alert-error   { background: #FBE9EC; color: #9b1c2f; border: 1px solid #f0c5cc; }

/* Honeypot — visually hidden but not display:none (bots see it) */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes morph {
  0%, 100% { border-radius: 50% 50% 48% 52% / 60% 55% 45% 40%; }
  50% { border-radius: 48% 52% 55% 45% / 50% 60% 40% 50%; }
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav { padding: 16px 32px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(255,251,250,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(216, 30, 91, 0.1);
    padding: 16px 32px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(216, 30, 91, 0.08); }
  .nav-toggle { display: block; }
  .hero { grid-template-columns: 1fr; gap: 60px; padding: 130px 32px 80px; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .floating-badge-1 { left: 0; }
  .floating-badge-2 { right: 0; }
  .floating-badge-3 { right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services, .about, .testimonials, .cta-section, footer, .page-section {
    padding-left: 32px; padding-right: 32px;
  }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-text .section-title { text-align: center; }
  .about-text .section-sub { margin: 24px auto 0; }
  .about-stats { text-align: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .booking-card { padding: 40px 28px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero { padding: 110px 20px 60px; }
  .services, .about, .testimonials, .cta-section, footer, .page-section {
    padding-left: 20px; padding-right: 20px;
  }
  .service-card { padding: 36px 28px; }
  .about-img-acc { width: 60%; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-badge { padding: 10px 14px; }
  .badge-icon { width: 30px; height: 30px; font-size: 14px; }
}

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