/* ============================================
   MHD GARDENING – MAIN STYLESHEET
   Theme: Natural Luxury / Refined Green
   ============================================ */

:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d5a3d;
  --green-light: #4a8c5c;
  --green-pale: #e8f2ec;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --cream: #faf8f3;
  --white: #ffffff;
  --text-dark: #1a2820;
  --text-mid: #4a5e52;
  --text-light: #8a9e92;
  --border: #d4e2d8;
  --shadow: 0 4px 24px rgba(26,58,42,0.10);
  --shadow-lg: 0 12px 48px rgba(26,58,42,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.section-label {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: var(--green-mid);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,42,0.2);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--green-mid);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--green-mid);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s;
  cursor: pointer;
  text-align: center;
}
.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
}

.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
}
.logo-leaf { font-size: 1.4rem; }
.logo-accent { color: var(--green-light); }
.logo--light { color: var(--white); }
.logo--light .logo-accent { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-dark);
  background: var(--green-pale);
}
.nav-cta {
  background: var(--green-mid) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-cta.active { background: var(--green-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.2s;
}
.mobile-menu a:hover { background: var(--green-pale); }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,58,42,0.85) 0%,
    rgba(26,58,42,0.60) 50%,
    rgba(26,58,42,0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto 0 0;
  padding-left: max(2rem, calc((100vw - 1200px)/2));
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* BOOKING WIDGET */
.booking-widget {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 620px;
}
.widget-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}
.widget-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.widget-fields .field-group:last-child { grid-column: span 2; }
.widget-fields .field-group:nth-child(3) { grid-column: span 2; }

.field-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.field-group input,
.field-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
}
.field-group input:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--green-light);
}

.widget-btn {
  grid-column: span 2;
  background: var(--green-mid);
  color: var(--white);
  padding: 0.9rem;
  border-radius: 50px;
  border: none;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.widget-btn:hover { background: var(--green-dark); transform: translateY(-2px); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   WHY SECTION
   ============================================ */

.why {
  padding: 6rem 0;
  background: var(--cream);
}
.why .container { text-align: center; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ============================================
   SERVICES PREVIEW
   ============================================ */

.services-preview {
  padding: 5rem 0;
  background: var(--green-pale);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card--featured {
  border: 2px solid var(--green-mid);
  transform: scale(1.02);
}
.service-card--featured:hover { transform: scale(1.02) translateY(-6px); }
.service-img-wrap { height: 200px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-body { padding: 1.5rem; }
.service-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.service-tag--gold {
  background: var(--gold-light);
  color: #7a5c00;
}
.service-body h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}
.service-body p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.25rem; }
.service-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-mid);
  transition: color 0.2s;
}
.service-link:hover { color: var(--green-dark); }

/* ============================================
   PHOTO STRIP
   ============================================ */

.photo-strip {
  overflow: hidden;
  padding: 3rem 0;
  background: var(--white);
}
.strip-track {
  display: flex;
  gap: 1rem;
  animation: scroll-strip 30s linear infinite;
  width: max-content;
}
.strip-track img {
  height: 220px;
  width: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
@keyframes scroll-strip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--green-dark);
  padding: 4rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-inner h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-inner p { color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--text-dark);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 1rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.85rem; }

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70px;
}
.page-hero--short { height: 45vh; min-height: 300px; }
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.page-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* ============================================
   SERVICES DETAIL
   ============================================ */

.services-detail { padding: 5rem 0; }
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}
.svc-row:last-child { border-bottom: none; margin-bottom: 0; }
.svc-row--reverse .svc-img { order: 2; }
.svc-row--reverse .svc-text { order: 1; }
.svc-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.svc-text h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--green-dark);
  margin: 0.75rem 0 1rem;
}
.svc-text p { color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.8; }
.svc-includes {
  list-style: none;
  margin-bottom: 2rem;
}
.svc-includes li {
  padding: 0.4rem 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* ============================================
   BOOKING PAGE
   ============================================ */

.booking-section {
  padding: 4rem 0 6rem;
  background: var(--cream);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.booking-form h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 1.75rem;
}

/* FORMS GLOBAL */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(74,140,92,0.12);
}
.form-group textarea { resize: vertical; }

