* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: rgb(0 155 134);
  --primary-bright: rgb(0 190 165);
  --primary-deep: rgb(0 130 112);
  --background: rgb(26 25 25);
  --background-2: rgb(32 31 31);
  --foreground: #ffffff;
  --card: rgb(42 41 41);
  --card-2: rgb(50 48 47);
  --border: rgba(255 255 255 / 0.08);
  --border-strong: rgba(255 255 255 / 0.14);
  --muted: rgba(255 255 255 / 0.6);
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --shadow-glow: 0 0 40px rgba(0, 155, 134,0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--primary); color: var(--background); }
/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: rgba(0, 155, 134,0.4); border-radius: 10px; border: 2px solid var(--background); }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-primary { color: var(--primary); }

/* ---------- Navbar ---------- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(26,25,25,0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); }
.navbar.scrolled { background: rgba(20,19,19,0.92); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6); border-color: var(--border-strong); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; transition: transform 0.3s var(--ease); }
.logo:hover { transform: translateY(-1px); }
.logo-img { height: 46px; width: auto; display: block; }
.logo-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary-bright), var(--primary-deep)); display: flex; align-items: center; justify-content: center; clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%); color: var(--background); box-shadow: var(--shadow-glow); }
.logo-text { font-family: var(--font-display); line-height: 1; }
.logo-title { font-size: 15px; font-weight: 700; letter-spacing: 1.5px; color: var(--primary); }
.logo-subtitle { font-size: 10px; font-weight: 600; letter-spacing: 3px; opacity: 0.7; }
.nav-links { display: none; gap: 28px; }
.nav-links a { position: relative; font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: 0.5px; padding: 4px 0; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--primary); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: none; align-items: center; gap: 18px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; transition: color 0.3s; }
.nav-phone:hover { color: var(--primary); }
.mobile-menu-toggle { display: flex; flex-direction: column; gap: 5px; background: transparent; padding: 8px; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--foreground); border-radius: 2px; transition: all 0.3s var(--ease); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(20,19,19,0.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 24px; flex-direction: column; gap: 16px; z-index: 999; }
.mobile-menu.active { display: flex; animation: slideDown 0.35s var(--ease); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu a { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.5px; padding: 8px 0; transition: color 0.3s, padding-left 0.3s; }
.mobile-menu a:hover { color: var(--primary); padding-left: 6px; }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.5px; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s, background 0.3s, color 0.3s; }
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: linear-gradient(135deg, var(--primary-bright), var(--primary-deep)); color: var(--background); box-shadow: 0 8px 24px -8px rgba(0, 155, 134,0.6); }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent); transform: skewX(-20deg); transition: left 0.6s var(--ease); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px -8px rgba(0, 155, 134,0.7); }
.btn-primary:hover::before { left: 130%; }
.btn-outline { background: rgba(255,255,255,0.02); border: 1px solid var(--border-strong); color: var(--foreground); backdrop-filter: blur(4px); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 28px -12px rgba(0, 155, 134,0.5); }
.btn-large { padding: 17px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 72px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; opacity: 0.35; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: overlay; transform: scale(1.08); animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(0, 155, 134,0.08), transparent 50%), linear-gradient(to bottom right, var(--background), var(--card)); }
.hero-blur { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.3; }
.hero-blur-1 { top: 80px; right: 40px; width: 384px; height: 384px; background: var(--primary); animation: float 9s ease-in-out infinite; }
.hero-blur-2 { bottom: 80px; left: 40px; width: 288px; height: 288px; background: var(--primary); opacity: 0.2; animation: float 11s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }
.hero-container { position: relative; display: grid; gap: 48px; align-items: center; padding: 80px 24px; }
.hero-content > * { opacity: 0; animation: heroIn 0.8s var(--ease) forwards; }
.hero-badge { animation-delay: 0.05s; }
.hero-title { animation-delay: 0.15s; }
.hero-description { animation-delay: 0.25s; }
.hero-buttons { animation-delay: 0.35s; }
.hero-stats { animation-delay: 0.45s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 155, 134,0.1); border: 1px solid rgba(0, 155, 134,0.25); padding: 9px 18px; margin-bottom: 28px; border-radius: 2px; }
.hero-badge svg { color: var(--primary); }
.hero-badge span { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; color: var(--primary); }
.hero-title { font-family: var(--font-display); font-size: clamp(40px, 7vw, 64px); font-weight: 700; line-height: 1.02; margin-bottom: 24px; letter-spacing: -0.5px; }
.hero-title .text-primary { background: linear-gradient(135deg, var(--primary-bright), var(--primary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-description { font-size: 18px; color: var(--muted); margin-bottom: 36px; max-width: 600px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 480px; }
.stat { position: relative; padding-left: 18px; }
.stat::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; background: linear-gradient(var(--primary-bright), transparent); border-radius: 3px; }
.stat-number { font-family: var(--font-display); font-size: clamp(30px, 5vw, 40px); font-weight: 700; color: var(--primary); margin-bottom: 4px; line-height: 1; }
.stat-label { font-size: 14px; color: var(--muted); }
.hero-image { display: none; position: relative; }
.hero-image-glow { position: absolute; inset: -10%; background: radial-gradient(circle, rgba(0, 155, 134,0.25), transparent 65%); filter: blur(60px); }
.hero-image img { position: relative; width: 100%; height: 600px; object-fit: cover; border: 1px solid rgba(0, 155, 134,0.25); clip-path: polygon(0 0, 100% 0, 100% 95%, 90% 100%, 0 100%); transition: transform 0.6s var(--ease); }
.hero-image:hover img { transform: translateY(-6px); }

/* ---------- Sections ---------- */
.section { position: relative; padding: 110px 0; overflow: hidden; scroll-margin-top: 88px; }
.section-alt { background: linear-gradient(to bottom, var(--background-2), var(--card)); }
.section-blur { position: absolute; top: 0; right: 0; width: 384px; height: 384px; background: rgba(0, 155, 134,0.06); border-radius: 50%; filter: blur(110px); pointer-events: none; }
.section-blur-bottom { top: auto; bottom: 0; left: 0; right: auto; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-label { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 3px; color: var(--primary); margin-bottom: 18px; }
.section-header .section-label { justify-content: center; }
.section-label::before, .section-header .section-label::after { content: ''; width: 28px; height: 2px; background: var(--primary); opacity: 0.6; }
.section-label::after { display: none; }
.section-header .section-label::after { display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); font-weight: 700; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-title .text-primary { background: linear-gradient(135deg, var(--primary-bright), var(--primary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 64px; align-items: center; }
.about-subtitle { font-size: 20px; font-family: var(--font-display); font-weight: 700; color: var(--primary); margin-bottom: 32px; }
.about-intro { font-size: 18px; color: var(--muted); margin-bottom: 24px; }
.about-list { list-style: none; margin-bottom: 32px; }
.about-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; transition: transform 0.3s var(--ease); }
.about-list li:hover { transform: translateX(6px); }
.about-icon { background: rgba(0, 155, 134,0.1); border: 1px solid rgba(0, 155, 134,0.25); padding: 7px; flex-shrink: 0; margin-top: 2px; border-radius: 2px; transition: background 0.3s, box-shadow 0.3s; }
.about-list li:hover .about-icon { background: rgba(0, 155, 134,0.2); box-shadow: 0 0 20px rgba(0, 155, 134,0.3); }
.about-icon svg { color: var(--primary); display: block; }
.about-note { font-size: 18px; font-weight: 500; padding-left: 16px; border-left: 3px solid var(--primary); }
.about-more { margin-top: 32px; }
.about-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-image { overflow: hidden; border: 1px solid var(--border); }
.about-image img { width: 100%; height: 256px; object-fit: cover; transition: transform 0.6s var(--ease); }
.about-image:hover img { transform: scale(1.08); }
.about-image-2, .about-image-4 { margin-top: 32px; }

/* ---------- Benefits ---------- */
.benefits-grid { display: grid; gap: 20px; }
.benefit-card { position: relative; display: flex; align-items: flex-start; gap: 22px; background: linear-gradient(160deg, var(--card), var(--background-2)); border: 1px solid var(--border); padding: 28px 30px; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; overflow: hidden; }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--primary-bright), var(--primary-deep)); transform: scaleY(0); transform-origin: top; transition: transform 0.4s var(--ease); }
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(0, 155, 134,0.4); box-shadow: 0 24px 48px -20px rgba(0,0,0,0.7); }
.benefit-card:hover::before { transform: scaleY(1); }
.benefit-icon { flex-shrink: 0; background: rgba(0, 155, 134,0.1); border: 1px solid rgba(0, 155, 134,0.25); width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; border-radius: 2px; transition: background 0.4s, box-shadow 0.4s, transform 0.4s var(--ease); }
.benefit-card:hover .benefit-icon { background: rgba(0, 155, 134,0.2); box-shadow: 0 0 26px rgba(0, 155, 134,0.35); transform: scale(1.06) rotate(-3deg); }
.benefit-icon svg { color: var(--primary); }
.benefit-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.3px; }
.benefit-description { color: var(--muted); line-height: 1.7; align-self: center; }

