:root {
  --navy-primary: #173A66;
  --navy-deep: #0C2240;
  --navy-light: #224d81;
  --gold: #B48738;
  --soft-white: #F7F7F5;
  --light-gray: #EEF1F5;
  --text-primary: #162336;
  --text-secondary: #5B6577;
  --white: #ffffff;
  --border: rgba(12, 34, 64, 0.12);
  --font-primary: 'Poppins', Arial, sans-serif;
  --font-secondary: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 10px 30px rgba(10, 26, 52, 0.06);
  --shadow-md: 0 18px 50px rgba(10, 26, 52, 0.10);
  --shadow-lg: 0 25px 70px rgba(10, 26, 52, 0.16);
  --transition: 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-secondary);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

h1, h2, h3, h4, h5, h6,
.logo,
.footer-logo,
.btn,
.nav-link,
.section-label,
.stat-number-large,
.booking-price,
.hero-proof-item strong {
  font-family: var(--font-primary);
}

p, li, .book-desc, .module-desc, .program-desc, .testimonial-quote, .contact-desc, .section-subtitle, .about-text, .faq-answer, .contact-method-value {
  font-family: var(--font-secondary);
}

.container {
  width: min(1250px, calc(100% - 48px));
  margin: 0 auto;
}

.section { padding: 110px 0; }
.section-light { background: var(--soft-white); }
.section-dark { background: linear-gradient(180deg, var(--navy-primary) 0%, var(--navy-deep) 100%); color: var(--white); }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 92px;
  display: flex;
  align-items: center;
  transition: background-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition), transform var(--transition);
}
.navbar.scrolled {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 0;
  transition: padding var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), border-radius var(--transition), transform var(--transition);
}
.navbar.scrolled .nav-container {
  padding: 14px 24px;
  background: rgba(247, 247, 245, 0.94);
  border: 1px solid rgba(12, 34, 64, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(10, 26, 52, 0.08);
  backdrop-filter: blur(12px);
  transform: translateY(4px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
}
.navbar.scrolled .logo { color: var(--navy-deep); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255,255,255,0.86);
  position: relative;
}
.navbar.scrolled .nav-link { color: var(--text-secondary); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.navbar.scrolled .nav-link:hover,
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link:hover { color: var(--navy-deep); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-menu-btn span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.navbar.scrolled .mobile-menu-btn span { background: var(--navy-deep); }
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--navy-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.navbar.scrolled .btn-secondary,
.booking-secondary-btn {
  border-color: var(--navy-primary);
  color: var(--navy-primary);
  background: transparent;
}
.booking-secondary-btn:hover,
.navbar.scrolled .btn-secondary:hover {
  background: var(--navy-primary);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(180, 135, 56, 0.14), transparent 30%),
    radial-gradient(circle at 85% 22%, rgba(255,255,255,0.06), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.badge-text {
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.hero-subtitle {
  margin-top: 22px;
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 590px;
}
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-proof-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: none;
  text-align: left;
}

.hero-proof-item strong {
  color: var(--white);
  font-size: 1.85rem;
  line-height: 1;
}

.hero-proof-item span {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
}

.hero-hrdc-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.hero-hrdc-badge {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 10px 14px;
  border-radius: 18px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-hrdc-badge img {
  width: auto;
  height: 120px;
  object-fit: contain;
}
.hero-proof-item strong { color: var(--white); font-size: 1rem; }
.hero-proof-item span { color: rgba(255,255,255,0.68); font-size: 0.9rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-mask {
  width: min(100%, 440px);
  aspect-ratio: 0.82;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
  clip-path: inset(0 100% 0 0 round 24px);
  transition: clip-path 1s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-image-mask.revealed { clip-path: inset(0 0 0 0 round 24px); }
.hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-stats-card {
  position: absolute;
  left: -18px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(247,247,245,0.98);
  color: var(--navy-deep);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow-md);
}
.stat-icon { font-size: 1.6rem; font-weight: 700; color: var(--navy-primary); }
.stat-text { display: flex; flex-direction: column; }
.stat-label { font-size: 0.76rem; color: var(--text-secondary); }
.stat-value { font-size: 0.9rem; font-weight: 600; }
.hero-decorative-circle {
  position: absolute;
  right: -22px;
  top: 12%;
  width: 108px; height: 108px;
  border-radius: 50%;
  border: 1px solid rgba(180, 135, 56, 0.42);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.section-label-light { color: #d5b16c; }
.section-title {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}
.section-title-light { color: var(--white); }
.section-subtitle {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 1.02rem;
}
.section-subtitle-light { color: rgba(255,255,255,0.72); }
.section-subtitle-center { max-width: 650px; margin-left: auto; margin-right: auto; }

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.about-image-frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid rgba(180, 135, 56, 0.45);
  border-radius: 24px;
  z-index: -1;
}
.about-content { display: flex; flex-direction: column; gap: 18px; }
.about-text {
  color: var(--text-secondary);
  font-size: 1rem;
  text-align: justify;
}
.about-quote {
  margin-top: 8px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(180, 135, 56, 0.06);
  border-radius: 0 16px 16px 0;
}
.about-quote p { font-size: 1.02rem; color: var(--navy-primary); }

.benefits-grid,
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.benefit-card,
.reason-card,
.testimonial-card,
.module-card,
.faq-item,
.contact-method,
.booking-side-card,
.program-card,
.book-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.benefit-card,
.reason-card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover,
.reason-card:hover,
.testimonial-card:hover,
.module-card:hover,
.book-card:hover,
.contact-method:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(23,58,102,0.08);
  color: var(--navy-primary);
  font-weight: 700;
}
.benefit-card h3,
.reason-card h3,
.module-title,
.book-title,
.booking-side-title {
  font-family: var(--font-primary);
  letter-spacing: -0.03em;
}
.benefit-card h3,
.reason-card h3 { font-size: 1.25rem; line-height: 1.2; margin-bottom: 10px; }
.benefit-card p,
.reason-card p { color: var(--text-secondary); }

.training-slider { margin-bottom: 36px; }
.slider-container {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}
.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}
.slider-slide {
  flex: 0 0 100%;
  aspect-ratio: 16 / 8.8;
}
.slider-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.slider-btn:hover { background: rgba(255,255,255,0.16); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.26);
}
.slider-dot.active { background: var(--gold); transform: scale(1.15); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.module-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.11);
  border-radius: 22px;
  padding: 28px;
}
.module-number {
  display: inline-block;
  margin-bottom: 14px;
  color: #d5b16c;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.module-title { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.module-desc { color: rgba(255,255,255,0.72); }

.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 22px;
  padding: 30px;
}
.testimonial-quote {
  font-size: 1.02rem;
  color: var(--navy-deep);
  margin-bottom: 20px;
}
.testimonial-meta {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.books-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.book-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
}
.book-image-wrapper {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background: linear-gradient(135deg, rgba(23,58,102,0.05), rgba(23,58,102,0.12));
}
.book-glow,
.book-glow-alt {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.9;
}
.book-glow { background: rgba(180, 135, 56, 0.22); left: -18px; bottom: -10px; }
.book-glow-alt { background: rgba(23,58,102,0.16); right: -18px; top: -10px; }
.book-image {
  position: relative;
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
  border-radius: 8px;
}
.book-content {
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.book-title { font-size: 1.55rem; color: var(--navy-deep); }
.book-subtitle { margin-top: 6px; color: var(--gold); font-weight: 600; font-size: 0.92rem; }
.book-desc { margin-top: 16px; color: var(--text-secondary); }
.book-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--navy-primary);
  font-weight: 600;
}
.book-link svg { width: 16px; height: 16px; }
.book-card {
  align-items: stretch;
}

.book-content {
  padding: 42px 34px;
}

.book-title {
  margin-bottom: 14px;
}

.book-subtitle,
.book-desc {
  margin-top: 12px;
}

.book-desc {
  line-height: 1.85;
  padding-right: 10px;
}

.book-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stats { padding: 86px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-number-large {
  display: inline-block;
  color: var(--white);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.stat-suffix {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
}
.stat-label-large {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}

.faq-container { max-width: 900px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition), padding var(--transition);
}
.faq-answer p {
  overflow: hidden;
  color: var(--text-secondary);
  padding: 0 24px 0;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding: 0 24px 22px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); display: inline-block; }

.contact { background: var(--soft-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 32px;
  align-items: start;
}
.contact-content .section-label,
.contact-content .section-title,
.contact-content .contact-desc { text-align: left; }
.contact-desc { color: var(--text-secondary); margin-top: 14px; max-width: 620px; }
.booking-highlight-card {
  margin-top: 28px;
  background: linear-gradient(180deg, var(--navy-primary) 0%, var(--navy-deep) 100%);
  border-radius: 24px;
  padding: 28px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.booking-price-wrap { margin-bottom: 24px; }
.booking-price-label {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.booking-price {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.booking-price-note { display: inline-block; margin-top: 10px; color: rgba(255,255,255,0.7); }
.booking-points { display: grid; gap: 12px; }
.booking-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
}
.booking-point-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex: 0 0 10px;
}
.booking-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.booking-methods { display: grid; gap: 16px; }
.booking-side-card,
.contact-method {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
}
.booking-side-card-primary {
  background: linear-gradient(180deg, #fffdf7 0%, #f3eee2 100%);
}
.booking-side-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.booking-side-title { font-size: 1.5rem; color: var(--navy-deep); }
.booking-side-desc { margin-top: 10px; color: var(--text-secondary); }
.booking-mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.booking-pill {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(23,58,102,0.08);
  color: var(--navy-primary);
  font-size: 0.85rem;
  font-weight: 600;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-method-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,58,102,0.08);
  color: var(--navy-primary);
  flex: 0 0 46px;
}
.contact-method-icon svg { width: 22px; height: 22px; }
.contact-method-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-method-value { color: var(--navy-deep); font-weight: 600; margin-top: 3px; }

.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 34px 0 24px;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-size: 1.15rem; font-weight: 700; }
.footer-tagline { margin-top: 6px; color: rgba(255,255,255,0.66); font-size: 0.9rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-link { color: rgba(255,255,255,0.76); font-size: 0.92rem; }
.footer-link:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
}
.social-link svg { width: 18px; height: 18px; fill: var(--white); }
.footer-bottom { padding-top: 18px; text-align: center; }
.footer-copyright { color: rgba(255,255,255,0.5); font-size: 0.84rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.revealed { opacity: 1; transform: translate(0, 0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .4s; }

@media (max-width: 1100px) {
  .hero-container,
  .about-grid,
  .contact-grid,
  .book-card { grid-template-columns: 1fr; }
  .hero-content,
  .contact-content .section-label,
  .contact-content .section-title,
  .contact-content .contact-desc { text-align: center; }
  .hero-proof-grid { max-width: 760px; margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-image-mask { max-width: 380px; }
  .hero-stats-card { left: 50%; transform: translateX(-50%); bottom: -18px; }
  .hero-decorative-circle { display: none; }
  .about-image-frame { display: none; }
  .book-content { padding: 0 28px 28px; }
}

@media (max-width: 960px) {
  .benefits-grid,
  .reasons-grid,
  .testimonials-grid,
  .modules-grid,
  .stats-grid,
  .books-grid-two { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 84px 0; }
  .nav-links,
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(247,247,245,0.98);
    box-shadow: var(--shadow-md);
  }
  .nav-links.mobile-open .nav-link { color: var(--navy-deep); }
  .hero { min-height: auto; }
  .hero-container { padding-top: 120px; padding-bottom: 70px; }
  .hero-title { font-size: 2.5rem; }
  .hero-proof-grid,
  .benefits-grid,
  .reasons-grid,
  .testimonials-grid,
  .modules-grid,
  .stats-grid,
  .books-grid-two { grid-template-columns: 1fr; }
  .hero-proof-grid { gap: 12px; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 2.1rem; }
  .slider-slide { aspect-ratio: 16 / 10; }
  .booking-cta-row,
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; }
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 480px) {
  .container { width: min(1200px, calc(100% - 32px)); }
  .hero-title { font-size: 2.15rem; }
  .booking-price { font-size: 2.45rem; }
  .hero-stats-card { width: calc(100% - 32px); justify-content: center; }
}

.section-subtitle-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header { text-align: center; margin-bottom: 56px; }

.outcomes { background: var(--white); overflow: clip; }
.outcomes-container { max-width: 1250px; }
.outcomes-header { max-width: 860px; margin-left: auto; margin-right: auto; }
.outcomes-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
  padding-bottom: 24px;
}
.outcome-stack-card {
  position: sticky;
  top: 110px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  min-height: 360px;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(12,34,64,0.08);
  box-shadow: 0 18px 45px rgba(13, 31, 56, 0.10);
}
.outcome-stack-card:nth-child(1) { top: 110px; }
.outcome-stack-card:nth-child(2) { top: 128px; }
.outcome-stack-card:nth-child(3) { top: 146px; }
.outcome-stack-card:nth-child(4) { top: 164px; }
.outcome-stack-media {
  position: relative;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(23,58,102,0.16), rgba(180,135,56,0.16));
}
.outcome-stack-image {
  width: 100%;
  height: 100%;
  min-height: 308px;
  object-fit: cover;
}
.outcome-stack-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--navy-primary);
  font-family: var(--font-primary);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(12,34,64,0.12);
}
.outcome-stack-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 4px 10px 0;
}
.outcome-stack-kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.outcome-stack-content h3 {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 2vw, 2.2rem);
  line-height: 1.14;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.outcome-stack-content p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 56ch;
}
.outcome-stack-list {
  margin-top: 18px;
  padding-left: 20px;
  color: var(--text-primary);
  display: grid;
  gap: 10px;
}
.outcome-stack-list li::marker { color: var(--gold); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.benefit-card {
  padding: 28px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(12,34,64,0.08);
  box-shadow: var(--shadow-sm);
  min-height: 100%;
}
.benefit-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(180,135,56,0.12); color: var(--gold);
  font-weight: 700; font-family: var(--font-primary); margin-bottom: 18px;
}
.benefit-card h3, .reason-card h3, .module-title { line-height: 1.3; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.module-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
}
.module-number {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(180,135,56,0.16);
  color: #f4d49a;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.module-title { color: var(--white); font-size: 1.24rem; margin-bottom: 10px; }
.module-desc { color: rgba(255,255,255,0.72); }

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.reason-card {
  padding: 28px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(12,34,64,0.08);
  box-shadow: var(--shadow-sm);
}

.certified-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
  color: var(--white);
  padding-top: 90px;
  padding-bottom: 90px;
}
.certified-cta-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
  padding: 38px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 80px rgba(0,0,0,0.16);
}
.certified-cta-copy .section-title { max-width: 700px; }
.certified-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}
.cta-ghost-btn { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.cta-ghost-btn:hover { background: rgba(255,255,255,0.14); }

@media (max-width: 1200px) {
  .benefits-grid, .reasons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modules-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .certified-cta-card { grid-template-columns: 1fr; }
  .certified-cta-actions { justify-content: flex-start; }
}
@media (max-width: 767px) {
  .container { width: min(1250px, calc(100% - 28px)); }
  .outcomes-stack { gap: 18px; }
  .outcome-stack-card { padding: 18px; border-radius: 24px; top: 88px !important; }
  .outcome-stack-content h3 { font-size: 1.5rem; }
  .outcome-stack-content p { font-size: 0.97rem; line-height: 1.7; }
  .outcome-stack-list { gap: 8px; }
  .benefits-grid, .modules-grid, .reasons-grid { grid-template-columns: 1fr; }
  .navbar { height: 84px; }
  .navbar.scrolled .nav-container { padding: 12px 16px; }
  .certified-cta-card { padding: 28px 22px; border-radius: 24px; }
  .certified-cta-actions { flex-direction: column; align-items: stretch; }
}


/* ========================================
   Why Join Us — Premium Redesign
   ======================================== */
.benefits-grid-premium {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.benefit-card-premium {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 26px 24px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,249,251,0.98) 100%);
  border: 1px solid rgba(12, 34, 64, 0.08);
  box-shadow: 0 12px 34px rgba(10, 26, 52, 0.06);
}

