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

:root {
  --cream: #FAF8F4;
  --white: #FFFFFF;
  --sage: #7B9E87;
  --sage-light: #A8C4B0;
  --sage-dark: #4E7A5F;
  --charcoal: #1C1C1E;
  --gray: #6B6B6B;
  --gray-light: #E8E4DF;
  --gold: #C8A96E;
  --gold-light: #EDD9A3;
  --red: #E05252;
  --shadow: 0 4px 24px rgba(28,28,30,0.08);
  --shadow-lg: 0 12px 48px rgba(28,28,30,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--sage); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--gray);
  transition: var(--transition); letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-cta {
  background: var(--sage) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--sage-dark) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--charcoal);
  border-radius: 2px; transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, #EEF4F0 100%);
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(123,158,135,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,169,110,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { max-width: 620px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--gray-light);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 500; color: var(--sage-dark);
  margin-bottom: 28px; box-shadow: var(--shadow);
  animation: fadeInUp 0.6s ease both;
}
.hero-badge::before { content: '✦'; color: var(--gold); }
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600; color: var(--charcoal);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero h1 em { color: var(--sage); font-style: italic; }
.hero p {
  font-size: 1.1rem; color: var(--gray);
  margin-bottom: 36px; max-width: 480px;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.btn-primary {
  background: var(--sage);
  color: white; border: none; cursor: pointer;
  padding: 16px 32px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(123,158,135,0.35);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(123,158,135,0.45); }
.btn-secondary {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--gray-light); cursor: pointer;
  padding: 16px 32px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--sage); color: var(--sage-dark); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--charcoal);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--gray); margin-top: 4px; }
.hero-image {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 42%; max-width: 560px;
  animation: fadeInRight 0.8s 0.3s ease both;
}
.hero-image-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-image-card::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--sage-light), var(--gold-light));
  z-index: -1;
}
.service-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.service-preview-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.service-preview-item:hover { background: var(--sage-light); transform: scale(1.03); }
.service-preview-item .icon { font-size: 1.8rem; margin-bottom: 6px; }
.service-preview-item span { font-size: 0.75rem; font-weight: 500; color: var(--charcoal); }
.floating-badge {
  position: absolute;
  background: white; border-radius: 12px; padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
}
.floating-badge.top-right { top: -20px; right: -20px; }
.floating-badge.bottom-left { bottom: -20px; left: -20px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--charcoal);
  padding: 20px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem; font-weight: 500;
}
.trust-item .icon { font-size: 1.1rem; }

/* ── SECTIONS ── */
.section { padding: 96px 5%; }
.section-label {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--sage); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; color: var(--charcoal);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem; color: var(--gray);
  max-width: 520px; line-height: 1.7;
}
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── SERVICES GRID ── */
.services-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 20px; border-radius: 50px;
  border: 1.5px solid var(--gray-light);
  background: white; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem; font-weight: 500; color: var(--gray);
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--sage); border-color: var(--sage); color: white;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: white; border-radius: var(--radius);
  padding: 28px; cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid var(--gray-light);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sage-light); }
.service-card:hover::before { opacity: 0.04; }
.service-card.exclusive { border-color: var(--gold-light); }
.exclusive-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), #B8945E);
  color: white; font-size: 0.65rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(123,158,135,0.12); transform: scale(1.1); }
