/* ===================================================================
   52 HORSES ÉQUESTRE — CREAM THEME
   Warm cream background, dark brown text, large italic serif headings
   =================================================================== */

/* ======= RESET & BASE ======= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --cream:       #f0ece0;
  --cream-light: #f5f2e8;
  --white:       #ffffff;
  --brown:       #2c2420;
  --brown-mid:   #4a3f38;
  --brown-light: #6b6560;
  --olive:       #6b7a5a;
  --olive-light: #8a9a7a;
  --border:      rgba(44,36,32,0.12);
  --btn-bg:      #1a1a1a;
}

body {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  background: var(--cream);
  color: var(--brown);
  font-size: 16px;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
}

/* ======= NAVBAR ======= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brown);
  line-height: 1;
  font-style: normal;
}
.nav-logo-sub {
  font-size: 0.52rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-top: 2px;
}

/* Logo image variant */
.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--brown-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brown); }
.nav-links a.active {
  position: relative;
  font-weight: 700;
  color: var(--brown);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brown);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--brown-light);
  cursor: pointer;
}
.btn-book-now {
  background: var(--btn-bg);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-book-now:hover { opacity: 0.85; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--brown);
}

/* =====================================================
   RESPONSIVE — TABLET + PHONE (single consolidated block)
   ====================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 340px;
  margin-top: 72px;
  overflow: hidden;
}
.hero.hero-centered { height: 65vh; min-height: 420px; }
.hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.32) 60%, rgba(0,0,0,0.48) 100%);
}
.hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  right: 60px;
  color: #fff;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 10px;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: #fff;
}
.hero-breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }

/* Homepage hero variant (centered) */
.hero-centered .hero-content {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  left: 0; right: 0;
}
.hero-centered .hero-content h1 { font-size: 5rem; }

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  justify-content: center;
}
.btn-ghost-white {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.15); }



/* ======= HOMEPAGE SERVICES GRID ======= */
.services {
  padding: 80px 0;
  background: var(--cream);
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 10px;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 48px;
  line-height: 1.15;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center center;
  display: block;
  flex-shrink: 0;
}
.service-card-body {
  padding: 18px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: normal;
  color: var(--brown);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-price-rows { margin-bottom: 12px; flex-shrink: 0; }
.service-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--brown-light);
}
.service-price-row:first-child { border-top: 1px solid var(--border); }
.service-price-row strong {
  color: var(--brown);
  font-weight: 700;
}
.service-explore {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brown-light);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
  padding-top: 8px;
  flex-shrink: 0;
}
.service-explore:hover { color: var(--brown); }

.service-card .btn-book {
  display: block;
  width: 100%;
  background: var(--btn-bg);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: auto;
  flex-shrink: 0;
}
.service-card .btn-book:hover { opacity: 0.85; }



/* ======= PACKAGE DETAIL PAGE ======= */

/* Description section */
.pkg-description {
  padding: 80px 32px;
  background: var(--white);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.pkg-description .section-eyebrow { margin-bottom: 16px; }
.pkg-description h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 28px;
  line-height: 1.2;
}
.pkg-description p {
  font-size: 1.05rem;
  color: var(--brown-light);
  line-height: 1.8;
  margin-bottom: 24px;
}
.pkg-duration {
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 700;
  text-align: left;
}
.pkg-duration span {
  color: var(--olive);
  font-weight: 400;
}

/* Choose your package */
.pkg-pricing {
  padding: 80px 0;
  background: var(--cream);
}
.pkg-pricing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--brown);
  text-align: center;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

/* Both cards get top padding to reserve space for badge */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 46px 32px 28px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}
/* Card without badge needs same top padding as card with badge */
.pricing-card:not(.best-value) {
  padding-top: 46px;
}
.pricing-card.best-value {
  border-color: var(--olive);
}
.best-value-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-sessions {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 10px;
}
.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
}
.pricing-currency {
  font-size: 1rem;
  color: var(--brown-light);
  margin-left: 6px;
  font-family: 'Inter', sans-serif;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0 24px;
}
.btn-book {
  display: block;
  width: 100%;
  background: var(--btn-bg);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-book:hover { opacity: 0.85; }



/* Terms & Regulations */
.pkg-terms {
  padding: 70px 0;
  background: var(--cream);
}
.pkg-terms h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 30px;
}
.terms-list {
  list-style: none;
}
.terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--brown-light);
  line-height: 1.7;
}
.terms-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--olive);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ---- About This Program — matches Terms styling ---- */
.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.3;
}
.about-desc {
  font-size: 0.95rem;
  color: var(--brown-light);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

/* ======= FOOTER ======= */
.footer {
  background: var(--cream);
  padding: 40px 0 0;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}
.footer-col { flex: 1; }
.footer-left { text-align: left; }
.footer-mid { text-align: center; }
.footer-right { text-align: right; }
.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.footer-socials a {
  color: var(--brown);
  font-size: 1.1rem;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-socials a:hover { opacity: 1; }

.footer-contact-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 8px;
}
.footer-col p:not(.footer-contact-label) {
  font-size: 0.85rem;
  color: var(--brown-light);
  margin-bottom: 4px;
}
.footer-divider {
  height: 1px;
  background: var(--border);
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
  font-size: 0.78rem;
  color: var(--brown-light);
  text-align: center;
}


/* ===================================================================
   52 HORSES THEME — ADDED COMPONENTS (booking form, whatsapp, gallery,
   coming-soon, single-price, about, responsive polish)
   =================================================================== */

/* ------- WhatsApp button (horses-for-sale, rental, contact) ------- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-whatsapp:hover { opacity: 0.88; }
.btn-whatsapp i { font-size: 1.1rem; }

/* ------- Breadcrumb strip (booking) ------- */
.pkg-breadcrumb { padding: 96px 0 0; }
.pkg-breadcrumb-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--brown-light);
}
.pkg-breadcrumb-row a { color: var(--brown-light); text-decoration: none; }
.pkg-breadcrumb-row a:hover { color: var(--brown); }
.pkg-breadcrumb-row .current { color: var(--brown); font-weight: 600; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--olive); margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 400; color: var(--brown); line-height: 1.15;
}
.services-intro {
  font-size: 1rem; color: var(--brown-light); max-width: 560px;
  margin: 8px auto 0; line-height: 1.7;
}