/* CALENDAR */
.calendar-wrap {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1.5px solid var(--border);
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--green-dark);
}
.cal-nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cal-nav:hover { background: var(--green-mid); color: var(--white); border-color: var(--green-mid); }
.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.5rem;
  text-align: center;
}
.cal-days-header span { font-size: 0.72rem; font-weight: 500; color: var(--text-light); padding: 4px 0; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text-dark);
  background: var(--white);
}
.cal-day:hover:not(.cal-day--past):not(.cal-day--empty) {
  background: var(--green-mid);
  color: var(--white);
}
.cal-day--selected { background: var(--green-dark) !important; color: var(--white) !important; font-weight: 700; }
.cal-day--today { border: 2px solid var(--green-light); }
.cal-day--past { color: var(--text-light); cursor: not-allowed; background: transparent; }
.cal-day--booked { background: #FEE2E2; color: #EF4444; cursor: not-allowed; text-decoration: line-through; position: relative; }
.cal-day--booked::after { content: 'Booked'; position: absolute; bottom: 1px; left: 50%; transform: translateX(-50%); font-size: 0.45rem; font-weight: 700; color: #EF4444; text-transform: uppercase; letter-spacing: 0.02em; text-decoration: none; }
.cal-day--empty { cursor: default; background: transparent; }
.cal-selected {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--green-mid);
  font-weight: 500;
  text-align: center;
}

/* BOOKING SIDEBAR */
.booking-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.sidebar-card h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.expect-list {
  counter-reset: steps;
  list-style: none;
}
.expect-list li {
  counter-increment: steps;
  padding: 0.5rem 0 0.5rem 2.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--green-pale);
}
.expect-list li:last-child { border-bottom: none; }
.expect-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--green-mid);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-contact p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1rem; }

/* SUCCESS STATE */
.booking-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.booking-success h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.booking-success p { color: var(--text-mid); margin-bottom: 0.5rem; }
.success-note { font-size: 0.9rem; }

/* CHECKBOX */
.checkbox-group { margin-top: 0; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green-mid);
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}
.signin-prompt {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.75rem;
}
.signin-prompt a { color: var(--green-mid); font-weight: 500; }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section { padding: 5rem 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.contact-info > p { color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.cc-icon { font-size: 1.5rem; }
.contact-card strong { display: block; color: var(--green-dark); font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-card span { color: var(--text-mid); font-size: 0.9rem; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 1.75rem;
}

/* ============================================
   SIGN UP PAGE
   ============================================ */

.signup-section { min-height: 100vh; display: flex; }
.signup-layout { display: flex; width: 100%; min-height: 100vh; }
.signup-left {
  width: 45%;
  background: var(--green-dark);
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.signup-left::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.signup-left-inner { position: relative; z-index: 1; }
.signup-left h2 {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--white);
  margin: 1.5rem 0 1rem;
}
.signup-left > .signup-left-inner > p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.signup-perks { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.perk span { color: var(--gold-light); font-weight: 700; }
.signup-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.7;
}

.signup-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
  background: var(--cream);
}
.signup-form-wrap {
  width: 100%;
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.signup-form-wrap h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

/* ============================================
   FORM STATUS & SERVICES GRID 4-UP
   ============================================ */

.form-status {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form-status--info  { background: #e8f2ec; color: var(--green-dark); }
.form-status--error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6c2; }

/* 4-column services grid on wider screens */
@media (min-width: 1025px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card--featured { transform: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured { transform: none; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { flex-direction: row; }
  .sidebar-card { flex: 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .svc-row { grid-template-columns: 1fr; gap: 2rem; }
  .svc-row--reverse .svc-img { order: unset; }
  .svc-row--reverse .svc-text { order: unset; }
  .contact-layout { grid-template-columns: 1fr; }
  .signup-left { width: 40%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .widget-fields { grid-template-columns: 1fr; }
  .widget-fields .field-group:last-child,
  .widget-fields .field-group:nth-child(3),
  .widget-btn { grid-column: span 1; }
  .cta-inner { flex-direction: column; text-align: center; }
  .booking-sidebar { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .signup-layout { flex-direction: column; }
  .signup-left { width: 100%; padding: 4rem 2rem; }
  .signup-right { padding: 2rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 1rem 3rem; }
  .hero-content { padding-left: 1rem; }
  .booking-widget { padding: 1.25rem; }
  .why-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1rem; }
  .cta-actions { flex-direction: column; width: 100%; }
}

/* HERO CTA BUTTONS */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.hero-btns .btn-primary {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}
.hero-btns .btn-ghost {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* MHD LOGO IMAGE */
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
