/* ═══════════════════════════════════════════════════
   EDUVEST — Premium Student Settlement Platform
   Luxury Startup Design System
   ═══════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  /* Primary Palette */
  --cream: #F7F3EA;
  --cream-light: #FBF9F4;
  --cream-dark: #EDE8DC;
  --green-deep: #123524;
  --green-dark: #0A2818;
  --green-emerald: #1A4D35;
  --green-olive: #4A5D3A;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-muted: #B8983F;
  --beige: #E8DFD0;
  --beige-light: #F0EAE0;
  --terracotta: #B85C3A;
  --chocolate: #4A3228;
  --olive: #5A6B48;
  --off-black: #1A1A1A;
  --gray-soft: #9B9B9B;
  --gray-muted: #6B6B6B;
  --white: #FFFFFF;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1200px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(18, 53, 36, 0.06);
  --shadow-md: 0 8px 30px rgba(18, 53, 36, 0.08);
  --shadow-lg: 0 20px 60px rgba(18, 53, 36, 0.12);
  --shadow-glow: 0 0 40px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 4px 20px rgba(18, 53, 36, 0.07);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--off-black);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

ul { list-style: none; }

/* ── Utility: Reveal Animations ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.4s var(--ease-smooth);
  transform: translateX(-50%);
}

.btn:hover::after {
  width: 60%;
}

.btn--primary {
  background: var(--green-deep);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(18, 53, 36, 0.2);
}

.btn--primary:hover {
  background: var(--green-emerald);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(18, 53, 36, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
}

.btn--outline:hover {
  background: var(--green-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.45);
}

.btn--full {
  width: 100%;
}

/* ── Section Commons ── */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-olive);
  margin-bottom: 12px;
}

.section-tag--gold {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--off-black);
  line-height: 1.25;
}

.section-title em {
  font-style: italic;
  color: var(--green-deep);
}

.section-header--light .section-title {
  color: var(--cream);
}

.section-header--light .section-title em {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 243, 234, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(247, 243, 234, 0.95);
  border-bottom-color: rgba(18, 53, 36, 0.08);
  box-shadow: 0 2px 20px rgba(18, 53, 36, 0.06);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-deep);
}

.logo-icon {
  color: var(--gold);
  font-size: 0.9em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--off-black);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-deep);
  transition: width 0.4s var(--ease-premium);
}

.nav-link:hover {
  color: var(--green-deep);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease-smooth);
  transform: translateX(-50%);
}

.nav-cta:hover {
  background: var(--green-emerald);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(18, 53, 36, 0.25);
}

.nav-cta:hover::after {
  width: 60%;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════
   MARQUEE BAR
   ═══════════════════════════════════════════════════ */
.marquee-bar {
  margin-top: 72px;
  background: var(--green-dark);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(247, 243, 234, 0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-sep {
  color: var(--gold);
  font-size: 0.5rem;
  opacity: 0.7;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0 var(--section-pad);
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-orb--1 {
  width: 400px;
  height: 400px;
  background: var(--beige);
  top: -100px;
  right: -100px;
  animation: floatOrb 12s ease-in-out infinite;
}

.hero-orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(18, 53, 36, 0.08);
  bottom: -50px;
  left: -50px;
  animation: floatOrb 15s ease-in-out infinite reverse;
}

.hero-orb--3 {
  width: 200px;
  height: 200px;
  background: rgba(201, 168, 76, 0.1);
  top: 40%;
  left: 40%;
  animation: floatOrb 10s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-olive);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--off-black);
  margin-bottom: 24px;
}

.hero-highlight {
  font-style: italic;
  color: var(--green-deep);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.3));
  border-radius: 4px;
  z-index: -1;
  animation: underlineSweep 2s ease-out 0.5s forwards;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes underlineSweep {
  to { transform: scaleX(1); }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Right Panel */
.hero-right {
  position: relative;
}

.hero-panel {
  position: relative;
  background: linear-gradient(145deg, var(--green-deep), var(--green-dark));
  border-radius: 20px;
  padding: 40px;
  color: var(--cream);
  box-shadow: 0 20px 60px rgba(10, 40, 24, 0.35);
  overflow: hidden;
}

.hero-panel-glass {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-panel-content {
  position: relative;
  z-index: 2;
}

.hero-panel-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-panel h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.hero-panel p {
  font-size: 0.92rem;
  color: rgba(247, 243, 234, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-panel-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(247, 243, 234, 0.85);
}

.check-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Hero Badge */
.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--green-deep);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* Hero Floating Circles */
.hero-float-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-float-circle--1 {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(18, 53, 36, 0.1);
  top: -30px;
  left: -40px;
  animation: floatCircle 8s ease-in-out infinite;
}

.hero-float-circle--2 {
  width: 80px;
  height: 80px;
  background: rgba(201, 168, 76, 0.06);
  bottom: -20px;
  right: -30px;
  filter: blur(20px);
  animation: floatCircle 10s ease-in-out infinite reverse;
}

@keyframes floatCircle {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -15px); }
}

