/* ============================================================
   DR NFH — Nutrition + Food + Health Platform
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --olive:        #4e5e3a;
  --olive-dark:   #323d24;
  --olive-mid:    #6b7c52;
  --olive-light:  #8f9e72;
  --olive-pale:   #c8d4b4;
  --cream:        #f6f2eb;
  --cream-dark:   #ede8df;
  --gold:         #c9993f;
  --gold-light:   #e8c97a;
  --dark:         #1a1c16;
  --dark-mid:     #2e3226;
  --text-dark:    #1e2118;
  --text-mid:     #4a5040;
  --text-light:   #7a8070;
  --white:        #ffffff;
  --border:       #dcd7cc;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.11);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);

  --transition:      all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-1 { font-family: var(--font-display); font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
h1, .h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.18; }
h2, .h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; line-height: 1.22; }
h3, .h3 { font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.75rem); font-weight: 500; line-height: 1.3; }
h4 { font-size: 1.0625rem; font-weight: 600; line-height: 1.4; }
p { line-height: 1.75; }
.label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: var(--space-2xl) 0; }
.section-sm { padding: var(--space-xl) 0; }
.section-lg { padding: var(--space-3xl) 0; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  border-radius: var(--radius-sm); transition: var(--transition); cursor: pointer;
}
.btn-primary  { background: var(--olive);  color: var(--white); border: 2px solid var(--olive); }
.btn-primary:hover  { background: var(--olive-dark); border-color: var(--olive-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: var(--olive); border: 2px solid var(--olive); }
.btn-outline:hover  { background: var(--olive); color: var(--white); transform: translateY(-2px); }
.btn-white    { background: var(--white); color: var(--olive); border: 2px solid var(--white); }
.btn-white:hover    { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-gold     { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-gold:hover     { background: transparent; color: var(--gold); transform: translateY(-2px); }
.btn-ghost    { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.btn-ghost:hover    { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.75rem; }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 0.9375rem; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: var(--space-lg); }
.section-header .label { color: var(--olive-light); margin-bottom: 0.625rem; display: block; }
.section-header h2  { color: var(--text-dark); margin-bottom: var(--space-sm); }
.section-header p   { color: var(--text-mid); max-width: 580px; margin: 0 auto; font-size: 1.0625rem; }
.divider { width: 52px; height: 3px; background: var(--gold); margin: 1rem auto 0; border-radius: 2px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26,28,22,0.96); backdrop-filter: blur(20px);
  padding: 0.875rem 0; box-shadow: 0 2px 20px rgba(0,0,0,0.22);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo  { display: flex; flex-direction: column; line-height: 1; }
.logo-main    { font-family: var(--font-display); font-size: 1.625rem; font-weight: 700; color: var(--white); letter-spacing: 0.06em; }
.logo-tagline { font-size: 0.62rem; font-weight: 400; color: var(--olive-pale); letter-spacing: 0.16em; text-transform: uppercase; margin-top: 2px; }
.navbar-menu  { display: flex; align-items: center; gap: 1.875rem; }
.navbar-link  {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); transition: var(--transition-fast); position: relative;
}
.navbar-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.navbar-link:hover  { color: var(--white); }
.navbar-link:hover::after, .navbar-link.active::after { width: 100%; }
.navbar-cta { margin-left: 0.5rem; }

/* hamburger */
.navbar-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger-line   { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(320px, 100%); height: 100vh;
  background: var(--dark); z-index: 1100; padding: 2rem 1.5rem;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1); overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.mobile-nav-close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full); background: rgba(255,255,255,0.1);
  color: var(--white); font-size: 1.25rem; cursor: pointer; transition: var(--transition);
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.2); }
.mobile-nav-link {
  display: block; padding: 1rem 0; font-size: 1.125rem; font-weight: 500;
  color: rgba(255,255,255,0.82); border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--white); padding-left: 0.5rem; }