/* ------- BOOKING FORM ------- */
.booking { padding: 20px 0 90px; background: var(--cream); }

.selected-package-banner {
  max-width: 760px; margin: 0 auto 34px;
  background: var(--white); border: 1px solid var(--olive);
  border-left: 4px solid var(--olive);
  border-radius: 6px; padding: 20px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.selected-package-banner .spb-label {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--olive); margin-bottom: 4px;
}
.selected-package-banner .spb-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--brown);
}
.selected-package-banner .spb-price { color: var(--brown-light); font-size: 0.9rem; margin-top:2px; }
.selected-package-banner .spb-change {
  font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--brown-light); text-decoration: underline; white-space: nowrap;
}

.booking-form {
  max-width: 760px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 42px 40px;
}
.form-row {
  display: flex; gap: 22px; margin-bottom: 22px;
}
.form-group { flex: 1; display: flex; flex-direction: column; }
.form-group.full-width { width: 100%; }
.booking-form label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--brown-mid); margin-bottom: 8px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--brown);
  background: var(--cream-light);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 13px 14px; width: 100%; transition: border-color 0.2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none; border-color: var(--olive);
}
.booking-form textarea { resize: vertical; }

.package-info-card {
  background: var(--cream-light); border: 1px solid var(--border);
  border-radius: 6px; padding: 16px 18px;
}
.package-info-card p { font-size: 0.9rem; color: var(--brown-light); margin-bottom: 8px; }
.package-info-card p:last-child { margin-bottom: 0; }
.package-info-card strong { color: var(--brown); }

.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--btn-bg); color: #fff;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 34px; border: none; border-radius: 6px; cursor: pointer;
  margin-top: 8px; transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }

.form-success {
  display: none; margin-top: 22px; padding: 16px 20px;
  background: rgba(107,122,90,0.12); border: 1px solid var(--olive);
  border-radius: 6px; color: var(--brown); font-size: 0.92rem; line-height: 1.6;
}
.form-success a { color: var(--olive); }
.time-status { font-size: 0.82rem; margin-top: 8px; color: var(--brown-light); }
.time-status.error { color: #b4462f; }

/* ------- GALLERY (livery "Our Stables") ------- */
.stable-gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 900px; margin: 0 auto;
}
.stable-gallery img {
  width: 100%; height: 260px; object-fit: cover; border-radius: 8px; display: block;
}

/* ------- SINGLE PRICE CARD (horse-training, hand-ride) ------- */
.single-price-wrap { display: flex; justify-content: center; }
.single-price-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 40px 48px; text-align: center; min-width: 300px;
}
.single-price-card .sp-label {
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brown-light); margin-bottom: 12px;
}
.single-price-card .sp-amount {
  font-family: 'Cormorant Garamond', serif; font-size: 3.6rem; color: var(--brown); line-height: 1;
}
.single-price-card .sp-amount span { font-family:'Inter',sans-serif; font-size: 1rem; color: var(--brown-light); margin-left: 6px; }
.single-price-card .pricing-divider { margin: 26px 0 22px; }

/* ------- COMING SOON ------- */
.coming-soon-tag {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 2rem; color: #fff; margin-top: 10px;
}

/* ------- ABOUT PAGE ------- */
.about-block { padding: 80px 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.about-grid img { width: 100%; height: 420px; object-fit: cover; border-radius: 10px; }
.about-grid h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 400;
  color: var(--brown); margin-bottom: 20px; line-height: 1.2;
}
.about-grid p { color: var(--brown-light); line-height: 1.8; margin-bottom: 18px; }

