/* ============================================================
   EUROTECH SOLUTIONS — Global Stylesheet
   Palette: Milk/Cream, Emerald, White
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --cream:       #F7F5F0;
  --milk:        #FDFCFA;
  --emerald:     #1A6B4A;
  --emerald-mid: #2E8B67;
  --emerald-light: #4CAF80;
  --emerald-pale: rgba(26, 107, 74, 0.08);
  --white:       #FFFFFF;
  --text-dark:   #1C1C1C;
  --text-mid:    #4A4A4A;
  --text-light:  #888888;
  --border:      rgba(26, 107, 74, 0.15);
  --shadow-sm:   0 2px 16px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --glass-bg:    rgba(255,255,255,0.55);
  --glass-blur:  blur(18px);
  --glass-border: rgba(255,255,255,0.7);
  --radius:      12px;
  --radius-lg:   24px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', 'Helvetica Neue', sans-serif;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

h1 { font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  display: inline-block;
  margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.container { max-width: 1260px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--emerald { background: var(--emerald); color: var(--white); }

/* ---------- Liquid Glass ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.glass--dark {
  background: rgba(26, 107, 74, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.22);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav__logo span {
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  transition: color 0.3s ease;
}

/* When nav gets glass background (scrolled), switch to dark */
.nav.scrolled .nav__logo {
  color: var(--emerald);
  text-shadow: none;
}

.nav.scrolled .nav__logo span {
  color: var(--text-dark);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  transition: color var(--transition);
}

.nav.scrolled .nav__link {
  color: var(--text-mid);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--emerald);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active { color: var(--white); }

.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active { color: var(--emerald); }

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta {
  background: rgba(255,255,255,0.18);
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.55);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav__cta:hover {
  background: rgba(255,255,255,0.30);
  transform: translateY(-1px);
}

.nav.scrolled .nav__cta {
  background: var(--emerald);
  border-color: var(--emerald);
  box-shadow: 0 4px 14px rgba(26,107,74,0.3);
}

.nav.scrolled .nav__cta:hover {
  background: var(--emerald-mid);
  box-shadow: 0 6px 20px rgba(26,107,74,0.4);
}

.nav__cta::after { display: none !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile .nav__link {
  font-size: 1.1rem;
}

/* ---------- Nav on cream/light hero (index.html) ---------- */
.nav--light .nav__logo {
  color: var(--emerald);
  text-shadow: none;
}

.nav--light .nav__logo span {
  color: var(--text-dark);
}

.nav--light .nav__link {
  color: var(--text-mid);
}

.nav--light .nav__link:hover,
.nav--light .nav__link.active {
  color: var(--emerald);
}

.nav--light .nav__cta {
  background: var(--emerald);
  border-color: var(--emerald);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 14px rgba(26,107,74,0.3);
}

.nav--light .nav__cta:hover {
  background: var(--emerald-mid);
  box-shadow: 0 6px 20px rgba(26,107,74,0.4);
}

/* Once scrolled, nav--light behaves same as default scrolled */
.nav--light.scrolled .nav__logo { color: var(--emerald); }
.nav--light.scrolled .nav__logo span { color: var(--text-dark); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,107,74,0.3);
}

.btn--primary:hover {
  background: var(--emerald-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,107,74,0.4);
}

.btn--outline {
  border: 1.5px solid var(--emerald);
  color: var(--emerald);
}

.btn--outline:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Animated mesh gradient */
.hero__mesh {
  position: absolute;
  inset: -50%;
  background: 
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(26,107,74,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(76,175,128,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 60% 20%, rgba(26,107,74,0.07) 0%, transparent 70%);
  animation: meshFloat 12s ease-in-out infinite;
}

@keyframes meshFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(3%, 2%) scale(1.04); }
  66%       { transform: translate(-2%, 3%) scale(0.97); }
}

/* Orbiting circles */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  animation: orbFloat var(--dur, 8s) ease-in-out infinite var(--delay, 0s);
}

.hero__orb--1 {
  width: 400px; height: 400px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(26,107,74,0.13) 0%, transparent 70%);
  --dur: 10s;
}

.hero__orb--2 {
  width: 250px; height: 250px;
  bottom: 10%; left: 5%;
  background: radial-gradient(circle, rgba(76,175,128,0.10) 0%, transparent 70%);
  --dur: 7s; --delay: -2s;
}

