/* ==========================================================================
   BIMBEL BINTANG PRESTASI - DESIGN SYSTEM & STYLESHEET
   Theme: PREMIER LIGHT THEME
   Colors: Soft Ivory/Cream Background, Matcha Green, Terracotta Orange & Warm Brown
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --------------------------------------------------------------------------
   1. ROOT & CSS VARIABLES (LIGHT MODE)
   -------------------------------------------------------------------------- */
:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Light Palette */
  --clr-bg-dark: #fcfaf5;          /* Warm Ivory Light Main Background */
  --clr-bg-surface: #ffffff;       /* Pure White Surface */
  --clr-bg-card: #ffffff;          /* Clean White Card Background */
  --clr-bg-card-hover: #f7f4ec;    /* Soft Warm Hover State */
  --clr-bg-alt: #f3efe4;           /* Warm Soft Cream Section Alt */
  
  --clr-primary: #2d6a4f;         /* Deep Rich Matcha Forest Green */
  --clr-primary-hover: #1b4332;   /* Darker Matcha Green */
  --clr-primary-light: rgba(45, 106, 79, 0.08);
  
  --clr-accent: #d96b43;          /* Warm Terracotta Orange */
  --clr-accent-hover: #c8562e;
  --clr-accent-glow: rgba(217, 107, 67, 0.2);

  --clr-brown: #7f4f24;           /* Warm Coffee Earthy Brown */
  --clr-matcha-bright: #40916c;
  
  --clr-success: #2d6a4f;
  
  --clr-text-main: #1c2826;       /* Dark Charcoal Green Text */
  --clr-text-muted: #526058;       /* Medium Forest Sage Text */
  --clr-text-sub: #3d4a43;         /* Deep Subtext */
  
  --clr-border: #e6e0d2;           /* Soft Ivory Border */
  --clr-border-active: #d96b43;

  /* Layout */
  --nav-height: 80px;
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s ease;
  
  /* Light Mode Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(45, 106, 79, 0.08);
  --shadow-lg: 0 16px 36px rgba(45, 106, 79, 0.12);
  --shadow-glow: 0 8px 25px rgba(217, 107, 67, 0.25);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-main);
  background-color: var(--clr-bg-dark);
  color: var(--clr-text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(217, 107, 67, 0.1);
  border: 1px solid rgba(217, 107, 67, 0.3);
  color: var(--clr-accent);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--clr-text-main);
}

.section-subtitle {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   3. NAVBAR (LIGHT MODE GLASS)
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-normal);
  background: rgba(252, 250, 245, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-text-main);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--clr-accent), #b84a26);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: var(--shadow-glow);
}

.logo-text span {
  color: var(--clr-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text-sub);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--clr-accent);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--clr-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--clr-accent) 0%, #b84a26 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow);
  transition: var(--transition-normal);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 107, 67, 0.4);
}

.btn-cta svg {
  width: 20px;
  height: 20px;
}

/* Mobile Hamburger Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--clr-text-main);
  border-radius: 3px;
  transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION WITH CAROUSEL (LIGHT OVERLAY)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(252, 250, 245, 0.94) 0%,
    rgba(248, 245, 237, 0.88) 55%,
    rgba(252, 250, 245, 0.96) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 40px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(45, 106, 79, 0.1);
  border: 1px solid rgba(45, 106, 79, 0.25);
  color: var(--clr-primary);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--clr-text-main);
}

.hero-title span {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--clr-accent) 0%, #b84a26 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(217, 107, 67, 0.4);
}

.btn-secondary {
  padding: 15px 32px;
  background: #ffffff;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-main);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.btn-secondary:hover {
  background: var(--clr-bg-alt);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.social-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-sub);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--clr-primary-light);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

/* Slider Pagination Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(45, 106, 79, 0.25);
  cursor: pointer;
  transition: var(--transition-normal);
}

.dot.active {
  width: 36px;
  background: var(--clr-accent);
}

/* --------------------------------------------------------------------------
   5. ALUMNI SECTION (#alumni)
   -------------------------------------------------------------------------- */
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.alumni-card {
  position: relative;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.alumni-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-lg);
}