/* ===================================================================
   RESPONSIVE — PHONE & TABLET ≤900px
   Ultra-compact: everything fits on ONE screen, minimal scrolling
   =================================================================== */
@media (max-width: 900px) {

  /* ---- NAVBAR ---- */
  .navbar { padding: 0 10px; height: 50px; }
  .nav-logo-name { font-size: 0.9rem; letter-spacing: 2px; }
  .nav-logo-sub { font-size: 0.42rem; letter-spacing: 1px; }
  .nav-links { display: none; }
  .nav-links.open { top: 50px;
    display: flex; flex-direction: column;
    position: absolute; top: 50px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 8px 14px; gap: 0; z-index: 999;
    box-shadow: 0 10px 28px rgba(44,36,32,0.12);
    transform: none;
  }
  .nav-links.open li { padding: 8px 0; border-bottom: 1px solid var(--border); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a { font-size: 0.85rem; }
  .hamburger { display: block; }
  .nav-right { gap: 4px; }
  .nav-lang { display: none; }
  .btn-book-now { padding: 6px 12px; font-size: 0.58rem; letter-spacing: 1px; }

  /* ---- HERO — as small as possible ---- */
  .hero { height: 22vh; min-height: 150px; margin-top: 50px; }
  .hero.hero-centered { height: 24vh; min-height: 170px; }
  .hero img { object-fit: cover; object-position: center center; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.5) 100%); }
  .hero-content { bottom: 12px; left: 12px; right: 12px; }
  .hero-content h1 { font-size: 1.5rem; }
  .hero-eyebrow { font-size: 0.5rem; letter-spacing: 1.5px; margin-bottom: 4px; }
  .hero-breadcrumb { font-size: 0.5rem; letter-spacing: 1px; margin-bottom: 6px; }
  .hero-breadcrumb a { font-size: 0.5rem; }
  .hero-centered .hero-content { top: 50%; transform: translateY(-50%); text-align: center; left: 0; right: 0; bottom: auto; }
  .hero-centered .hero-content h1 { font-size: 1.6rem; }
  .hero-ctas { margin-top: 10px; gap: 8px; }
  .hero-ctas a { padding: 7px 12px; font-size: 0.55rem; letter-spacing: 1px; }
  .hero-cta-row { flex-direction: column; gap: 6px; }
  .hero-cta-row a { padding: 7px 12px; font-size: 0.55rem; }
  .btn-ghost-white { padding: 7px 12px; font-size: 0.55rem; }
  .coming-soon-tag { font-size: 1.1rem; }

  /* ---- CONTAINER ---- */
  .container { padding: 0 10px; }

  /* ---- SECTION HEADINGS ---- */
  .section-heading { font-size: 1.05rem; margin-bottom: 6px; }
  .section-eyebrow { font-size: 0.5rem; letter-spacing: 1px; margin-bottom: 1px; }

  /* ---- HOME SERVICES — 3 columns x 2 rows, fits one screen ---- */
  .services { padding: 12px 0 6px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .service-card { border-radius: 7px; display: flex; flex-direction: column; box-shadow: 0 2px 8px rgba(44,36,32,0.06); }
  .service-card-img { height: 82px; object-fit: cover; object-position: center center; display: block; flex-shrink: 0; }
  .service-card-body { padding: 7px 8px 9px; flex: 1; display: flex; flex-direction: column; }
  .service-card-title { font-size: 0.78rem; margin-bottom: 4px; line-height: 1.12; font-weight: 700; font-style: normal; }
  .service-desc {
    font-size: 0.5rem; line-height: 1.28;
    margin-bottom: 6px; text-align: left; flex-shrink: 0;
  }
  .service-explore { font-size: 0.52rem; letter-spacing: 0.5px; margin-top: auto; padding-top: 3px; display: inline-block; flex-shrink: 0; }
  .service-price-rows { margin-bottom: 6px; flex-shrink: 0; }
  .service-price-row { padding: 3px 0; font-size: 0.55rem; }
  .service-card .btn-book { padding: 7px; font-size: 0.52rem; letter-spacing: 0.5px; margin-top: auto; flex-shrink: 0; }

  /* ---- PRICING ---- */
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pricing-card { padding: 28px 10px 14px; display: flex; flex-direction: column; }
  .pricing-card:not(.best-value) { padding-top: 28px; }
  .pricing-amount { font-size: 1.8rem; }
  .pricing-sessions { font-size: 0.58rem; letter-spacing: 0.5px; margin-bottom: 4px; }
  .pricing-divider { margin: 12px 0 10px; }
  .best-value-badge { font-size: 0.5rem; padding: 3px 8px; top: -10px; }

  /* ---- PACKAGE PAGES ---- */
  .pkg-pricing { padding: 16px 0; }
  .pkg-pricing h2 { font-size: 1.2rem; margin-bottom: 10px; }
  .pkg-description { padding: 16px 0; }
  .pkg-description h2 { font-size: 1.2rem; margin-bottom: 8px; }
  .pkg-description p { font-size: 0.72rem; line-height: 1.4; margin-bottom: 8px; }
  .pkg-duration { font-size: 0.72rem; margin-bottom: 2px; }

  /* ---- BOOKING FORM ---- */
  .booking { padding: 8px 0 20px; }
  .booking-form { padding: 16px 12px; border-radius: 6px; }
  .form-row { flex-direction: column; gap: 8px; margin-bottom: 10px; }
  .booking-form label { font-size: 0.62rem; margin-bottom: 3px; }
  .booking-form input, .booking-form select, .booking-form textarea { 
    padding: 8px 10px; font-size: 0.8rem; border-radius: 4px; 
  }
  .btn-submit { padding: 10px 18px; font-size: 0.62rem; margin-top: 4px; }
  .selected-package-banner { 
    flex-direction: column; align-items: flex-start; 
    padding: 10px 12px; margin-bottom: 12px; border-left-width: 3px;
  }
  .selected-package-banner .spb-name { font-size: 1rem; }
  .selected-package-banner .spb-label { font-size: 0.55rem; }
  .selected-package-banner .spb-price { font-size: 0.72rem; }
  .pkg-breadcrumb { padding: 60px 0 0; }
  .pkg-breadcrumb-row { font-size: 0.58rem; }
  .section-tag { font-size: 0.55rem; letter-spacing: 1.5px; margin-bottom: 4px; }
  .section-title { font-size: 1.5rem; }
  .services-intro { font-size: 0.72rem; }

  /* ---- SINGLE PRICE CARD ---- */
  .single-price-wrap { padding: 0; }
  .single-price-card { min-width: 0; width: 100%; padding: 18px 14px; border-radius: 6px; }
  .single-price-card .sp-amount { font-size: 2rem; }
  .single-price-card .sp-label { font-size: 0.55rem; margin-bottom: 6px; }
  .single-price-card .pricing-divider { margin: 14px 0 10px; }

  /* ---- GALLERY ---- */
  .stable-gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .stable-gallery img { height: 90px; border-radius: 5px; object-fit: cover; }

  /* ---- ABOUT ---- */
  .about-block { padding: 16px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 12px; }
  .about-grid img { height: 150px; border-radius: 6px; object-fit: cover; }
  .about-grid h2 { font-size: 1.3rem; margin-bottom: 8px; }
  .about-grid p { font-size: 0.72rem; line-height: 1.45; margin-bottom: 6px; }

  /* ---- TERMS ---- */
  .pkg-terms { padding: 16px 0; }
  .pkg-terms h2 { font-size: 1.1rem; margin-bottom: 10px; }
  .terms-list li { font-size: 0.68rem; margin-bottom: 8px; gap: 8px; }
  .terms-list li::before { width: 5px; height: 5px; margin-top: 6px; }
  .about-heading { font-size: 1.1rem; margin-bottom: 10px; }
  .about-desc { font-size: 0.68rem; }

  /* ---- FOOTER — compact horizontal row ---- */
  .footer { padding: 12px 0 0; }
  .footer-row { flex-direction: row; align-items: center; gap: 6px; padding-bottom: 10px; }
  .footer-col { flex: 1; min-width: 0; }
  .footer-left { text-align: left; }
  .footer-mid { text-align: center; }
  .footer-right { text-align: right; }
  .footer-contact-label { margin-bottom: 3px; font-size: 0.5rem; letter-spacing: 1px; }
  .footer-col p:not(.footer-contact-label) { font-size: 0.56rem; margin-bottom: 1px; word-break: break-word; line-height: 1.3; }
  .footer-socials { gap: 10px; }
  .footer-socials a { font-size: 1rem; }
  .footer-bottom { padding: 8px 0; font-size: 0.55rem; }

  /* ---- WHATSAPP ---- */
  .btn-whatsapp { padding: 8px 16px; font-size: 0.6rem; border-radius: 20px; }

  /* ---- MISC ---- */
  .about-values-grid { grid-template-columns: repeat(2, 1fr) !important; }
  
  /* Inline-styled sections on lesson pages */
  section[style*="padding:80px"], section[style*="padding: 80px"] { padding: 16px 8px !important; }
  section[style*="padding:70px"], section[style*="padding: 70px"] { padding: 12px 0 !important; }
  /* Override inline hero text styles */
  .hero-content h1[style] { font-size: 2rem !important; }
  .hero-centered .hero-content h1[style] { font-size: 1.8rem !important; }
  .hero-centered .hero-content p[style] { font-size: 0.65rem !important; max-width: 90% !important; }

}