.benefit-card-premium::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(180,135,56,0.95), rgba(23,58,102,0.9));
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card-premium:hover::before {
  opacity: 1;
}

.benefit-card-premium .benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(180,135,56,0.12), rgba(180,135,56,0.2));
  color: var(--gold);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.benefit-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.benefits-grid-premium {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.benefit-card-premium {
  min-height: 340px;
  padding: 30px 24px 26px;
}

.benefit-card-premium h3 {
  font-size: 1.16rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--navy-deep);
  max-width: none;
}

.benefit-card-premium p {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-secondary);
  max-width: none;
}

.benefit-kicker {
  margin-bottom: 12px;
  font-size: 0.7rem;
  line-height: 1.2;
  letter-spacing: 0.14em;
}

.benefit-card-premium .benefit-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.benefit-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(10, 26, 52, 0.12);
}

@media (max-width: 1200px) {
  .benefits-grid-premium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .benefits-grid-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .benefit-card-premium {
    min-height: unset;
  }
}

@media (max-width: 560px) {
  .benefits-grid-premium {
    grid-template-columns: 1fr;
  }
  .benefit-card-premium h3 {
    max-width: none;
  }
  .benefit-card-premium p {
    max-width: none;
  }
}
/* ========================================
   Programme Outcomes - mobile sticky stack fix
   Put this at the very bottom of style.css
   ======================================== */