/* ---------- Program detail page ---------- */
.program-detail { max-width: 900px; margin: 0 auto; }
.program-intro { color: var(--muted); font-size: 17px; line-height: 1.8; margin-bottom: 8px; }
.program-subtitle { font-family: var(--font-display); font-size: clamp(20px, 3vw, 26px); font-weight: 700; letter-spacing: 0.3px; margin-bottom: 8px; }
.program-photo { max-width: 420px; margin: 36px auto 8px; }
.course-subhead { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; margin: 28px 0 16px; }

/* About page */
.bio-grid { display: grid; gap: 32px; align-items: center; margin-bottom: 8px; }
.bio-photo .photo-placeholder { aspect-ratio: 3 / 4; }
.bio-tagline { color: var(--primary); font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: 0.3px; margin-bottom: 20px; }
.bio-quote { color: var(--primary); font-family: var(--font-display); font-weight: 600; font-size: 18px; font-style: italic; }
.about-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.tech-heading { text-align: center; font-family: var(--font-display); font-size: clamp(20px, 3vw, 26px); font-weight: 700; color: var(--primary); text-decoration: underline; text-underline-offset: 6px; margin: 52px 0 40px; }

.tech-grid { display: grid; gap: 24px; margin-bottom: 8px; }
.tech-card { text-align: center; }
.tech-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: 0.4px; margin-bottom: 18px; }