.service-card h3 {
  font-size: 1.05rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 8px;
}
.service-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }
.service-price {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}
.price-from { font-size: 0.75rem; color: var(--gray); }
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--sage-dark);
}
.book-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sage); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition);
}
.service-card:hover .book-arrow { transform: translateX(4px); }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--charcoal); }
.how-it-works .section-label { color: var(--sage-light); }
.how-it-works .section-title { color: white; }
.how-it-works .section-subtitle { color: rgba(255,255,255,0.6); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 40px; left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 1px; background: linear-gradient(90deg, var(--sage), var(--gold));
}
.step-card { text-align: center; position: relative; }
.step-number {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: white;
  position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(123,158,135,0.4);
}
.step-card h3 { font-size: 1.2rem; color: white; margin-bottom: 10px; }
.step-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── BOOKING FORM ── */
.booking-section { background: white; }
.booking-container {
  max-width: 860px; margin: 0 auto;
  background: var(--cream);
  border-radius: 24px; padding: 48px;
  box-shadow: var(--shadow-lg);
}
.booking-steps-nav {
  display: flex; align-items: center; margin-bottom: 40px;
  overflow-x: auto; gap: 0;
}
.booking-step-nav {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.step-nav-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-light); color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.83rem; font-weight: 700; transition: var(--transition);
  flex-shrink: 0;
}
.step-nav-num.active { background: var(--sage); color: white; }
.step-nav-num.done { background: var(--sage-dark); color: white; }
.step-nav-line {
  width: 40px; height: 2px; background: var(--gray-light); flex-shrink: 0;
  transition: var(--transition);
}
.step-nav-line.done { background: var(--sage); }
.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeInUp 0.4s ease; }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; margin-bottom: 8px;
}
.step-subtitle { font-size: 0.88rem; color: var(--gray); margin-bottom: 28px; }
.service-select-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px;
}
.service-option {
  background: white; border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm); padding: 16px; cursor: pointer;
  transition: var(--transition); text-align: center;
}
.service-option:hover, .service-option.selected {
  border-color: var(--sage); background: rgba(123,158,135,0.06);
}
.service-option .icon { font-size: 1.6rem; margin-bottom: 8px; }
.service-option span { font-size: 0.8rem; font-weight: 500; color: var(--charcoal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  background: white; color: var(--charcoal);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(123,158,135,0.15);
}
.property-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.property-option {
  background: white; border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm); padding: 16px; cursor: pointer;
  transition: var(--transition); text-align: center;
}
.property-option:hover, .property-option.selected {
  border-color: var(--sage); background: rgba(123,158,135,0.06);
}
.property-option .icon { font-size: 1.4rem; margin-bottom: 6px; }
.property-option span { font-size: 0.78rem; font-weight: 500; display: block; }
.size-options {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.size-option {
  background: white; border: 2px solid var(--gray-light);
  border-radius: 8px; padding: 12px 8px; cursor: pointer;
  transition: var(--transition); text-align: center;
  font-size: 0.8rem; font-weight: 500;
}
.size-option:hover, .size-option.selected { border-color: var(--sage); background: rgba(123,158,135,0.06); }
.eco-toggle {
  display: flex; align-items: center; justify-content: space-between;
  background: white; border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm); padding: 16px 20px;
}
.toggle-info h4 { font-size: 0.9rem; font-weight: 600; }
.toggle-info p { font-size: 0.78rem; color: var(--gray); }
.toggle-switch {
  position: relative; width: 50px; height: 26px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; background: var(--gray-light);
  border-radius: 50px; cursor: pointer; transition: var(--transition);
}
.toggle-slider::before {
  content: ''; position: absolute;
  width: 20px; height: 20px; background: white; border-radius: 50%;
  left: 3px; top: 3px; transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.toggle-switch input:checked + .toggle-slider { background: var(--sage); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }
.price-summary {
  background: white; border-radius: var(--radius-sm); padding: 24px; margin: 20px 0;
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--gray-light);
  font-size: 0.88rem;
}
.price-row:last-child { border: none; font-weight: 700; font-size: 1rem; }
.promo-input {
  display: flex; gap: 10px; margin: 16px 0;
}
.promo-input input { flex: 1; }
.promo-input button {
  background: var(--charcoal); color: white; border: none; cursor: pointer;
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
}
.payment-methods {
  display: flex; gap: 10px; margin-bottom: 20px;
}
.payment-method {
  flex: 1; background: white; border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm); padding: 12px; cursor: pointer;
  text-align: center; transition: var(--transition);
  font-size: 0.83rem; font-weight: 500;
}
.payment-method:hover, .payment-method.selected { border-color: var(--sage); }
.booking-nav {
  display: flex; justify-content: space-between; margin-top: 32px; gap: 12px;
}
.btn-back {
  background: white; color: var(--charcoal);
  border: 1.5px solid var(--gray-light); cursor: pointer;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
}
.btn-back:hover { border-color: var(--sage); color: var(--sage-dark); }
.btn-next {
  background: var(--sage); color: white; border: none; cursor: pointer;
  padding: 14px 36px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  transition: var(--transition); flex: 1; max-width: 280px;
}
.btn-next:hover { background: var(--sage-dark); transform: translateY(-1px); }

/* ── TESTIMONIALS ── */
.testimonials { background: white; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.author-name { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.author-type { font-size: 0.75rem; color: var(--gray); }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto;
}
.pricing-card {
  background: white; border-radius: var(--radius);
  padding: 36px; border: 1.5px solid var(--gray-light);
  transition: var(--transition); position: relative;
}
.pricing-card.featured {
  background: var(--charcoal); border-color: var(--charcoal);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured h3 { color: white; }
.pricing-card.featured .price-main { color: white; }
.pricing-card.featured .price-period { color: rgba(255,255,255,0.5); }
.pricing-card.featured li { color: rgba(255,255,255,0.7); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: white;
  padding: 4px 16px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; }
.price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--charcoal); line-height: 1;
}
.price-period { font-size: 0.83rem; color: var(--gray); margin-bottom: 28px; }
.pricing-card ul { margin: 0 0 28px; }
.pricing-card li {
  font-size: 0.85rem; color: var(--gray);
  padding: 7px 0; border-bottom: 1px solid var(--gray-light);
  display: flex; align-items: center; gap: 8px;
}
.pricing-card li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: white; border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--sage-light); }
.faq-question {
  width: 100%; padding: 20px 24px; background: none; border: none;
  text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600;
  color: var(--charcoal); transition: var(--transition);
}
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0; transition: var(--transition);
}
.faq-item.open .faq-arrow { background: var(--sage); color: white; transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.88rem; color: var(--gray); line-height: 1.75;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 72px 5% 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: white; margin-bottom: 14px;
}
.footer-logo span { color: var(--sage-light); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition); color: white;
}
.social-link:hover { background: var(--sage); transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: white; margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; }