.hero__orb--3 {
  width: 180px; height: 180px;
  top: 40%; right: 15%;
  background: radial-gradient(circle, rgba(26,107,74,0.08) 0%, transparent 70%);
  --dur: 9s; --delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero__title {
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
  margin-bottom: 1.8rem;
}

.hero__title em {
  font-style: italic;
  color: var(--emerald);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
  margin-bottom: 2.8rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}

/* ---------- DYNAMIC EVENT VISUALIZER (hero right) ---------- */
.hero__visual {
  position: absolute;
  right: 0; top: 0;
  width: 48%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.event-canvas {
  width: 520px;
  height: 520px;
  position: relative;
}

/* Stage */
.ec-stage {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 12px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(26,107,74,0.6);
  animation: stagePulse 2.5s ease-in-out infinite;
}

@keyframes stagePulse {
  0%, 100% { box-shadow: 0 0 30px rgba(26,107,74,0.5), 0 0 60px rgba(26,107,74,0.2); }
  50%       { box-shadow: 0 0 50px rgba(26,107,74,0.8), 0 0 100px rgba(26,107,74,0.3); }
}

/* Spotlights */
.ec-light {
  position: absolute;
  bottom: 72px;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 280px solid rgba(26,107,74,0.08);
  filter: blur(8px);
  transform-origin: bottom center;
}

.ec-light--1 { left: 60px; transform: rotate(-25deg); animation: lightSway1 4s ease-in-out infinite; }
.ec-light--2 { left: 50%; transform: translateX(-50%) rotate(0deg); animation: lightSway2 5s ease-in-out infinite; }
.ec-light--3 { right: 60px; transform: rotate(25deg); animation: lightSway3 4.5s ease-in-out infinite; }

@keyframes lightSway1 {
  0%, 100% { transform: rotate(-25deg); opacity: 0.7; }
  50%       { transform: rotate(-10deg); opacity: 1; }
}
@keyframes lightSway2 {
  0%, 100% { transform: translateX(-50%) rotate(5deg); opacity: 0.8; }
  50%       { transform: translateX(-50%) rotate(-5deg); opacity: 0.5; }
}
@keyframes lightSway3 {
  0%, 100% { transform: rotate(25deg); opacity: 0.6; }
  50%       { transform: rotate(12deg); opacity: 1; }
}

/* Particles / confetti */
.ec-particle {
  position: absolute;
  border-radius: 50%;
  animation: particleRise var(--dur,4s) ease-in-out infinite var(--delay,0s);
  opacity: 0;
}

@keyframes particleRise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(-320px) scale(0.4); opacity: 0; }
}

/* Crowd silhouettes */
.ec-crowd {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.ec-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  animation: personBounce var(--dur,1.2s) ease-in-out infinite var(--delay,0s);
}

.ec-person__head {
  width: 10px; height: 10px;
  background: var(--text-mid);
  border-radius: 50%;
  opacity: 0.5;
}

.ec-person__body {
  width: 8px;
  height: var(--h, 22px);
  background: var(--text-mid);
  border-radius: 2px;
  opacity: 0.4;
}

@keyframes personBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(calc(var(--lift, -4px))); }
}

/* Sound waves */
.ec-wave {
  position: absolute;
  border: 1.5px solid rgba(26,107,74,0.25);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: waveExpand 3s ease-out infinite var(--delay,0s);
}

@keyframes waveExpand {
  0%   { transform: translate(-50%, -50%) scale(0.2); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Glass card floating */
.ec-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  font-size: 0.78rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.ec-card--1 {
  top: 60px; right: 20px;
  animation: cardFloat1 6s ease-in-out infinite;
}

.ec-card--2 {
  top: 160px; left: 10px;
  animation: cardFloat2 7s ease-in-out infinite -2s;
}

.ec-card--3 {
  bottom: 160px; right: 10px;
  animation: cardFloat3 5.5s ease-in-out infinite -1s;
}

@keyframes cardFloat1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}
@keyframes cardFloat2 {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50%       { transform: translateY(-16px) rotate(-0.5deg); }
}
@keyframes cardFloat3 {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50%       { transform: translateY(-10px) rotate(1.5deg); }
}

.ec-card__dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  margin-right: 6px;
  animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ---------- SCROLL REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ---------- COUNTERS (Stats) ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.stat-item:hover::before { transform: scaleX(1); }
.stat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- SERVICE CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(135deg, var(--emerald-pale), transparent);
  transition: height var(--transition);
}

.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(26,107,74,0.3); }

.service-card__icon {
  width: 54px; height: 54px;
  background: var(--emerald-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--emerald);
}

.service-card__icon svg {
  width: 26px; height: 26px;
  color: var(--emerald);
  transition: color var(--transition);
}

