/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===== CSS Variables ===== */
:root {
  --cream: #fcf4ea;
  --cream-dark: #ede7da;
  --green-deep: #2e4f3f;
  --green-mid: #5b8c5a;
  --green-light: #7aaa6e;
  --green-pale:#c8dfc3;
  --text-body: #3d3d3d;
  --text-muted: #6b7c6b;
  --border: #d5cbb8;
  --white: #fdfaf5;
  --shadow-sm: 0 2px 8px rgba(46, 79, 63, 0.07);
  --shadow-md: 0 6px 20px rgba(46, 79, 63, 0.11);
  --shadow-lg: 0 12px 40px rgba(46, 79, 63, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Dropdown container */
li.dropdown {
  position: relative;
}

/* Hide dropdown by default */
li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  list-style: none;
  z-index: 999;
}

/* Show on hover */
li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown links */
li.dropdown .dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
}

li.dropdown .dropdown-menu li a:hover {
  background-color: #f0fdf4;
  color: #046C4E;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--cream);
  color: var(--green-deep);
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  zoom: 120%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

p {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
}

a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-deep);
}

/* ===== Navbar (Smaller Version) ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;        /* reduced from 22px 48px */
  background-color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(46, 79, 63, 0.08);
  transition: padding var(--transition), box-shadow var(--transition);
}

.navbar.shrink {
  padding: 8px 28px;         /* reduced from 10px 40px */
  box-shadow: var(--shadow-sm);
}

.logo img {
  height: 90px;              /* reduced from 140px */
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
}

.navbar.shrink .logo img {
  height: 60px;              /* reduced from 90px */
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 24px;                 /* reduced from 32px */
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--green-deep);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;        /* reduced from 0.95rem */
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--green-mid);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--green-mid);
}

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

/* ===== Buttons ===== */
.btn {
  background-color: var(--green-mid);
  color: white;
  border: none;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-block;
}

.btn:hover {
  background-color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: var(--green-deep);
  cursor: pointer;
  line-height: 1;
}

/* ===== Hero Section ===== */
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(252, 244, 234, 0.2) 0%,
    rgba(252, 244, 234, 0.1) 50%,
    rgba(46, 79, 63, 0.15) 100%
  );
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: heroReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes heroReveal {
  from { transform: scale(1.04); opacity: 0.7; }
  to   { transform: scale(1);    opacity: 1;   }
}

/* ===== About Section ===== */
.about {
  background-color: var(--cream);
  padding: 60px 48px;
}

.about .container {
  margin: 10px;
}

.about h2 {
  font-size: 2.6rem;
  color: var(--green-deep);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
}

.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--green-mid);
  margin-top: 12px;
  border-radius: 2px;
  margin-bottom: 0;
}

.about p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 12px;
}

.nsnz {
  width: 30%;
}

.khaipng {
  float: right;
  width: 40%;
  max-width: 500px;
  height: auto;
  margin: 0 0 24px 44px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.khaipng:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ===== Workshop Layout ===== */
.workshop-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.workshop-image img {
  width: 280px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.workshop-image img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.workshop-text {
  max-width: 900px;
}

.workshop-text .btn {
  display: inline-block;
  margin-top: 12px;
}

.button-row {
  text-align: right;
}

.right {
  text-align: right;
}


.wrapper {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: #2a2a2a;
  margin-bottom: 4px;
  text-align: center;
}

/* ===== Testimonial / Word Gallery ===== */
.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.margin {
  margin-left: 30px;
}

.margin h3 {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
}

.margin p {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

.quote {
  max-width: 500px;
  text-align: center;
  font-style: italic;
  font-weight: 500;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.7;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.testimonial-container button {
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--green-mid);
  transition: color var(--transition), transform var(--transition);
  line-height: 1;
}

.testimonial-container button:hover {
  color: var(--green-deep);
  transform: scale(1.15);
}

.word-item:hover {
  transform: scale(1.06);
  background-color: var(--cream-dark);
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition);
}
/* ===== Coaching / Nutrition Section ===== */
.showless {
  display: flex;
  justify-content: space-between;
  margin-right: 15px;
  align-items: center;
  gap: 15px;
  margin-left: 60px;
}

.showless h2 {
  font-size: 2.4rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--green-deep);
}

.showless h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--green-mid);
  margin-top: 10px;
  border-radius: 2px;
}

.hidden {
  display: none;
  animation: fadeSlideIn 0.4s ease both;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

#toggleBtn {
  background-color: var(--green-mid);
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background-color var(--transition), transform var(--transition);
}

#toggleBtn:hover {
  background-color: var(--green-deep);
  transform: translateY(-1px);
}

.arrow {
  font-size: 20px;
  color: var(--green-mid);
  margin-left: 5px;
  margin-bottom: 14px;
  transition: transform var(--transition);
}

.nutrition-section {
  padding: 60px 48px;
}