.mobile-nav-btn { margin-top: 1.5rem; width: 100%; justify-content: center; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1050;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-overlay.show { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; background: var(--olive);
  position: relative; display: flex; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,28,22,0.55) 0%, rgba(26,28,22,0.1) 60%); z-index: 1;
}
.hero-dots-pattern {
  position: absolute; inset: 0; opacity: 0.04; z-index: 0;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-content { position: relative; z-index: 2; display: flex; align-items: center; width: 100%; min-height: 100vh; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  width: 100%; padding: 9rem 0 5rem;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  padding: 0.45rem 1rem; border-radius: var(--radius-full);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--olive-pale); margin-bottom: 1.5rem;
}
.hero-greeting { font-size: 1.125rem; font-weight: 300; color: rgba(255,255,255,0.75); margin-bottom: 0.5rem; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 700; line-height: 1.04; color: var(--white); margin-bottom: 0.375rem;
}
.hero-typed {
  display: block; color: var(--gold-light); min-height: 1.1em;
  border-right: 3px solid var(--gold-light); width: max-content; max-width: 100%;
}
.hero-typed.cursor-hide { border-color: transparent; }
.hero-subtitle {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; line-height: 1.5;
}
.hero-desc { font-size: 0.9875rem; color: rgba(255,255,255,0.65); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.25rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat-number { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat-label  { font-size: 0.7rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }

/* hero image side */
.hero-image-side { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.hero-image-wrap { position: relative; width: 100%; max-width: 460px; }
.hero-img-placeholder {
  width: 100%; height: 540px;
  background: linear-gradient(160deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 80px 80px;
  border: 1px solid rgba(255,255,255,0.13);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem; color: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.hero-img-placeholder::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(78,94,58,0.9) 0%, transparent 100%);
}
.hero-img-icon { font-size: 5rem; opacity: 0.25; }
.hero-img-text { font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.5; }
.hero-award-badge {
  position: absolute; top: -16px; right: -16px;
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--dark); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  text-align: center; padding: 0.875rem; box-shadow: var(--shadow-lg);
}
.badge-top    { font-size: 0.55rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.badge-title  { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1; margin: 0.15rem 0; }
.badge-sub    { font-size: 0.55rem; letter-spacing: 0.07em; color: rgba(255,255,255,0.65); text-transform: uppercase; }
.hero-float-card {
  position: absolute; bottom: 28px; left: -28px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-lg); min-width: 200px;
  animation: float-card 4s ease-in-out infinite;
}
@keyframes float-card { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.float-card-icon  { font-size: 1.375rem; margin-bottom: 0.375rem; }
.float-card-title { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); }
.float-card-sub   { font-size: 0.75rem; color: var(--olive-light); margin-top: 0.125rem; }

/* social bar */
.hero-social-bar { position: absolute; bottom: 0; left: 0; right: 0; background: var(--dark); padding: 0.75rem 0; z-index: 3; }
.hero-social-bar-inner { display: flex; align-items: center; justify-content: center; gap: 1.75rem; flex-wrap: wrap; }
.social-handle {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.6); transition: var(--transition-fast);
}
.social-handle:hover { color: var(--white); }
.social-icon { font-size: 0.875rem; }
.social-sep  { color: rgba(255,255,255,0.2); }

/* ============================================================
   JOURNEY SECTION  (homepage)
   ============================================================ */
.journey-section { background: var(--cream); padding: var(--space-2xl) 0; }
.journey-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.125rem; margin-top: var(--space-lg); }
.journey-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.625rem;
  border: 1px solid var(--border); cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 0.875rem;
}
.journey-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--olive), var(--gold));
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.35s ease;
}
.journey-card:hover::before { transform: scaleY(1); }
.journey-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--olive-pale); }
.journey-card-num   { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; color: var(--olive-light); text-transform: uppercase; }
.journey-card-icon  {
  width: 50px; height: 50px; background: var(--cream); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  border: 1px solid var(--border); transition: var(--transition);
}
.journey-card:hover .journey-card-icon { background: var(--olive); transform: scale(1.06); }
.journey-card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }
.journey-card-desc  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.journey-card-cta   {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.8rem; font-weight: 600; color: var(--olive);
  letter-spacing: 0.06em; text-transform: uppercase; transition: gap 0.2s ease;
}
.journey-card:hover .journey-card-cta { gap: 0.625rem; }
.arrow-icon { font-style: normal; }

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview { background: var(--white); padding: var(--space-2xl) 0; }
.about-preview-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.about-image-col { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(150deg, var(--olive) 0%, var(--olive-dark) 100%);
  border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,0.2); overflow: hidden; position: relative;
}
.about-img-placeholder::after {
  content: 'Dr. Nida\APatima\AHazari'; white-space: pre;
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 1.625rem; font-weight: 600; color: rgba(255,255,255,0.7);
  text-align: center; line-height: 1.25;
}
.about-accent {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--olive); color: var(--white);
  padding: 1.375rem 1.5rem; border-radius: var(--radius-lg); text-align: center;
  min-width: 150px; box-shadow: var(--shadow-md);
}
.about-accent-num   { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.about-accent-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.65); margin-top: 0.25rem; }
.about-content .label { color: var(--olive-light); margin-bottom: 0.625rem; display: block; }
.about-content h2    { margin-bottom: 1.375rem; }
.about-content p     { color: var(--text-mid); margin-bottom: 1.125rem; font-size: 0.9875rem; }
.credential-tags     { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.credential-tag {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.875rem; background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 500; color: var(--text-mid);
}

/* ============================================================
   EXPERTS CAROUSEL PREVIEW
   ============================================================ */
.experts-preview { background: var(--cream); padding: var(--space-2xl) 0; overflow: hidden; }
.carousel-wrap   { position: relative; margin-top: var(--space-lg); }
.carousel-track  {
  display: flex; gap: 1.125rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.expert-mini-card {
  flex: 0 0 228px; scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden; transition: var(--transition);
}
.expert-mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.expert-mini-img {
  width: 100%; height: 210px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,0.3);
}
.expert-mini-body { padding: 1.125rem; }
.expert-mini-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.expert-mini-spec { font-size: 0.75rem; color: var(--olive-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }
.carousel-controls { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.carousel-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--olive);
  color: var(--olive); display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer; background: transparent; font-size: 1.125rem;
}
.carousel-btn:hover { background: var(--olive); color: var(--white); }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--olive-pale); transition: var(--transition); cursor: pointer; }
.carousel-dot.active { background: var(--olive); width: 22px; border-radius: 4px; }