/* ===================================================================
   RESPONSIVE — SMALL PHONE ≤420px
   Everything visible on one screen, zero scroll needed
   =================================================================== */
@media (max-width: 420px) {

  .navbar { padding: 0 6px; height: 46px; }
  .nav-logo-name { font-size: 0.8rem; letter-spacing: 1px; }
  .btn-book-now { padding: 5px 8px; font-size: 0.52rem; }
  .nav-links.open { top: 46px; }
  .hamburger { font-size: 1.1rem; }

  /* Hero — barely there, just for brand feel */
  .hero { height: 18vh; min-height: 120px; margin-top: 46px; }
  .hero.hero-centered { height: 20vh; min-height: 140px; }
  .hero-content h1 { font-size: 1.2rem; }
  .hero-centered .hero-content h1 { font-size: 1.3rem; }
  .hero-content { bottom: 8px; left: 8px; right: 8px; }
  .hero-eyebrow { font-size: 0.45rem; letter-spacing: 1px; margin-bottom: 2px; }
  .hero-breadcrumb { font-size: 0.45rem; margin-bottom: 4px; }
  .hero-ctas { margin-top: 6px; gap: 6px; }
  .hero-ctas a { padding: 5px 10px; font-size: 0.5rem; }
  .coming-soon-tag { font-size: 0.95rem; }

  .container { padding: 0 6px; }

  /* Services — 3 columns compact */
  .service-card { display: flex; flex-direction: column; }
  .services { padding: 10px 0 6px; }
  .section-heading { font-size: 1.05rem; margin-bottom: 6px; }
  .section-eyebrow { font-size: 0.5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .service-card-img { height: 68px; object-fit: cover; object-position: center center; display: block; flex-shrink: 0; }
  .service-card-body { padding: 5px 6px 7px; flex: 1; display: flex; flex-direction: column; }
  .service-card-title { font-size: 0.68rem; margin-bottom: 3px; line-height: 1.08; font-weight: 700; font-style: normal; }
  .service-desc { font-size: 0.44rem; line-height: 1.2; text-align: left; margin-bottom: 4px; flex-shrink: 0; }
  .service-price-row { padding: 2px 0; font-size: 0.48rem; flex-shrink: 0; }
  .service-card .btn-book { padding: 6px; font-size: 0.46rem; margin-top: auto; flex-shrink: 0; }
  .service-explore { font-size: 0.46rem; margin-top: auto; padding-top: 2px; flex-shrink: 0; }

  /* Pricing single column */
  .pricing-grid { grid-template-columns: 1fr; gap: 6px; }
  .pricing-card { padding: 22px 10px 12px; display: flex; flex-direction: column; }
  .pricing-card:not(.best-value) { padding-top: 22px; }
  .pricing-amount { font-size: 1.5rem; }
  .best-value-badge { font-size: 0.45rem; padding: 2px 6px; top: -8px; }

  /* Booking */
  .booking-form { padding: 10px 8px; }
  .booking-form label { font-size: 0.56rem; }
  .booking-form input, .booking-form select, .booking-form textarea { 
    padding: 6px 8px; font-size: 0.75rem; 
  }
  .pkg-breadcrumb { padding: 54px 0 0; }

  /* Gallery */
  .stable-gallery { gap: 4px; }
  .stable-gallery img { height: 75px; }

  /* About */
  .about-grid img { height: 110px; }
  .about-grid h2 { font-size: 1.1rem; }
  .about-grid p { font-size: 0.65rem; }

  /* Values cards single column */
  .about-values-grid { grid-template-columns: 1fr !important; }

  /* Single price */
  .single-price-card { padding: 14px 10px; }
  .single-price-card .sp-amount { font-size: 1.6rem; }

  /* Footer */
  .footer { padding: 8px 0 0; }
  .footer-row { gap: 4px; padding-bottom: 8px; }
  .footer-contact-label { font-size: 0.45rem; margin-bottom: 2px; }
  .footer-col p:not(.footer-contact-label) { font-size: 0.5rem; }
  .footer-socials { gap: 8px; }
  .footer-socials a { font-size: 0.9rem; }
  .footer-bottom { padding: 6px 0; font-size: 0.48rem; }

  /* WhatsApp */
  .btn-whatsapp { padding: 6px 12px; font-size: 0.55rem; }

  /* Terms */
  .pkg-terms { padding: 10px 0; }
  .pkg-terms h2 { font-size: 1rem; }
  .terms-list li { font-size: 0.62rem; margin-bottom: 6px; }
  .about-heading { font-size: 1rem; }
  .about-desc { font-size: 0.62rem; }

  /* Package */
  .pkg-description h2 { font-size: 1.1rem; }
  .pkg-pricing h2 { font-size: 1.1rem; }
  .pkg-description { padding: 10px 0; }
  .pkg-pricing { padding: 10px 0; }

  /* Breadcrumb / section */
  .pkg-breadcrumb-row { font-size: 0.5rem; }
  .section-title { font-size: 1.3rem; }
  .services-intro { font-size: 0.65rem; }
  .hero-content h1[style] { font-size: 1.4rem !important; }
  .hero-centered .hero-content h1[style] { font-size: 1.3rem !important; }
  .hero-centered .hero-content p[style] { font-size: 0.55rem !important; max-width: 92% !important; }


}


/* ===================================================================
   RTL — Arabic language support
   =================================================================== */
html[dir="rtl"] .navbar {
  direction: rtl;
}
html[dir="rtl"] .nav-links {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
html[dir="rtl"] .nav-right {
  direction: ltr; /* keep btn-book readable */
}
html[dir="rtl"] .nav-logo {
  text-align: right;
}

/* ===================================================================
   LANGUAGE VISIBILITY — one language only. CSS rules, no JS needed.
   =================================================================== */
/* Arabic text HIDDEN by default */
.lang-ar, .lang-btn-en { display: none !important; }
html[dir="rtl"] .lang-en, html[dir="rtl"] .lang-btn-ar { display: none !important; }
html[dir="rtl"] .lang-ar, html[dir="rtl"] .lang-btn-en { display: inline !important; }
.lang-ar[style*="display:none"], .lang-btn-en[style*="display:none"] { display: none !important; }
html[dir="rtl"] .lang-en[style*="display:none"], html[dir="rtl"] .lang-btn-ar[style*="display:none"] { display: none !important; }

/* Language toggle button */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--brown-light);
  cursor: pointer;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 10px;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s, border-color 0.2s;
}
.lang-toggle:hover { color: var(--brown); border-color: var(--brown); }
.lang-toggle i { font-size: 0.75rem; }