/* ═══════════════════════════════════════════════════
   CONSULTANCY OFFER
   ═══════════════════════════════════════════════════ */
.consultancy {
  position: relative;
  padding: var(--section-pad) 0;
  background: linear-gradient(165deg, var(--green-dark), #0D1F16, var(--green-deep));
  overflow: hidden;
}

.consultancy-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.consultancy-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.consultancy-orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(201, 168, 76, 0.08);
  top: -150px;
  right: -100px;
  animation: floatOrb 14s ease-in-out infinite;
}

.consultancy-orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(26, 77, 53, 0.3);
  bottom: -100px;
  left: -80px;
  animation: floatOrb 18s ease-in-out infinite reverse;
}

.consultancy-particles {
  position: absolute;
  inset: 0;
}

.consultancy-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
  position: relative;
  z-index: 2;
}

.consultancy-card {
  position: relative;
  background: linear-gradient(145deg, rgba(26, 77, 53, 0.5), rgba(10, 40, 24, 0.6));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 60px);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.consultancy-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.consultancy-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.2); }
  50% { box-shadow: 0 0 40px rgba(201, 168, 76, 0.4); }
}

/* Gift Box */
.consultancy-gift {
  margin-bottom: 28px;
}

.gift-box {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  position: relative;
  animation: giftFloat 3s ease-in-out infinite;
}

@keyframes giftFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.gift-body {
  width: 60px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  border-radius: 4px 4px 8px 8px;
  position: absolute;
  bottom: 0;
}

.gift-body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 100%;
  background: rgba(18, 53, 36, 0.2);
}

.gift-lid {
  width: 68px;
  height: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: -4px;
}

.gift-bow {
  width: 20px;
  height: 14px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.gift-bow::before,
.gift-bow::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid var(--gold);
  border-radius: 50% 50% 0;
  top: 0;
}

.gift-bow::before {
  left: -2px;
  transform: rotate(-45deg);
}

.gift-bow::after {
  right: -2px;
  transform: rotate(45deg);
}

.consultancy-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--cream);
  margin-bottom: 24px;
}

.consultancy-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.price-old {
  font-size: 1.3rem;
  color: rgba(247, 243, 234, 0.4);
  text-decoration: line-through;
  font-weight: 500;
}