/* ============================================================
   SMARTPLATE SECTION
   ============================================================ */
.smartplate-section {
  background: linear-gradient(140deg, var(--olive-dark) 0%, var(--dark) 100%);
  padding: var(--space-2xl) 0; position: relative; overflow: hidden;
}
.smartplate-section::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,153,63,0.12) 0%, transparent 70%);
}
.smartplate-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.smartplate-content .label { color: var(--gold); margin-bottom: 0.75rem; display: block; }
.smartplate-content h2     { color: var(--white); margin-bottom: 1.25rem; }
.smartplate-content p      { color: rgba(255,255,255,0.65); margin-bottom: 1.125rem; font-size: 0.9875rem; }
.features-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.75rem 0; }
.feature-item  { display: flex; align-items: flex-start; gap: 0.875rem; color: rgba(255,255,255,0.82); font-size: 0.9375rem; }
.feature-icon  {
  width: 28px; height: 28px; min-width: 28px; background: rgba(201,153,63,0.18);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; margin-top: 1px;
}
.sp-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.sp-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sp-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; transition: var(--transition);
}
.sp-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.sp-card.featured { grid-column: span 2; background: rgba(201,153,63,0.1); border-color: rgba(201,153,63,0.28); }
.sp-card-icon    { font-size: 2rem; margin-bottom: 0.75rem; width: 64px; height: 64px; margin-left: auto; margin-right: auto; border-radius: var(--radius-md); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.sp-card-icon img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.9) saturate(0.85); }
.sp-card-title   { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.375rem; }
.sp-card-desc    { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); padding: var(--space-2xl) 0; }
.testimonials-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.375rem; margin-top: var(--space-lg); }
.testimonial-card     { background: var(--cream); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); }
.t-stars    { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; }
.t-quote    { font-size: 2.75rem; font-family: Georgia, serif; color: var(--olive-pale); line-height: 0.8; margin-bottom: 1rem; }
.t-text     { font-style: italic; color: var(--text-mid); line-height: 1.72; margin-bottom: 1.5rem; font-size: 0.9375rem; }
.t-author   { display: flex; align-items: center; gap: 0.875rem; }
.t-avatar   {
  width: 42px; height: 42px; border-radius: 50%; background: var(--olive);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.9375rem; flex-shrink: 0;
}
.t-name     { font-weight: 600; font-size: 0.9375rem; color: var(--text-dark); }
.t-role     { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-main { padding: var(--space-2xl) 0 var(--space-lg); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: var(--space-lg); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main { font-size: 1.875rem; display: block; margin-bottom: 0.375rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.48); line-height: 1.72; max-width: 280px; margin-top: 0.875rem; }
.footer-social { display: flex; gap: 0.625rem; margin-top: 1.5rem; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); transition: var(--transition); font-size: 0.875rem;
}
.footer-social-link:hover { background: var(--olive); border-color: var(--olive); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a  { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: var(--transition-fast); }
.footer-col a:hover { color: var(--white); padding-left: 3px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-contact-icon { opacity: 0.6; margin-top: 2px; flex-shrink: 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.375rem; }
.footer-copy        { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(145deg, var(--olive-dark) 0%, var(--olive) 100%);
  padding: 9rem 0 4.5rem; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; opacity: 0.035;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px); background-size: 28px 28px;
}
.page-header .label { color: var(--gold); margin-bottom: 0.625rem; display: block; position: relative; }
.page-header h1     { color: var(--white); position: relative; margin-bottom: 1rem; }
.page-header p      { color: rgba(255,255,255,0.68); max-width: 560px; margin: 0 auto; font-size: 1.0625rem; position: relative; lines-height: 1.7; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; position: relative; }
.bc-item { font-size: 0.77rem; color: rgba(255,255,255,0.48); text-transform: uppercase; letter-spacing: 0.09em; }
.bc-item.active { color: rgba(255,255,255,0.85); }
.bc-sep  { color: rgba(255,255,255,0.28); font-size: 0.7rem; }

/* ============================================================
   JOURNEY DETAIL PAGE
   ============================================================ */
.journey-detail-section { background: var(--cream); padding: var(--space-2xl) 0; }
.journey-detail-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 1.375rem; }
.journey-detail-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem;
  border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden;
}
.journey-detail-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--olive) 0%, var(--gold) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.journey-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.journey-detail-card:hover::after { transform: scaleX(1); }
.jd-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.jd-icon   { width: 58px; height: 58px; min-width: 58px; background: var(--cream); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; border: 1px solid var(--border); overflow: hidden; }
.jd-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jd-tag    { font-size: 0.72rem; color: var(--olive-light); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.jd-title  { font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; color: var(--text-dark); }
.jd-desc   { color: var(--text-mid); line-height: 1.72; margin-bottom: 1.5rem; font-size: 0.9375rem; }
.jd-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.jd-features li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--text-mid); }
.jd-features li::before { content: '✓'; color: var(--olive); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   EXPERTS PAGE
   ============================================================ */
.experts-main     { padding: var(--space-2xl) 0; }
.experts-filter   { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: var(--space-lg); flex-wrap: wrap; }
.filter-btn       { padding: 0.5rem 1.25rem; border-radius: var(--radius-full); border: 2px solid var(--border); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); transition: var(--transition); cursor: pointer; background: transparent; }
.filter-btn:hover, .filter-btn.active { background: var(--olive); color: var(--white); border-color: var(--olive); }
.experts-grid     { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.expert-card      { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.expert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.expert-card-img  { position: relative; height: 255px; overflow: hidden; }
.ec-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(255,255,255,0.3); transition: transform 0.5s ease;
}
.expert-card:hover .ec-img-placeholder { transform: scale(1.04); }
.ec-specialty-badge {
  position: absolute; top: 0.875rem; left: 0.875rem;
  background: rgba(26,28,22,0.72); backdrop-filter: blur(8px);
  padding: 0.3rem 0.7rem; border-radius: var(--radius-full);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--white);
}
.expert-card-body { padding: 1.5rem; }
.expert-card-body h3   { font-family: var(--font-display); font-size: 1.1875rem; margin-bottom: 0.25rem; }
.expert-card-spec { font-size: 0.75rem; color: var(--olive-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.875rem; }
.expert-card-bio  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 1.125rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-main   { padding: var(--space-2xl) 0; }
.service-category { margin-bottom: var(--space-xl); }
.service-cat-header { display: flex; align-items: center; gap: 1rem; margin-bottom: var(--space-lg); padding-bottom: 1rem; border-bottom: 2px solid var(--cream); }
.service-cat-icon { width: 50px; height: 50px; background: var(--olive); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; overflow: hidden; }
.service-cat-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-cat-header h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.services-grid   { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.service-card    { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); transition: var(--transition); }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--olive-pale); }
.service-card-icon { font-size: 2rem; margin-bottom: 0.875rem; width: 64px; height: 64px; border-radius: var(--radius-md); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.service-card-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card h3   { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p    { font-size: 0.9rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 1.125rem; }
.service-benefits  { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.service-benefits li { font-size: 0.8125rem; color: var(--text-mid); display: flex; align-items: center; gap: 0.5rem; }
.service-benefits li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--olive); flex-shrink: 0; }

/* ============================================================
   PROGRAMS PAGE
   ============================================================ */
.programs-main { background: var(--cream); padding: var(--space-2xl) 0; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.75rem; }
.program-card  { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card-header {
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(140deg, var(--olive) 0%, var(--olive-dark) 100%);
  position: relative; overflow: hidden;
}
.program-card-header::before { content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,0.055); }
.program-icon     { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.program-card-header h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 0.625rem; }
.program-duration  {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(255,255,255,0.14); padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full); font-size: 0.78rem; color: rgba(255,255,255,0.85);
}
.program-card-body { padding: 2rem; }
.program-desc      { font-size: 0.9rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 1.5rem; }
.program-outcomes  { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; }
.program-outcomes li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--text-mid); line-height: 1.5; }
.outcome-dot { width: 20px; height: 20px; min-width: 20px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.625rem; margin-top: 1px; border: 1px solid var(--border); }