.nutrition-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.nutrition-images {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nutrition-images img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.nutrition-images img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.nutrition-content {
  width: 75%;
}

.nutrition-content h4 {
  color: var(--green-mid);
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.nutrition-content h2 {
  color: var(--green-deep);
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
}

.nutrition-content h3 {
  color: var(--green-deep);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  margin-top: 28px;
}

.nutrition-content p {
  line-height: 1.8;
  margin-bottom: 14px;
  color: var(--text-body);
  font-weight: 300;
}

/* ===== Info Cards (Recipes) ===== */
.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 28px;
  margin-top: 56px;
  padding: 0 24px;
}

.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  width: calc((100% / 3) - 80px);
  height: 380px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card:hover img {
  transform: scale(1.03);
}

.card p {
  color: var(--green-deep);
  font-size: 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
}

/* ===== More Recipes Link ===== */
.more-recipes {
  text-align: center;
  margin-top: 36px;
}

.more-recipes a {
  color: var(--green-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 3px;
}

.more-recipes a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--green-mid);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.more-recipes a:hover { color: var(--green-deep); }
.more-recipes a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== Coaching Page ===== */
.Coaching {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: 60px;
  animation: heroReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@media (max-width: 768px) {
  .Coaching {
    height: auto;
    min-height: 260px;
    max-height: 420px;
    object-fit: cover;
    object-position: center top;
  }
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 40px;
  color: var(--green-deep);
}

/* Bigger typography */
.bigger p {
  font-size: 1.1rem;
  font-weight: 300;
}

.bigger h3 {
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ===== CTA Box ===== */
.cta-section {
  width: 100%;
  background-color: var(--cream);
  padding: 24px 20px;
}

.cta-box {
  margin: 20px;
}

.cta-box h2 {
  font-size: 2.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--green-deep);
}

.cta-box h3 {
  margin-top: 26px;
  font-size: 1.3rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--green-deep);
  text-align: left;
}

.cta-box h4 {
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.cta-box h5 {
  font-size: 1.15rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.cta-section h6 {
  font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
}

.cta-box p {
  text-align: left;
  font-weight: 300;
}

.cta-box ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.cta-box li {
  margin: 7px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
}

.cta-box .btn {
  background-color: var(--green-mid);
  color: white;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cta-box .btn:hover {
  background-color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== Contact Section ===== */
.contact {
  background-color: var(--cream);
  padding: 64px 20px;
}

.contact-container {
  max-width: 600px;
  margin: auto;
  background-color: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
  animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact h2 {
  font-size: 2.4rem;
  color: var(--green-deep);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  margin-bottom: 10px;
}

.contact h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--green-mid);
  margin: 12px auto 22px;
  border-radius: 2px;
}

.contact-intro {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 28px;
}

.contact-form { text-align: left; }

.contact-form label {
  display: block;
  margin-top: 16px;
  color: var(--green-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  background: var(--cream);
  color: var(--green-deep);
  margin-top: 6px;
  outline: none;
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-light);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(122, 170, 110, 0.15);
}

.contact-form .btn {
  margin-top: 28px;
  width: 100%;
}

#formStatus {
  display: none;
  margin-top: 20px;
  color: var(--green-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--cream);
  text-align: center;
  padding: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  margin-top: 80px;
}

/* ===== Booking Page ===== */
.booking-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 44px 20px 64px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  font-style: normal;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}

.whats-included {
  background: #eef5ec;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid var(--green-pale);
}

.wi-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.wi-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.wi-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--green-deep);
  font-family: 'DM Sans', sans-serif;
}

.wi-item em { color: var(--text-muted); font-style: italic; }
.wi-icon { font-size: 1rem; flex-shrink: 0; }

/* Session cards */
.session-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.session-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  background: var(--white);
}

.session-card:hover {
  border-color: var(--green-light);
  background: #f8fbf7;
  transform: translateX(2px);
}

.session-card.selected {
  border-color: var(--green-mid);
  background: #f2f8f0;
}

.session-card input[type="radio"] {
  accent-color: var(--green-mid);
  margin-top: 3px;
}

.sc-info { flex: 1; }
.sc-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
}

.sc-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}

.sc-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: var(--green-mid);
  font-weight: 700;
  white-space: nowrap;
}

.best-value {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
}

.payg-breakdown {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-mid);
  font-family: 'DM Sans', sans-serif;
}

.timing-note {
  background: #eef5ec;
  border-left: 2px solid var(--green-light);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  color: #4a4a4a;
  line-height: 1.65;
  font-family: 'DM Sans', sans-serif;
}

.timing-note strong { color: var(--green-deep); }

/* Calendar */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cal-month {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-deep);
}

.cal-btn {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--green-deep);
  font-size: 0.9rem;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-btn:hover {
  background: var(--green-pale);
  border-color: var(--green-light);
  transform: scale(1.08);
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 6px;
}

.weekdays div {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
  padding: 6px 0;
  font-family: 'DM Sans', sans-serif;
}

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

.day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  color: var(--green-deep);
  position: relative;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.day:hover:not(.empty):not(.past):not(.weekend) {
  background: var(--green-pale);
  transform: scale(1.1);
}