.price-new {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

.price-new small {
  font-size: 0.5em;
  font-weight: 400;
  opacity: 0.8;
  display: block;
  font-family: var(--font-body);
  margin-top: -4px;
}

.consultancy-desc {
  font-size: 0.92rem;
  color: rgba(247, 243, 234, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Timer */
.consultancy-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.timer-block {
  background: rgba(247, 243, 234, 0.06);
  border: 1px solid rgba(247, 243, 234, 0.1);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 64px;
  text-align: center;
}

.timer-block span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

.timer-block small {
  font-size: 0.65rem;
  color: rgba(247, 243, 234, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timer-sep {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}

.consultancy-cta {
  font-size: 1rem;
  padding: 16px 40px;
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(18, 53, 36, 0.06);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.5s var(--ease-smooth);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: border-color 0.5s var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  border-color: rgba(201, 168, 76, 0.3);
}

/* Featured card */
.service-card--featured {
  background: linear-gradient(145deg, var(--green-deep), var(--green-dark));
  color: var(--cream);
  border-color: transparent;
}

.service-card--featured .service-icon {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}

.service-card--featured p {
  color: rgba(247, 243, 234, 0.7);
}

.service-card--featured .service-arrow {
  color: var(--gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(18, 53, 36, 0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  margin-bottom: 24px;
  transition: transform 0.5s var(--ease-bounce);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-arrow {
  font-size: 1.2rem;
  color: var(--green-deep);
  transition: transform 0.3s var(--ease-smooth);
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
}

/* ═══════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════ */
.process {
  position: relative;
  padding: var(--section-pad) 0;
  background: linear-gradient(175deg, var(--green-dark), #0B1A12, var(--green-deep));
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.process-orb--1 {
  width: 350px;
  height: 350px;
  background: rgba(201, 168, 76, 0.05);
  top: 10%;
  left: -100px;
  animation: floatOrb 16s ease-in-out infinite;
}

.process-orb--2 {
  width: 250px;
  height: 250px;
  background: rgba(26, 77, 53, 0.2);
  bottom: 10%;
  right: -80px;
  animation: floatOrb 20s ease-in-out infinite reverse;
}

.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 16px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.5s var(--ease-smooth);
}

.step-number span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}

.process-step:hover .step-number {
  background: rgba(201, 168, 76, 0.15);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
  transform: scale(1.05);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: rgba(247, 243, 234, 0.55);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   WHY EDUVEST
   ═══════════════════════════════════════════════════ */
.why-eduvest {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(18, 53, 36, 0.05);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.5s var(--ease-smooth);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.15);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(18, 53, 36, 0.06), rgba(201, 168, 76, 0.06));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  margin-bottom: 20px;
  transition: all 0.4s var(--ease-smooth);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(18, 53, 36, 0.1), rgba(201, 168, 76, 0.12));
  color: var(--gold-muted);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--off-black);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   ACCOMMODATIONS
   ═══════════════════════════════════════════════════ */
.accommodations {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.accom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.accom-card {
  position: relative;
  border-radius: 20px;
  padding: 36px 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: all 0.5s var(--ease-smooth);
  cursor: default;
}

.accom-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.accom-gradient {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: 1;
}

.accom-blur-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  top: 20%;
  right: -30px;
  opacity: 0.4;
  transition: opacity 0.5s;
}

.accom-card:hover .accom-blur-circle {
  opacity: 0.6;
}

.accom-content {
  position: relative;
  z-index: 3;
}

.accom-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease-bounce);
}

.accom-card:hover .accom-icon {
  transform: rotate(-5deg) scale(1.08);
}

.accom-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.accom-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accom-features li {
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}

.accom-features li::before {
  content: '✦';
  font-size: 0.6em;
  opacity: 0.7;
}

.accom-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}

.accom-card:hover .accom-glow {
  opacity: 0.5;
}

/* Boys Hostel — Deep Forest Green */
.accom-card--boys {
  color: var(--cream);
}
.accom-card--boys .accom-gradient {
  background: linear-gradient(160deg, #123524, #0A2818, #1A4D35);
}
.accom-card--boys .accom-blur-circle {
  background: rgba(201, 168, 76, 0.3);
}
.accom-card--boys .accom-glow {
  background: rgba(18, 53, 36, 0.6);
}

/* Girls Hostel — Warm Terracotta */
.accom-card--girls {
  color: var(--cream);
}
.accom-card--girls .accom-gradient {
  background: linear-gradient(160deg, #8B4528, #6B3420, #B85C3A);
}
.accom-card--girls .accom-blur-circle {
  background: rgba(232, 180, 140, 0.3);
}
.accom-card--girls .accom-glow {
  background: rgba(184, 92, 58, 0.5);
}

/* PG — Dark Chocolate */
.accom-card--pg {
  color: var(--cream);
}
.accom-card--pg .accom-gradient {
  background: linear-gradient(160deg, #4A3228, #332218, #5C3F32);
}
.accom-card--pg .accom-blur-circle {
  background: rgba(201, 168, 76, 0.25);
}
.accom-card--pg .accom-glow {
  background: rgba(74, 50, 40, 0.5);
}

/* Shared Flat — Olive Green */
.accom-card--flat {
  color: var(--cream);
}
.accom-card--flat .accom-gradient {
  background: linear-gradient(160deg, #4A5D3A, #3A4A2E, #5A6B48);
}
.accom-card--flat .accom-blur-circle {
  background: rgba(160, 180, 130, 0.3);
}
.accom-card--flat .accom-glow {
  background: rgba(90, 107, 72, 0.5);
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(18, 53, 36, 0.05);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.5s var(--ease-smooth);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--gray-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-emerald));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--off-black);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gray-soft);
}

.testimonial-cta {
  text-align: center;
  margin-top: 48px;
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-left {
  position: relative;
  background: linear-gradient(160deg, var(--green-deep), var(--green-dark));
  color: var(--cream);
  padding: clamp(40px, 5vw, 60px);
  overflow: hidden;
}

.contact-left-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-left-orb {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  bottom: -80px;
  right: -80px;
}

.contact-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.contact-desc {
  font-size: 0.92rem;
  color: rgba(247, 243, 234, 0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.9rem;
  color: rgba(247, 243, 234, 0.85);
}

.contact-info-item a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-right {
  background: var(--cream-light);
  padding: clamp(40px, 5vw, 60px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--off-black);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(18, 53, 36, 0.1);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--off-black);
  transition: all 0.4s var(--ease-smooth);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-soft);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(18, 53, 36, 0.06), 0 4px 12px rgba(18, 53, 36, 0.08);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239B9B9B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(170deg, var(--green-deep), var(--green-dark));
  color: var(--cream);
  padding: clamp(60px, 8vw, 80px) 0 32px;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(247, 243, 234, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--cream);
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group a {
  font-size: 0.88rem;
  color: rgba(247, 243, 234, 0.6);
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  display: inline-block;
}

.footer-links-group a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.footer-links-group a:hover {
  color: var(--gold);
}

.footer-links-group a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 243, 234, 0.6);
  transition: all 0.4s var(--ease-smooth);
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

.footer-contact-small {
  font-size: 0.82rem;
  color: rgba(247, 243, 234, 0.5);
  line-height: 1.8;
}

.footer-contact-small a {
  color: rgba(247, 243, 234, 0.6);
  transition: color 0.3s;
}

.footer-contact-small a:hover {
  color: var(--gold);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(247, 243, 234, 0.4);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-panel {
    max-width: 500px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .accom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(247, 243, 234, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.5s var(--ease-premium);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .accom-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .consultancy-timer {
    gap: 8px;
  }

  .timer-block {
    padding: 8px 12px;
    min-width: 52px;
  }

  .process-step {
    gap: 20px;
  }

  .step-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
  }

  .process-line {
    left: 26px;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    top: -10px;
    right: 10px;
    font-size: 0.7rem;
    padding: 8px 14px;
  }

  .consultancy-card {
    padding: 32px 24px;
  }
}

/* ═══════════════════════════════════════════════════
   PARTICLE ANIMATION (used by JS)
   ═══════════════════════════════════════════════════ */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-80px) scale(1.2); }
}

/* ═══════════════════════════════════════════════════
   MOUSE FOLLOW LIGHT (used by JS)
   ═══════════════════════════════════════════════════ */
.mouse-light {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03), transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .mouse-light {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  animation: preloaderFadeIn 0.6s ease-out;
}

@keyframes preloaderFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.preloader-icon {
  display: block;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.preloader-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: rgba(247, 243, 234, 0.1);
  border-radius: 4px;
  margin: 0 auto;
  overflow: hidden;
}

.preloader-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  animation: preloaderFill 1.5s var(--ease-premium) forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.4s var(--ease-smooth);
  opacity: 0;
  transform: scale(0.8) translateY(20px);
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--white);
  color: var(--off-black);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s var(--ease-smooth);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid var(--white);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 9989;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-deep);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(18, 53, 36, 0.2);
  transition: all 0.4s var(--ease-smooth);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--green-emerald);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(18, 53, 36, 0.3);
}

/* ═══════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(18, 53, 36, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: rgba(18, 53, 36, 0.12);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--off-black);
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--green-deep);
}

.faq-toggle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--green-deep);
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(18, 53, 36, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-smooth);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--green-deep);
  color: var(--cream);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth), padding 0.5s var(--ease-smooth);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .back-to-top {
    bottom: 84px;
    right: 24px;
    width: 40px;
    height: 40px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 16px;
  }
}