/* ============================================================
   CORPORATE PAGE
   ============================================================ */
.corporate-intro { background: linear-gradient(145deg, var(--dark) 0%, var(--olive-dark) 100%); padding: var(--space-2xl) 0; position: relative; overflow: hidden; }
.corporate-intro::before { content: ''; position: absolute; inset: 0; opacity: 0.03; background-image: radial-gradient(circle, #ffffff 1px, transparent 1px); background-size: 28px 28px; }
.corporate-intro-inner { position: relative; z-index: 1; max-width: 700px; }
.corporate-intro .label { color: var(--gold); margin-bottom: 0.875rem; display: block; }
.corporate-intro h1     { color: var(--white); margin-bottom: 1.125rem; }
.corporate-intro p      { color: rgba(255,255,255,0.68); font-size: 1.0625rem; margin-bottom: 2.25rem; line-height: 1.75; }
.corporate-cta-strip { display: flex; gap: 1rem; flex-wrap: wrap; }
.corp-stats { display: flex; gap: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2.5rem; }
.corp-stat-num   { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.corp-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 0.25rem; }
.corporate-services { padding: var(--space-2xl) 0; }
.corp-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: var(--space-lg); }
.corp-service-card  { background: var(--cream); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); transition: var(--transition); overflow: hidden; }
.corp-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--white); }
.corp-card-icon  { font-size: 2rem; margin-bottom: 1rem; }
.corp-card-img   { margin: -2rem -2rem 1.5rem -2rem; height: 170px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; position: relative; }
.corp-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.corp-service-card:hover .corp-card-img img { transform: scale(1.06); }
.corp-service-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; }
.corp-service-card p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 1.125rem; }
.why-section { background: var(--olive); padding: var(--space-2xl) 0; }
.why-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; margin-top: var(--space-lg); }
.why-card    { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); padding: 1.75rem; transition: var(--transition); display: flex; align-items: flex-start; gap: 1.25rem; }
.why-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }
.why-card-icon   { width: 72px; height: 72px; min-width: 72px; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 0; }
.why-card-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-card h4     { font-size: 1.0625rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.why-card p      { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.corp-cta-section { background: var(--cream); padding: var(--space-xl) 0; text-align: center; }
.corp-cta-section h2 { margin-bottom: 1rem; }
.corp-cta-section p  { color: var(--text-mid); max-width: 540px; margin: 0 auto 2rem; }
.corp-cta-btns   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main  { padding: var(--space-2xl) 0; }
.contact-grid  { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4.5rem; }
.contact-info h2 { margin-bottom: 1.125rem; }
.contact-info p  { color: var(--text-mid); margin-bottom: 2rem; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail  { display: flex; align-items: flex-start; gap: 1rem; }
.cd-icon   { width: 44px; height: 44px; min-width: 44px; background: var(--cream); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; border: 1px solid var(--border); }
.cd-label  { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--olive-light); margin-bottom: 0.25rem; }
.cd-value  { font-size: 0.9375rem; color: var(--text-dark); }
.contact-form-card { background: var(--cream); border-radius: var(--radius-xl); padding: 2.5rem; border: 1px solid var(--border); }
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.625rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.span-2 { grid-column: span 2; }
.form-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-dark); }
.form-input, .form-select, .form-textarea {
  padding: 0.875rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.9375rem;
  color: var(--text-dark); background: var(--white); transition: var(--transition); width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(78,94,58,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select   { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' fill='none' stroke='%234a5040' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 14px; padding-right: 2.5rem; cursor: pointer; }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--white); border-radius: var(--radius-xl); max-width: 540px; width: 100%; max-height: 90vh; overflow-y: auto; transform: translateY(16px) scale(0.98); transition: transform 0.3s ease; }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header { padding: 1.75rem 2rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; }
.modal-title    { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.modal-subtitle { font-size: 0.875rem; color: var(--text-light); margin-top: 0.25rem; }
.modal-close    { width: 34px; height: 34px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.125rem; color: var(--text-mid); transition: var(--transition); flex-shrink: 0; }
.modal-close:hover { background: var(--border); }
.modal-body     { padding: 2rem; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,0.4); z-index: 999; cursor: pointer; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-float svg  { width: 28px; height: 28px; fill: white; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-anim] { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-anim].visible { opacity: 1; transform: translateY(0); }
[data-anim-delay="1"] { transition-delay: 0.1s; }
[data-anim-delay="2"] { transition-delay: 0.2s; }
[data-anim-delay="3"] { transition-delay: 0.3s; }
[data-anim-delay="4"] { transition-delay: 0.4s; }
[data-anim-delay="5"] { transition-delay: 0.5s; }
[data-anim-delay="6"] { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner             { grid-template-columns: 1fr; padding: 8rem 0 6rem; }
  .hero-image-side        { display: none; }
  .hero-desc              { max-width: 100%; }
  .about-preview-inner    { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-col        { max-width: 400px; }
  .smartplate-inner       { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid            { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid           { grid-template-columns: 1fr; gap: 2.5rem; }
  .journey-detail-grid    { grid-template-columns: 1fr; }
  .corp-stats             { gap: 1.75rem; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  :root { --space-xl: 3rem; --space-2xl: 4rem; --space-3xl: 5rem; }
  .navbar-menu            { display: none; }
  .navbar-hamburger       { display: flex; }
  .hero-stats             { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat-number       { font-size: 1.875rem; }
  .journey-grid           { grid-template-columns: 1fr; }
  .experts-grid           { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
  .footer-grid            { grid-template-columns: 1fr; }
  .footer-bottom-inner    { flex-direction: column; text-align: center; }
  .form-grid              { grid-template-columns: 1fr; }
  .form-group.span-2      { grid-column: span 1; }
  .sp-visual-grid         { grid-template-columns: 1fr; }
  .sp-card.featured       { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero-cta-group         { flex-direction: column; }
  .hero-cta-group .btn    { width: 100%; justify-content: center; }
  .programs-grid          { grid-template-columns: 1fr; }
  .testimonials-grid      { grid-template-columns: 1fr; }
}

/* ============================================================
   REAL IMAGE SUPPORT — replaces emoji/gradient placeholders
   ============================================================ */
.hero-img-placeholder img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius-lg) var(--radius-lg) 80px 80px;
  display: block;
}
.about-img-placeholder img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.about-img-placeholder::after { display: none !important; }
.ec-img-placeholder { display: block; }
.ec-img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; display: block;
}
.expert-mini-img { display: block; overflow: hidden; }
.expert-mini-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; display: block;
}
.journey-card-icon { display: flex; align-items: center; justify-content: center; overflow: hidden; }
.journey-card-icon img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-md); display: block;
}
.journey-card:hover .journey-card-icon img { filter: brightness(1.08); }
.program-card-header { overflow: hidden; }
.program-card-header > img.prog-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.18; z-index: 0; display: block;
}
.program-card-header > *:not(img.prog-bg) { position: relative; z-index: 1; }