/* RTL adjustments */
html[dir="rtl"] .services-grid,
html[dir="rtl"] .pricing-grid,
html[dir="rtl"] .about-grid,
html[dir="rtl"] .stable-gallery {
  direction: rtl;
}
html[dir="rtl"] .hero-content {
  text-align: right;
  left: 60px;
  right: 60px;
}
html[dir="rtl"] .hero-centered .hero-content {
  text-align: center;
}
html[dir="rtl"] .service-card-body {
  text-align: right;
}
html[dir="rtl"] .service-desc,
html[dir="rtl"] .pricing-sessions,
html[dir="rtl"] .section-eyebrow,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .pkg-description,
html[dir="rtl"] .about-grid p,
html[dir="rtl"] .footer-contact,
html[dir="rtl"] .footer-bottom {
  direction: rtl;
}
html[dir="rtl"] .btn-book-now {
  direction: ltr;
}
html[dir="rtl"] .form-row {
  direction: rtl;
}
html[dir="rtl"] .booking-form label {
  text-align: right;
}
html[dir="rtl"] .booking-form input,
html[dir="rtl"] .booking-form select,
html[dir="rtl"] .booking-form textarea {
  text-align: right;
}
html[dir="rtl"] .pkg-breadcrumb-row {
  direction: rtl;
}