.day.empty,
.day.weekend { pointer-events: none; color: #c8c0b0; }
.day.past { pointer-events: none; color: #c8c0b0; }
.day.day-off { pointer-events: none; color: #c8c0b0; }
.slot.slot-disabled { background: #f0ede8; color: #c0b8b0; border-color: #e0d8d0; cursor: not-allowed; text-decoration: line-through; opacity: 0.6; }
.day.today { font-weight: 700; color: var(--green-mid); }
.day.today::after { content: ''; position: absolute; bottom: 3px; width: 4px; height: 4px; background: var(--green-light); border-radius: 50%; }
.day.has-slots::before { content: ''; position: absolute; top: 3px; right: 3px; width: 4px; height: 4px; background: var(--green-light); border-radius: 50%; opacity: 0.7; }
.day.selected { background: var(--green-deep) !important; color: white !important; font-weight: 700; }
.day.selected::after { background: white; }
.day.selected::before { display: none; }

/* Time slots */
.slots-section {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: none;
}

.slots-section.visible {
  display: block;
  animation: fadeSlideIn 0.3s ease both;
}

.slots-date-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.slot {
  padding: 9px 4px;
  text-align: center;
  border: 1.5px solid var(--green-pale);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: all var(--transition);
  background: white;
  font-family: 'DM Sans', sans-serif;
}

.slot:hover:not(.booked) {
  background: var(--green-pale);
  border-color: var(--green-light);
  transform: translateY(-1px);
}

.slot.booked {
  background: var(--cream-dark);
  color: #b0a898;
  border-color: var(--border);
  cursor: not-allowed;
  text-decoration: line-through;
}

.slot.selected-slot {
  background: var(--green-deep);
  color: white;
  border-color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Right panel */
.right-panel { display: flex; flex-direction: column; gap: 0; }

/* Form */
.form-group { margin-bottom: 14px; }

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--green-deep);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-input:focus {
  border-color: var(--green-light);
  background: white;
  box-shadow: 0 0 0 3px rgba(122, 170, 110, 0.15);
}

textarea.form-input { resize: vertical; min-height: 80px; line-height: 1.5; }

/* Summary */
.summary {
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 0.83rem;
  border: 1px dashed var(--green-pale);
  display: none;
}

.summary.visible {
  display: block;
  animation: fadeSlideIn 0.3s ease both;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
}

.sum-row:last-child { border-bottom: none; font-weight: 700; padding-top: 8px; margin-top: 4px; }
.sum-key { color: var(--text-muted); }
.sum-val { color: var(--green-deep); font-weight: 600; text-align: right; font-size: 0.82rem; }

/* Book button */
.book-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--green-mid);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.book-btn:hover {
  background-color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.book-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}

/* Success modal */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 79, 63, 0.4);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.overlay.show { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  border: 1px solid var(--border);
  animation: floatIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
}

@keyframes floatIn {
  from { transform: translateY(24px) scale(0.93); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}

.modal-icon { font-size: 3rem; margin-bottom: 16px; }

.modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.modal-details {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: left;
  font-size: 0.85rem;
  margin-bottom: 24px;
  line-height: 1.8;
  font-family: 'DM Sans', sans-serif;
  color: var(--green-deep);
  border: 1px solid var(--border);
}

.modal-details strong { color: var(--green-deep); font-weight: 600; }

.modal-close {
  background-color: var(--green-mid);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
}

.modal-close:hover {
  background-color: var(--green-deep);
  transform: translateY(-1px);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
  .menu-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 85px;
    right: 16px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 20px 28px;
    text-align: right;
    border: 1px solid var(--border);
    animation: fadeSlideIn 0.25s ease both;
  }

  .nav-links.active { display: block;}

  .nav-links ul {
    flex-direction: column;
    gap: 18px;
  }

  .logo img { height: 80px; }
  .hero { height: 70vh; }
  .coaching-cards { grid-template-columns: 1fr; }
  .cta-box { padding: 30px 20px; }

  .about {
    padding: 40px 24px;
  }

  .nutrition-section {
    padding: 40px 24px;
  }

  .showless {
    margin-left: 24px;
    margin-right: 12px;
  }
}

@media (max-width: 900px) {
  .nutrition-container { flex-direction: column; }
  .nutrition-images, .nutrition-content { width: 100%; }

  .contact-container { padding: 28px 20px; }

  .khaipng {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    display: block;
  }

  .about .container { margin: 20px; }

  .nsnz {
    width: 50%;
  }

  .khaipng {
    width: 60%;
  }
}

@media (max-width: 768px) {
  body { zoom: 100%; }

  .booking-main { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .wi-items { grid-template-columns: 1fr; }

  .info-cards { flex-direction: column; align-items: center; }
  .card { width: 100%; max-width: 420px; height: auto; }

  .workshop-layout { flex-direction: column; }
  .workshop-image img { width: 100%; }

  .navbar { padding: 16px 20px; }
  .navbar.shrink { padding: 10px 16px; }

  .hero {
    height: auto;
    min-height: 280px;
    max-height: 520px;
  }

  .hero-image img {
    height: 100%;
    min-height: 280px;
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 480px) {
  .contact-container { padding: 22px 16px; }
  .modal { padding: 36px 24px; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
}