.service-card:hover .service-card__icon svg { color: var(--white); }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  position: relative;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  position: relative;
}

/* ---------- PROCESS TIMELINE ---------- */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
  position: relative;
}

.process-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 52px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--emerald), var(--border));
}

.process-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--emerald);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-item:hover .process-num {
  background: var(--emerald);
  color: var(--white);
  transform: scale(1.1);
}

.process-content { padding-top: 0.8rem; }
.process-content h4 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; }
.process-content p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ---------- PORTFOLIO / GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 1rem;
}

.gallery-item {
  background: var(--emerald-pale);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 7; }
.gallery-item:nth-child(5) { grid-column: span 5; }

.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,107,74,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__label {
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* Gallery SVG scenes */
.gallery-scene {
  width: 100%;
  height: 100%;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--emerald);
  opacity: 0.12;
  position: absolute;
  top: 0.5rem; left: 2rem;
  line-height: 1;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
  position: relative;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--emerald-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--emerald);
}

.testimonial-card__name { font-weight: 500; font-size: 0.9rem; }
.testimonial-card__role { font-size: 0.8rem; color: var(--text-light); }

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-mid);
}

.slider-btn:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--emerald);
}

/* ---------- TEAM CARDS ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.team-card__photo {
  height: 200px;
  background: linear-gradient(135deg, var(--emerald-pale), rgba(76,175,128,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card__photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
}

.team-card__initials {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--emerald);
  opacity: 0.4;
}

.team-card__info { padding: 1.5rem; }
.team-card__name { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.3rem; }
.team-card__role { font-size: 0.8rem; color: var(--emerald); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- CONTACT FORM ---------- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.6rem;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(26,107,74,0.1);
  background: var(--white);
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: rgba(26,107,74,0.3); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.6rem;
  cursor: pointer;
  background: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
  user-select: none;
}

.faq-item.open .faq-question { color: var(--emerald); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-mid);
}

.faq-item.open .faq-icon {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--white);
}

.faq-answer-inner {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0F1F18;
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand .nav__logo {
  color: var(--emerald-light);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}

.footer__brand .nav__logo span { color: rgba(255,255,255,0.6); }

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
}

.footer__social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  font-size: 0.85rem;
}

.footer__social-link:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.4rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--emerald-light); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.footer__contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--emerald-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--emerald) 0%, #0F3D2A 100%);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.page-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(76,175,128,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero .section-label { color: rgba(255,255,255,0.65); }
.page-hero__desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-top: 1rem; max-width: 540px; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ---------- HIGHLIGHT BAND ---------- */
.highlight-band {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-mid));
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.highlight-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  animation: bandOrb 8s ease-in-out infinite;
}

@keyframes bandOrb {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-20px, 20px); }
}

/* ---------- PRICING CARDS ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card--featured {
  border-color: var(--emerald);
  background: linear-gradient(135deg, #F0FAF5 0%, var(--white) 100%);
  box-shadow: 0 8px 40px rgba(26,107,74,0.15);
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.pricing-badge {
  display: inline-block;
  background: var(--emerald);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.pricing-name { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.4rem; }
.pricing-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.8rem; }

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--emerald);
  font-weight: 300;
  margin-bottom: 1.8rem;
}

.pricing-price span { font-size: 0.9rem; font-family: var(--font-body); color: var(--text-light); }

.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-features li svg { width: 14px; height: 14px; color: var(--emerald); flex-shrink: 0; }

/* ---------- MAP / LOCATION ---------- */
.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--emerald-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* ---------- LOADING SCREEN ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--emerald);
  letter-spacing: 0.05em;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.97); }
  50%       { opacity: 1; transform: scale(1); }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- CURSOR FOLLOWER ---------- */
/* ---------- PROGRESS BAR ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s ease;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,107,74,0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 99;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--emerald-mid); transform: translateY(-3px); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  /* Hero: stack vertically */
  .hero {
    min-height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 72px;
    padding-bottom: 0;
  }

  .hero > .container {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__tagline { text-align: center; }

  .hero__actions {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__desc { margin-left: auto; margin-right: auto; }

  /* Show visual below content */
  .hero__visual {
    position: relative;
    top: auto; right: auto;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
  }

  .event-canvas {
    width: 100%;
    max-width: 420px;
    height: 380px;
  }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { display: flex; flex-wrap: wrap; }
  .gallery-item { flex: 1 1 250px; height: 200px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .event-canvas {
    max-width: 340px;
    height: 320px;
  }
}