@media (max-width: 768px) {
  .outcomes {
    overflow: visible;
  }

  .outcomes .section-header {
    margin-bottom: 34px;
  }

  .outcomes .section-title {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .outcomes .section-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }

  .outcomes-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-bottom: 24px;
  }

  .outcome-stack-card {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    min-height: auto;
    border-radius: 26px;
    overflow: hidden;
  }

  .outcome-stack-card:nth-child(2) {
    top: 108px;
  }

  .outcome-stack-card:nth-child(3) {
    top: 128px;
  }

  .outcome-stack-card:nth-child(4) {
    top: 148px;
  }

  .outcome-stack-media {
    width: 100%;
    min-width: 100%;
    height: 220px;
    flex: 0 0 auto;
    position: relative;
  }

  .outcome-stack-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .outcome-stack-number {
    top: 20px;
    left: 18px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 1.05rem;
  }

  .outcome-stack-content {
    width: 100%;
    padding: 22px 20px 22px;
  }

  .outcome-stack-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    line-height: 1.3;
    letter-spacing: 0.14em;
  }

  .outcome-stack-content h3 {
    font-size: 1.2rem;
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .outcome-stack-content p {
    font-size: 0.96rem;
    line-height: 1.72;
    margin-bottom: 16px;
  }

  .outcome-stack-list {
    padding-left: 18px;
    margin: 0;
  }

  .outcome-stack-list li {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 8px;
  }
}