/* ── WHATSAPP ── */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
}

/* ── SUCCESS MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(28,28,30,0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000; opacity: 0; pointer-events: none; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: 24px; padding: 48px;
  max-width: 480px; width: 90%; text-align: center;
  transform: scale(0.9); transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-icon { font-size: 3.5rem; margin-bottom: 20px; }
.modal h2 { font-size: 1.8rem; margin-bottom: 10px; }
.modal p { font-size: 0.9rem; color: var(--gray); margin-bottom: 28px; line-height: 1.7; }
.modal-ref {
  background: var(--cream); border-radius: 10px; padding: 12px 20px;
  font-size: 0.9rem; font-weight: 700; color: var(--sage-dark);
  margin-bottom: 24px; display: inline-block;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px) translateY(-50%); }
  to { opacity: 1; transform: translateX(0) translateY(-50%); }
}
.animate { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-image { display: none; }
  .hero-content { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .property-grid { grid-template-columns: 1fr 1fr; }
  .size-options { grid-template-columns: repeat(3, 1fr); }
  .booking-container { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 20px; }
  .hero-stats { gap: 24px; }
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--cream); padding: 100px 5% 40px;
  flex-direction: column; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.4rem; font-family: 'Cormorant Garamond', serif;
  font-weight: 600; color: var(--charcoal);
  padding-bottom: 20px; border-bottom: 1px solid var(--gray-light);
}

/* ── REVIEW SYSTEM ── */
.review-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px; align-items: center;
  background: white; border-radius: 20px;
  padding: 32px 40px; margin-bottom: 36px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-light);
}
.big-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 700;
  color: var(--charcoal); line-height: 1;
}
.big-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.review-bars { display: flex; flex-direction: column; gap: 8px; }
.review-bar-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; color: var(--gray);
}
.review-bar-row span:first-child { width: 24px; text-align: right; }
.review-bar-row span:last-child { width: 32px; }
.rbar-track {
  flex: 1; height: 8px; background: var(--gray-light);
  border-radius: 4px; overflow: hidden;
}
.rbar-fill {
  height: 100%; background: var(--gold);
  border-radius: 4px;
  transition: width 1s ease;
}
.review-summary-cta { text-align: center; }

/* Review filters */
.review-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.review-filter-btn {
  padding: 8px 18px; border-radius: 50px;
  border: 1.5px solid var(--gray-light);
  background: white; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 500; color: var(--gray);
  transition: var(--transition);
}
.review-filter-btn.active,
.review-filter-btn:hover {
  background: var(--charcoal); border-color: var(--charcoal); color: white;
}

/* Review card enhancements */
.review-card-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 12px;
}
.verified-badge {
  font-size: 0.7rem; font-weight: 600;
  color: var(--sage-dark);
  background: rgba(123,158,135,0.1);
  padding: 3px 10px; border-radius: 20px;
}
.review-cats-mini {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.review-cats-mini span {
  font-size: 0.7rem; color: var(--gray);
  background: var(--cream); padding: 3px 8px;
  border-radius: 6px;
}
.recommends-badge {
  margin-left: auto; font-size: 0.72rem;
  color: var(--sage-dark); font-weight: 600;
  flex-shrink: 0;
}

/* ── REVIEW MODAL ── */
.review-stars-input {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 8px;
}
.star-btn {
  font-size: 2.8rem; cursor: pointer; color: var(--gray-light);
  transition: all 0.15s; line-height: 1;
  user-select: none;
}
.star-btn.hovered, .star-btn.selected { color: var(--gold); transform: scale(1.15); }

.review-categories {
  background: var(--cream); border-radius: 12px; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-cat-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.review-cat-row span { font-size: 0.83rem; color: var(--charcoal); font-weight: 500; }
.mini-stars { display: flex; gap: 4px; }
.mini-star {
  font-size: 1.2rem; cursor: pointer; color: var(--gray-light);
  transition: all 0.15s; user-select: none;
}
.mini-star.hovered, .mini-star.selected { color: var(--gold); }

/* Photo upload zone */
.photo-upload-zone {
  border: 2px dashed var(--gray-light);
  border-radius: 12px; padding: 20px;
  text-align: center; cursor: pointer;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.photo-upload-zone:hover { border-color: var(--sage); background: rgba(123,158,135,0.04); }
.photo-preview {
  width: 100%; height: 140px; object-fit: cover;
  border-radius: 8px;
}

/* New review card (live) */
.testimonial-card.new-review {
  border-color: var(--sage-light);
  animation: newReviewPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes newReviewPop {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.new-review-badge {
  display: inline-block;
  background: var(--sage); color: white;
  font-size: 0.65rem; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-left: 8px; vertical-align: middle;
}

@media (max-width: 768px) {
  .review-summary {
    grid-template-columns: 1fr;
    text-align: center; padding: 24px;
  }
  .review-bar-row { justify-content: center; }
  .review-summary-cta .btn-primary { width: 100%; }
}