/* RTL mobile */
@media (max-width: 900px) {
  html[dir="rtl"] .nav-links.open {
    left: 0;
    right: 0;
    text-align: right;
  }
  html[dir="rtl"] .nav-links {
    left: auto;
    right: auto;
    transform: none;
  }
  html[dir="rtl"] .hero-content {
    left: 12px;
    right: 12px;
  }
  .lang-toggle { 
    font-size: 0.58rem; 
    padding: 4px 7px; 
    gap: 2px;
  }
  .lang-toggle i { font-size: 0.6rem; }
}
@media (max-width: 420px) {
  html[dir="rtl"] .hero-content {
    left: 8px;
    right: 8px;
  }
  .lang-toggle { font-size: 0.5rem; padding: 3px 5px; }
  .lang-toggle i { font-size: 0.5rem; }
}

/* ===================================================================
   UI/UX POLISH — subtle motion & depth (desktop + tablet)
   =================================================================== */
.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(44,36,32,0.14);
}
.service-card-img { transition: transform 0.4s ease; }
.service-card { overflow: hidden; }
.service-card:hover .service-card-img { transform: scale(1.05); }

.pricing-card {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(44,36,32,0.16);
}

.btn-book, .btn-submit, .btn-whatsapp, .btn-book-now, .service-card .btn-book {
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.btn-book:active, .btn-submit:active, .service-card .btn-book:active { transform: scale(0.98); }

.stable-gallery img {
  transition: transform 0.4s ease;
}
.stable-gallery img:hover { transform: scale(1.04); }

.nav-links a { transition: color 0.2s ease; }

/* Smooth scroll for in-page anchors */
html { scroll-behavior: smooth; }

/* Focus states for accessibility */
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(107,122,90,0.15);
}

/* ===================================================================
   UI/UX POLISH v2 — clickable cards, reveal animation, refined motion
   =================================================================== */

/* Scroll-reveal: fade + rise into view */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Clickable card affordance */
.service-card { cursor: pointer; position: relative; }
.service-card:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; }

/* Explore arrow slides on card hover */
.service-explore { position: relative; }
.service-card:hover .service-explore { color: var(--brown); }
.service-card:hover .service-explore::after {
  content: ''; 
}

/* Subtle darkening veil on image hover for depth */
.service-card-img { transition: transform 0.5s ease, filter 0.4s ease; }
.service-card:hover .service-card-img { transform: scale(1.06); filter: brightness(1.04); }