.photo-placeholder { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(160deg, var(--card), var(--background-2)); border: 2px dashed var(--border-strong); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); border-radius: 2px; }
.photo-placeholder svg { color: rgba(255,255,255,0.22); }
.photo-placeholder span { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.3px; }

.course { margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--border); }
.course:first-of-type { border-top: none; }
.course-title { font-family: var(--font-display); font-size: clamp(22px, 3vw, 28px); font-weight: 700; color: var(--primary); text-decoration: underline; text-underline-offset: 5px; letter-spacing: 0.3px; margin-bottom: 20px; }
.course-text { color: var(--muted); font-size: 16px; line-height: 1.9; margin-bottom: 18px; }
.course-price { color: var(--foreground); font-size: 16px; line-height: 1.9; margin-bottom: 18px; }
.course-note { color: var(--muted); font-style: italic; }

/* Two-column course layout (winter + services pages) */
.winter-columns, .services-columns { display: grid; gap: 0 56px; align-items: start; }
.winter-col .course:first-of-type, .services-col .course:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.winter-columns .course, .services-columns .course { display: flex; align-items: flex-start; gap: 20px; }
.course-content { flex: 1; min-width: 0; }
.winter-columns .course-title, .services-columns .course-title { text-decoration: none; font-size: clamp(19px, 2.4vw, 23px); line-height: 1.3; margin-bottom: 14px; }
.winter-columns .course-title::after, .services-columns .course-title::after { content: ''; display: block; width: 90px; height: 3px; background: var(--primary); margin-top: 12px; }
.course-icon { flex-shrink: 0; color: var(--primary); }
.course-icon svg { display: block; }
.course-icon img { display: block; width: 56px; height: 56px; object-fit: contain; }
.course-list { list-style: none; margin-bottom: 18px; }
.course-list li { position: relative; color: var(--muted); font-size: 16px; line-height: 1.7; padding-left: 22px; margin-bottom: 10px; }
.course-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; background: var(--primary); transform: rotate(45deg); }