.alumni-header {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #e6e0d2;
}

.alumni-univ-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: var(--transition-normal);
}

.alumni-card:hover .alumni-univ-bg {
  transform: scale(1.08);
  filter: brightness(0.8);
}

.alumni-year-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--clr-border);
  color: var(--clr-accent);
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.alumni-avatar-box {
  position: absolute;
  bottom: -30px;
  left: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--clr-bg-card);
  background: var(--clr-bg-surface);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.alumni-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alumni-body {
  padding: 40px 20px 24px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.alumni-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text-main);
  margin-bottom: 4px;
}

.alumni-univ {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 2px;
}

.alumni-major {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}

.alumni-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(45, 106, 79, 0.08);
  color: var(--clr-primary);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: auto;
}

.load-more-container {
  text-align: center;
  margin-top: 48px;
}

/* --------------------------------------------------------------------------
   6. GURU SECTION (#guru)
   -------------------------------------------------------------------------- */
.guru-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.guru-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.guru-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  opacity: 0;
  transition: var(--transition-normal);
}

.guru-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-lg);
}

.guru-card:hover::before {
  opacity: 1;
}

.guru-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  border: 3px solid var(--clr-accent);
  padding: 4px;
  background: var(--clr-bg-surface);
  box-shadow: var(--shadow-md);
}

.guru-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.guru-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text-main);
  margin-bottom: 4px;
}

.guru-subject {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 10px;
}

.guru-alma {
  font-size: 0.85rem;
  color: var(--clr-text-sub);
  margin-bottom: 12px;
}

.guru-exp {
  display: inline-block;
  padding: 4px 12px;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.guru-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--clr-text-muted);
  border-top: 1px solid var(--clr-border);
  padding-top: 14px;
}

/* --------------------------------------------------------------------------
   7. TEMPAT / LOKASI SECTION (#lokasi)
   -------------------------------------------------------------------------- */
.lokasi-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.lokasi-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-primary-light);
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text-main);
  margin-bottom: 4px;
}

.info-text p {
  color: var(--clr-text-sub);
  font-size: 0.95rem;
}

.facility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--clr-text-sub);
}

.facility-item span {
  color: var(--clr-primary);
  font-weight: bold;
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   8. BIAYA / PAKET SECTION (#biaya)
   -------------------------------------------------------------------------- */
.biaya-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.paket-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.paket-card.popular {
  border-color: var(--clr-accent);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.paket-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(90deg, var(--clr-accent), #c8562e);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.paket-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}

.paket-nama {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-text-main);
  margin-bottom: 6px;
}

.paket-kat {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}

.paket-harga {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
}

.paket-periode {
  font-size: 0.85rem;
  color: var(--clr-text-sub);
  font-weight: 500;
}

.paket-fitur {
  flex-grow: 1;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fitur-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--clr-text-sub);
}

.fitur-item svg {
  width: 18px;
  height: 18px;
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.btn-paket {
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-paket.primary {
  background: linear-gradient(135deg, var(--clr-accent) 0%, #b84a26 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(217, 107, 67, 0.35);
}

.btn-paket.primary:hover {
  box-shadow: 0 8px 25px rgba(217, 107, 67, 0.5);
  transform: translateY(-2px);
}

.btn-paket.outline {
  background: #ffffff;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-main);
}

.btn-paket.outline:hover {
  background: var(--clr-primary-light);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

/* --------------------------------------------------------------------------
   9. FOOTER (DEEP MATCHA GROUNDED FOOTER)
   -------------------------------------------------------------------------- */
.footer {
  background: #17261f;
  border-top: 1px solid var(--clr-border);
  padding: 70px 0 30px 0;
  color: #a3b3a9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about .logo {
  color: #ffffff;
}

.footer-about p {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #a3b3a9;
  max-width: 320px;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--clr-accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   10. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .lokasi-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(252, 250, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: var(--transition-normal);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