@media (max-width: 520px) {
  .outcomes.section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .outcomes-stack {
    gap: 18px;
  }

  .outcome-stack-card {
    top: 82px;
    border-radius: 22px;
  }

  .outcome-stack-card:nth-child(2) {
    top: 98px;
  }

  .outcome-stack-card:nth-child(3) {
    top: 114px;
  }

  .outcome-stack-card:nth-child(4) {
    top: 130px;
  }

  .outcome-stack-media {
    height: 205px;
  }

  .outcome-stack-content {
    padding: 20px 18px 20px;
  }

  .outcome-stack-content h3 {
    font-size: 1.05rem;
  }

  .outcome-stack-content p,
  .outcome-stack-list li {
    font-size: 0.9rem;
  }
}@media (max-width: 767px) {
  .hero-hrdc-badges {
    gap: 10px;
  }

  .hero-hrdc-badge {
    width: 100%;
    min-height: 76px;
  }

  .hero-hrdc-badge img {
    height: 46px;
  }

  .book-content {
    padding: 28px 22px;
  }

  .book-desc {
    padding-right: 0;
  }
}.site-logo {
  height: 42px;
  width: auto;
  display: block;
}


/* ===== Gerald Kong fixes v4 ===== */
.nav-links { gap: 34px; }
.nav-link {
  font-size: 1rem;
  font-weight: 600;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.testimonial-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-meta {
  margin-top: 18px;
  color: var(--navy-primary);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.92rem;
}

.contact {
  background: var(--soft-white);
}
.contact-grid {
  align-items: stretch;
  gap: 28px;
}
.contact-content,
.contact-methods {
  min-width: 0;
}
.booking-highlight-card {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(180,135,56,0.14), transparent 30%),
    linear-gradient(180deg, #173a66 0%, #0c2240 100%);
  box-shadow: 0 22px 58px rgba(10, 26, 52, 0.16);
}
.booking-card-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.booking-price-wrap {
  margin-bottom: 0;
}
.booking-price {
  font-size: clamp(2.9rem, 4.8vw, 4rem);
  font-weight: 700;
}
.booking-price-note {
  font-size: 0.98rem;
}
.booking-points {
  gap: 14px;
}
.booking-point {
  font-size: 1rem;
}
.booking-point-dot {
  width: 9px;
  height: 9px;
  flex-basis: 9px;
}
.booking-cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.booking-cta-row .btn {
  width: auto;
}
.booking-main-btn,
.booking-secondary-btn {
  min-height: 52px;
  padding-left: 22px;
  padding-right: 22px;
}
.contact-info-grid {
  display: grid;
  gap: 16px;
}
.contact-method {
  min-height: 92px;
  padding: 20px 22px;
  border: 1px solid rgba(12, 34, 64, 0.08);
  box-shadow: 0 10px 30px rgba(10, 26, 52, 0.05);
}
.contact-method-whatsapp {
  background: linear-gradient(180deg, #1b467b 0%, #14365f 100%);
  color: var(--white);
}
.contact-method-whatsapp .contact-method-icon {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.contact-method-whatsapp .contact-method-label,
.contact-method-whatsapp .contact-method-value {
  color: var(--white);
}
.booking-side-card {
  padding: 26px;
}
.booking-side-title {
  line-height: 1.15;
}
.booking-side-desc {
  line-height: 1.75;
}
.contact-desc {
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links.mobile-open {
    gap: 16px;
  }
  .nav-links.mobile-open .nav-link {
    font-size: 1rem;
    font-weight: 600;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .booking-highlight-card {
    padding: 26px 22px;
  }
  .booking-cta-row {
    flex-direction: column;
  }
  .booking-cta-row .btn {
    width: 100%;
  }
  .contact-method {
    min-height: 84px;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .nav-link {
    font-size: 1rem;
  }
  .booking-price {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-proof-item {
    padding: 14px 10px;
    align-items: center;
    text-align: center;
  }

  .hero-proof-item strong {
    font-size: 1.5rem;
  }

  .hero-proof-item span {
    font-size: 0.95rem;
  }

  .hero-hrdc-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
  }

  .hero-hrdc-badge {
    min-height: 88px;
    padding: 6px;
  }

  .hero-hrdc-badge img {
    height: 72px;
  }
}
.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  min-height: 190px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.testimonial-quote {
  margin-bottom: 0;
  line-height: 1.75;
}

@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 32px;
  align-items: start;
}

.contact-content,
.contact-methods {
  min-width: 0;
}

.booking-methods {
  display: grid;
  gap: 18px;
}

.booking-side-card.booking-side-card-primary {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(12, 34, 64, 0.28), rgba(12, 34, 64, 0.62)),
    url("img/enquire.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 50px rgba(10, 26, 52, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.booking-side-card.booking-side-card-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 34, 64, 0.08) 0%,
    rgba(12, 34, 64, 0.28) 38%,
    rgba(12, 34, 64, 0.82) 100%
  );
  z-index: 0;
}

.booking-side-card.booking-side-card-primary > * {
  position: relative;
  z-index: 1;
}

.booking-side-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #d9b36a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-side-title {
  color: #fff;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 420px;
}

.booking-side-desc {
  margin-top: 12px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 460px;
}

.booking-mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.booking-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 500;
}

.contact-method {
  min-height: 96px;
  padding: 22px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(12, 34, 64, 0.08);
  box-shadow: 0 10px 30px rgba(10, 26, 52, 0.05);
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(23, 58, 102, 0.06);
  color: var(--navy-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
}

.contact-method-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-method-label {
  color: rgba(12, 34, 64, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-method-value {
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 600;
  word-break: break-word;
}

.contact-method-whatsapp {
  background: linear-gradient(180deg, #173a66 0%, #0c2240 100%);
  border-color: transparent;
}

.contact-method-whatsapp .contact-method-icon {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.contact-method-whatsapp .contact-method-label,
.contact-method-whatsapp .contact-method-value {
  color: #fff;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-side-card.booking-side-card-primary {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .booking-highlight-card {
    padding: 24px;
  }

  .booking-side-card.booking-side-card-primary {
    min-height: 220px;
    padding: 22px;
    border-radius: 22px;
  }

  .booking-side-title {
    font-size: 1.45rem;
  }

  .booking-side-desc {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .contact-method {
    padding: 18px 18px;
    min-height: 84px;
  }
}
html {
  scroll-behavior: auto;
}