/* ---------- Photo slider ---------- */
.slider-section { max-width: 900px; margin: 80px auto 0; }
.slider-label { justify-content: center; margin-bottom: 28px; }
.slider-label::after { content: ''; width: 28px; height: 2px; background: var(--primary); opacity: 0.6; display: block; }
.program-slider { position: relative; overflow: hidden; border: 1px solid var(--border); background: var(--background-2); }
.slider-track { display: flex; transition: transform 0.5s var(--ease); }
.slide { min-width: 100%; }
.slide img { width: 100%; height: 480px; object-fit: cover; display: block; }
.slide .photo-placeholder { aspect-ratio: auto; height: 480px; border: none; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(20,19,19,0.55); border: 1px solid var(--border-strong); color: #fff; display: flex; align-items: center; justify-content: center; transition: background 0.3s, border-color 0.3s; z-index: 2; }
.slider-btn:hover { background: var(--primary); border-color: var(--primary); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots { display: flex; gap: 10px; justify-content: center; margin-top: 22px; margin-bottom: 60px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.slider-dot:hover { transform: scale(1.2); }
.slider-dot.active { background: var(--primary); }

/* ---------- Programs ---------- */
.programs-grid { display: grid; gap: 24px; }
.program-card { position: relative; display: block; height: 440px; overflow: hidden; border: 1px solid var(--border); border-top: 4px solid var(--primary); }
.program-image { position: absolute; inset: 0; }
.program-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.program-card:hover .program-image img { transform: scale(1.08); }
.program-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,19,19,0.92) 0%, rgba(20,19,19,0.45) 45%, rgba(20,19,19,0.15) 100%); transition: background 0.4s; }
.program-card:hover .program-overlay { background: linear-gradient(to top, rgba(20,19,19,0.95) 0%, rgba(20,19,19,0.55) 50%, rgba(0, 155, 134,0.12) 100%); }
.program-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px; text-align: center; }
.program-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: 0.4px; margin-bottom: 6px; }
.program-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--primary); opacity: 1; transform: translateY(0); transition: opacity 0.4s, transform 0.4s; }

/* ---------- Partners marquee ---------- */
.partners-marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.partners-track { display: flex; width: max-content; animation: partners-scroll 32s linear infinite; }
.partners-marquee:hover .partners-track { animation-play-state: paused; }
.partners-set { display: flex; align-items: center; gap: 32px; padding-right: 32px; }
@keyframes partners-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-logo { flex: 0 0 auto; width: 180px; height: 92px; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--card), var(--background-2)); border: 1px solid var(--border); border-radius: 2px; color: var(--muted); font-family: var(--font-display); font-weight: 700; letter-spacing: 1.5px; font-size: 15px; transition: border-color 0.3s, color 0.3s, transform 0.3s; }
.partner-logo:hover { border-color: rgba(0, 155, 134,0.4); color: var(--primary); transform: translateY(-4px); }
.partner-logo img { max-width: 78%; max-height: 62%; object-fit: contain; }
.partners-marquee.partners-static { -webkit-mask-image: none; mask-image: none; }
.partners-marquee.partners-static .partners-track { animation: none; width: 100%; justify-content: center; }
.partners-marquee.partners-static .partners-set[aria-hidden="true"] { display: none; }
@media (prefers-reduced-motion: reduce) { .partners-track { animation: none; } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 18px; margin-bottom: 56px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 155, 134,0.92), rgba(0, 155, 134,0.55)); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s var(--ease); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { color: var(--background); transform: scale(0.7); transition: transform 0.4s var(--ease); }
.gallery-item:hover .gallery-overlay svg { transform: scale(1); }
.gallery-cta { text-align: center; }