/* Book button: arrow nudge feel */
.service-card .btn-book, .btn-book {
  transition: opacity 0.2s ease, transform 0.15s ease, letter-spacing 0.2s ease;
}
.service-card:hover .btn-book { letter-spacing: 2.5px; }

/* Pricing card lift refined */
.pricing-card { will-change: transform; }
.pricing-card.best-value { position: relative; }
.pricing-card.best-value:hover { transform: translateY(-6px); }

/* Nav link underline grow */
.nav-links a { position: relative; }
.nav-links a:not(.active)::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: var(--olive);
  transition: width 0.25s ease;
}
.nav-links a:not(.active):hover::after { width: 100%; }

/* WhatsApp button pulse-free subtle lift */
.btn-whatsapp { transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }

/* Hero content gentle fade on load (opacity only — never touches centering transforms) */
.hero-content { animation: heroFade 1.1s ease both; }
@keyframes heroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
  .hero-content { animation: none; }
  * { scroll-behavior: auto; }
}

/* ===================================================================
   UI/UX POLISH v3 — premium finishing touches (client-ready)
   =================================================================== */

/* Decorative flanking lines on section eyebrows */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 26px; height: 1px;
  background: var(--olive);
  opacity: 0.55;
}

/* Buttons: elegant sliding-fill on hover */
.btn-book, .btn-submit, .service-card .btn-book, .btn-book-now {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-book::before, .btn-submit::before, .service-card .btn-book::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  z-index: -1;
}
.btn-book:hover::before, .btn-submit:hover::before, .service-card .btn-book:hover::before {
  transform: scaleX(1);
}

/* Best-value pricing card: soft olive glow + accent border */
.pricing-card.best-value {
  border: 1.5px solid var(--olive);
  box-shadow: 0 10px 34px rgba(107,122,90,0.18);
}

/* Service card image: subtle gradient veil for depth */
.service-card { cursor: pointer; position: relative; }
.service-card-img { position: relative; }
.service-card-body { position: relative; z-index: 1; background: var(--white); }

/* Refined heading rhythm */
.section-heading, .pkg-pricing h2, .pkg-description h2, .section-title {
  letter-spacing: 0.3px;
}

/* Pricing amount: gentle emphasis */
.pricing-amount { transition: color 0.25s ease; }
.pricing-card:hover .pricing-amount { color: var(--olive); }

/* Back-to-top floating button (injected by JS) */
#backToTop {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 900;
  box-shadow: 0 6px 20px rgba(44,36,32,0.28);
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--olive); }
@media (max-width: 700px) {
  #backToTop { width: 40px; height: 40px; bottom: 16px; right: 16px; font-size: 1rem; }
}

/* Link hover micro-interaction on footer + explore */
.footer-socials a { transition: transform 0.2s ease, opacity 0.2s ease; }
.footer-socials a:hover { transform: translateY(-2px); }

/* ===================================================================
   CLIENT REQUESTS — hide service descriptions + smaller footer
   =================================================================== */

/* 1) Service cards: image + title only (description hidden, structure kept) */
.service-desc { display: none !important; }
.service-card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card-title { margin-bottom: 0 !important; }
@media (max-width: 900px) {
  .service-card-body { padding: 9px 9px 11px; gap: 5px; }
}
@media (max-width: 420px) {
  .service-card-body { padding: 7px 7px 9px; gap: 4px; }
}

/* 2) Smaller footer */
.footer { padding: 22px 0 0 !important; }
.footer-row { padding-bottom: 14px !important; }
.footer-contact-label { font-size: 0.6rem !important; margin-bottom: 4px !important; }
.footer-col p:not(.footer-contact-label) { font-size: 0.72rem !important; margin-bottom: 2px !important; }
.footer-socials { gap: 14px !important; }
.footer-socials a { font-size: 0.95rem !important; }
.footer-bottom { padding: 9px 0 !important; font-size: 0.66rem !important; }
@media (max-width: 900px) {
  .footer { padding: 12px 0 0 !important; }
  .footer-row { padding-bottom: 8px !important; gap: 5px !important; }
  .footer-contact-label { font-size: 0.46rem !important; margin-bottom: 2px !important; }
  .footer-col p:not(.footer-contact-label) { font-size: 0.5rem !important; }
  .footer-socials { gap: 9px !important; }
  .footer-socials a { font-size: 0.85rem !important; }
  .footer-bottom { padding: 6px 0 !important; font-size: 0.46rem !important; }
}

/* ===================================================================
   CLIENT BATCH 2 — footer spacing, smaller buttons, nav grouping
   =================================================================== */

/* Item 5: group Book Now + language toggle near the hamburger (mobile) */
@media (max-width: 900px) {
  .navbar { justify-content: flex-end; gap: 8px; }
  .nav-logo { margin-right: auto; }
  .nav-right { gap: 7px; }
  .hamburger { margin-left: 2px; }
  .lang-toggle { font-size: 0.58rem !important; padding: 5px 8px !important; }
  .btn-book-now { font-size: 0.58rem; padding: 7px 12px; letter-spacing: 1px; }
}