/* ---------- Contact / Footer ---------- */
.contact-info-simple { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; color: var(--muted); font-size: 18px; }
.contact-info-simple p { transition: color 0.3s; }
.contact-info-simple p:hover { color: var(--foreground); }
.contact-grid { display: grid; gap: 56px; align-items: start; }
.contact-info .section-label { margin-bottom: 18px; }
.contact-lead { font-size: 18px; color: var(--muted); margin: 8px 0 36px; max-width: 460px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-icon { flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(0, 155, 134,0.1); border: 1px solid rgba(0, 155, 134,0.25); border-radius: 2px; color: var(--primary); transition: background 0.3s, box-shadow 0.3s; }
.contact-list li:hover .contact-icon { background: rgba(0, 155, 134,0.2); box-shadow: 0 0 22px rgba(0, 155, 134,0.3); }
.contact-item-label { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; margin-bottom: 2px; }
.contact-item-value { font-size: 17px; font-weight: 500; transition: color 0.3s; }
a.contact-item-value:hover { color: var(--primary); }
.contact-item-note { font-size: 14px; color: var(--muted); margin-top: 4px; }

.contact-socials { margin-top: 32px; }
.contact-socials .contact-item-label { margin-bottom: 12px; }
.contact-socials-row { display: flex; gap: 14px; }

.contact-form-wrap { position: relative; }
.contact-form { position: relative; background: linear-gradient(160deg, var(--card), var(--background-2)); border: 1px solid var(--border); padding: 40px; overflow: hidden; }
.contact-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary-bright), var(--primary-deep)); }
.contact-form-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(0,0,0,0.25); border: 1px solid var(--border-strong); color: var(--foreground); font-family: var(--font-body); font-size: 15px; padding: 13px 16px; border-radius: 2px; transition: border-color 0.3s, box-shadow 0.3s, background 0.3s; }
.form-group textarea { resize: vertical; min-height: 84px; }
.form-group select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e99f1a' 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; padding-right: 42px; }
.form-group select option { background: var(--card); color: var(--foreground); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: rgba(0,0,0,0.35); box-shadow: 0 0 0 3px rgba(0, 155, 134,0.12); }
.contact-form .btn-block { margin-top: 8px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 16px; line-height: 1.5; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 20px; cursor: pointer; font-size: 13px; color: var(--muted); line-height: 1.5; }
.form-consent input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--primary); cursor: pointer; }
.form-consent:hover span { color: var(--foreground); }
.form-consent a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.form-consent a:hover { color: var(--primary-bright); }

/* ---------- Booking modal ---------- */
.modal { display: none; position: fixed; inset: 0; z-index: 2500; padding: 24px; background: rgba(0,0,0,0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); overflow-y: auto; }
.modal.active { display: flex; align-items: flex-start; justify-content: center; animation: fadeIn 0.3s var(--ease); }
.modal-dialog { width: 100%; max-width: 520px; margin: auto; position: relative; animation: modalIn 0.35s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 40px; height: 40px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-strong); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 2px; cursor: pointer; transition: background 0.3s, border-color 0.3s, transform 0.3s; }
.modal-close:hover { background: var(--primary); border-color: var(--primary); color: var(--background); transform: rotate(90deg); }
.contact-map { margin-top: 56px; border: 1px solid var(--border-strong); overflow: hidden; line-height: 0; }
.contact-map iframe { display: block; width: 100%; height: 400px; border: 0; filter: grayscale(0.4) contrast(1.05); transition: filter 0.4s var(--ease); }
.contact-map:hover iframe { filter: grayscale(0) contrast(1); }
.footer { background: var(--background); border-top: 1px solid var(--border); padding: 48px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer-copyright { font-size: 14px; color: var(--muted); order: 3; }
.footer-socials { display: flex; gap: 14px; order: 1; }
.footer-social { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--border-strong); color: var(--muted); border-radius: 2px; transition: all 0.3s var(--ease); }
.footer-social:hover { color: var(--background); background: var(--primary); border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.footer-link { order: 2; font-size: 14px; color: var(--muted); border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s; }
.footer-link:hover { color: var(--primary); border-color: var(--primary); }
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
  .footer-copyright { order: 0; text-align: left; }
  .footer-socials { order: 0; }
  .footer-link { order: 0; }
}

/* ---------- Legal page ---------- */
.legal { max-width: 800px; margin: 0 auto; }
.legal p { color: var(--muted); font-size: 17px; margin-bottom: 20px; }
.legal h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: 0.3px; margin: 40px 0 16px; padding-left: 16px; border-left: 3px solid var(--primary); }
.legal ul { list-style: none; margin-bottom: 20px; }
.legal li { position: relative; color: var(--muted); font-size: 17px; padding-left: 26px; margin-bottom: 12px; }
.legal li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--primary); transform: rotate(45deg); }
.legal a { border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.legal a:hover { border-color: var(--primary); }

/* ---------- Lightbox ---------- */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 2000; align-items: center; justify-content: center; padding: 40px; }
.lightbox.active { display: flex; animation: fadeIn 0.3s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: white; padding: 12px; transition: all 0.3s var(--ease); display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 2px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); border-color: var(--primary); color: var(--background); transform: scale(1.08); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-image { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }

/* ---------- Gallery page ---------- */
.gallery-hero { padding: 130px 0 64px; background: linear-gradient(to bottom, var(--background-2), var(--card)); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 14px; margin-bottom: 24px; transition: color 0.3s, gap 0.3s; }
.gallery-hero .back-link { display: flex; width: fit-content; }
.back-link:hover { color: var(--primary); gap: 12px; }
.gallery-hero-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); font-weight: 700; margin-bottom: 16px; }
.gallery-hero-description { font-size: 18px; color: var(--muted); }
.gallery-categories { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; justify-content: center; }
.category-btn { background: transparent; border: 1px solid var(--border-strong); color: var(--foreground); padding: 12px 24px; font-family: var(--font-display); font-weight: 700; font-size: 14px; transition: all 0.3s var(--ease); }
.category-btn:hover, .category-btn.active { background: var(--primary); border-color: var(--primary); color: var(--background); transform: translateY(-2px); }
.gallery-grid-full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.gallery-item.hidden { display: none; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; gap: 28px; }
.blog-card { display: flex; flex-direction: column; background: linear-gradient(160deg, var(--card), var(--background-2)); border: 1px solid var(--border); overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; }
.blog-card:hover { transform: translateY(-8px); border-color: rgba(0, 155, 134,0.4); box-shadow: 0 24px 48px -20px rgba(0,0,0,0.7); }
.blog-card-image { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-image .photo-placeholder { aspect-ratio: auto; width: 100%; height: 100%; border: none; }
.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 28px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.blog-cat { color: var(--primary); }
.blog-date { color: var(--muted); position: relative; padding-left: 14px; }
.blog-date::before { content: ''; position: absolute; left: 0; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--muted); transform: translateY(-50%); }
.blog-card-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1.25; margin-bottom: 12px; }
.blog-card-excerpt { color: var(--muted); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.blog-readmore { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--primary); transition: gap 0.3s; }
.blog-card:hover .blog-readmore { gap: 11px; }

/* Blog article (detail) */
.article-hero-meta { margin-bottom: 16px; }
.article-cover { max-width: 800px; margin: 0 auto 40px; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--border); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 17px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .hero-container { grid-template-columns: 1.05fr 0.95fr; }
  .hero-image { display: block; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .winter-columns, .services-columns { grid-template-columns: repeat(2, 1fr); }
  .bio-grid { grid-template-columns: 0.85fr 1.15fr; gap: 44px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 767px) {
  .section { padding: 72px 0; }
  .hero-stats { gap: 16px; }
}

/* Toast notifications (lead form feedback) */
.toast-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: calc(100% - 32px);
  max-width: 440px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--primary);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(-18px) scale(0.98);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.toast.show { opacity: 1; transform: translateY(0) scale(1); }
.toast--error { border-left-color: #e5484d; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5); }
.toast-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 155, 134, 0.16);
  color: var(--primary);
}
.toast--error .toast-icon { background: rgba(229, 72, 77, 0.16); color: #e5484d; }
.toast-msg { flex: 1; }
.toast-close {
  margin-left: 6px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.2s var(--ease);
}
.toast-close:hover { color: var(--foreground); }

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: rgba(20, 19, 19, 0.97);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -10px 40px -12px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 18px 0;
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  margin: 0;
  flex: 1 1 320px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner .btn { white-space: nowrap; padding: 11px 22px; }
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-actions { justify-content: center; }
  .cookie-banner .btn { flex: 1; }
}