/* Item 3: hero CTA buttons smaller + evenly aligned */
@media (max-width: 900px) {
  .hero-ctas { gap: 10px !important; margin-top: 14px !important; flex-wrap: nowrap; justify-content: center; }
  .hero-ctas a {
    flex: 0 0 auto !important; text-align: center; white-space: nowrap;
  }
}

/* Item 1: footer sits lower with more space above + much smaller copyright line */
.footer { margin-top: 44px !important; padding-top: 30px !important; }
.footer-bottom { font-size: 0.58rem !important; }
@media (max-width: 900px) {
  .footer { margin-top: 30px !important; padding-top: 14px !important; }
  .footer-bottom { font-size: 0.4rem !important; padding: 5px 0 !important; letter-spacing: 0 !important; line-height: 1.4; }
}
@media (max-width: 420px) {
  .footer-bottom { font-size: 0.36rem !important; }
}

/* ===================================================================
   CLIENT BATCH 3 (revised) — everything on ONE screen, no scroll
   =================================================================== */

/* NO flex-body hack. Footer sits right after content with small space. */
body { min-height: auto; display: block; }
.footer { margin-top: 0 !important; }

/* Compact the homepage so hero + 6 cards + footer fit one mobile screen */
@media (max-width: 900px) {
  .hero { height: 24vh !important; min-height: 160px !important; }
  .hero-content h1 { font-size: 1.7rem !important; }
  .hero-centered .hero-content h1 { font-size: 1.9rem !important; }
  .hero-content p { font-size: 0.72rem !important; line-height: 1.4 !important; }

  .services { padding: 14px 0 12px !important; }
  .section-heading { font-size: 1.5rem !important; margin-bottom: 12px !important; }
  .services-grid { gap: 9px !important; row-gap: 11px !important; }
  .service-card-img { height: 100px !important; }
  .service-card-body { padding: 9px 10px 11px !important; gap: 5px !important; }
  .service-card-title { font-size: 0.98rem !important; line-height: 1.15 !important; margin-bottom: 3px !important; }
  .service-explore { font-size: 0.62rem !important; }

  .footer { padding: 10px 0 0 !important; }
  .footer-row { padding-bottom: 8px !important; }
  .footer-bottom { padding: 5px 0 !important; font-size: 0.4rem !important; }
}
@media (max-width: 420px) {
  .hero { height: 20vh !important; min-height: 140px !important; }
  .hero-content h1 { font-size: 1.4rem !important; }
  .services-grid { gap: 7px !important; row-gap: 8px !important; }
  .service-card-img { height: 86px !important; }
  .service-card-title { font-size: 0.88rem !important; }
}

/* Card spacing on desktop stays comfortable */
.services-grid { gap: 16px; }

/* Hero buttons — small compact boxes (sized to text, NOT stretched) */
.hero-btn {
  display: inline-block;
  padding: 11px 22px;
  font-size: 0.66rem;
  letter-spacing: 1.5px;
  text-decoration: none;
}
@media (max-width: 900px) {
  .hero-ctas { gap: 10px !important; margin-top: 14px !important; justify-content: center; flex-wrap: nowrap; }
  .hero-btn {
    padding: 8px 14px !important;
    font-size: 0.52rem !important;
    letter-spacing: 0.6px !important;
    flex: 0 0 auto; text-align: center; white-space: nowrap;
  }
}
@media (max-width: 420px) {
  .hero-btn { padding: 7px 11px !important; font-size: 0.46rem !important; letter-spacing: 0.3px !important; }
}

/* ===== Multi-session picker ===== */
.session-picker-header { margin-bottom: 14px; }
.session-picker-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--brown); }
.session-picker-count { font-size: 0.85rem; color: var(--olive); font-weight: 600; margin-top: 4px; }
.session-picker-add { background: #f5f2e8; border-radius: 12px; padding: 14px; margin-bottom: 12px; }
.session-picker-add .form-row { margin-bottom: 0; gap: 10px; }
.btn-add-session { background: var(--olive); color: #fff; border: none; padding: 10px 18px; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 0.82rem; white-space: nowrap; }
.btn-add-session:hover { opacity: 0.9; }
.btn-add-session:disabled { opacity: 0.4; cursor: not-allowed; }
.picked-sessions-list { display: flex; flex-direction: column; gap: 6px; }
.picked-session-item { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid #e5ddcf; border-radius: 10px; padding: 10px 14px; font-size: 0.85rem; }
.picked-session-item .session-num { color: var(--olive); font-weight: 700; margin-right: 10px; }
.picked-session-item .session-info { flex: 1; }
.picked-session-item .btn-remove-session { background: none; border: none; color: #a71d2a; cursor: pointer; font-size: 1rem; padding: 4px 8px; }
.picked-session-item .btn-remove-session:hover { background: #f8d7da; border-radius: 6px; }
@media (max-width: 600px) {
  .session-picker-add .form-row { flex-direction: column; }
  .btn-add-session { width: 100%; text-align: center; }
}
