/* ── RESET & TOKENS ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --bg: #080808; --surface: #0f0f0f; --card: #131313; --border: rgba(255, 255, 255, 0.07); --fg: #f0ece4; --muted: #5a5a5a; --orange: #f36f21; --red: #e53935; --grad: linear-gradient(135deg, #f36f21, #e53935); --font-display: "Outfit", sans-serif; --font-body: "Plus Jakarta Sans", sans-serif; --font-mono: "Syne Mono", monospace; }
[data-theme="light"] { --bg: #f8fafc; --surface: #ffffff; --card: #ffffff; --border: rgba(0, 0, 0, 0.1); --fg: #0f172a; --muted: #64748b; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: 16px; line-height: 1.6; overflow-x: hidden;  transition: background 0.3s, color 0.3s; }
@media (max-width: 768px) { body {  } }
::selection { background: var(--orange); color: #000; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit;  border: none; background: none; }
input, textarea { font-family: inherit; color: var(--fg); }

/* ── GRAIN OVERLAY ──────────────────────────── */
body::before { content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); background-size: 200px; mix-blend-mode: overlay; }

/* ── COMMON ─────────────────────────────────── */
.max-w { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .max-w { padding: 0 24px; } }


/* ── SCROLL PROGRESS & PRELOADER ────────────── */
#prog { position: fixed; top: 0; left: 0; z-index: 99998; height: 2px; background: var(--grad); width: 0%; transition: width 0.05s linear; }
#preloader { position: fixed; inset: 0; z-index: 999999; background: var(--bg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; transition: opacity 0.8s ease, visibility 0.8s ease; }
#preloader .pl-logo img { width: 120px; height: 120px; animation: plPulse 1.2s ease-in-out infinite alternate; }
@keyframes plPulse { from { transform: scale(0.9); } to { transform: scale(1.1); } }
#preloader.done { opacity: 0; visibility: hidden; }

/* ── NAV ────────────────────────────────────── */
nav, .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 70px; display: flex; align-items: center; padding: 0 40px; transition: background 0.4s, border-color 0.4s; border-bottom: 1px solid transparent; }
nav.scrolled, .navbar.scrolled { background: rgba(8, 8, 8, 0.92); backdrop-filter: blur(24px); border-color: var(--border); }
.glass-nav { background: rgba(8, 8, 8, 0.72); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-link img { height: 36px; width: auto; transition: transform 0.3s; }
.logo-link:hover img { transform: scale(1.05); }
.nav-login { font-size: 13px; font-weight: 600; padding: 8px 20px; border: 1px solid var(--border); border-radius: 100px; color: var(--fg); transition: border-color 0.2s, color 0.2s; white-space: nowrap; }
.nav-login:hover { border-color: var(--orange); color: var(--orange); }
[data-theme="light"] nav.scrolled { background: rgba(255, 255, 255, 0.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1400px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--fg); letter-spacing: -0.3px; }
.nav-logo img { height: 38px; width: auto; transition: transform 0.3s; }
.logo-light { display: none; }
[data-theme="light"] .logo-dark { display: none; }
[data-theme="light"] .logo-light { display: block; }
.nav-logo:hover img { transform: scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 36px; position: relative; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.3px; color: var(--muted); transition: color 0.2s; position: relative;  }
.nav-links a::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--orange); transition: width 0.25s; }
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active-section { color: var(--fg); }
.nav-links a.active-section::after { width: 100%; height: 2px; }
#nav-indicator { position: absolute; bottom: -8px; height: 2px; background: var(--grad); border-radius: 2px; transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1), width 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s; opacity: 0; box-shadow: 0 0 8px rgba(243,111,33,0.6); }

/* ── BUTTONS ────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; gap: 7px; padding: 10px 22px; background: var(--grad); border-radius: 100px; font-size: 13px; font-weight: 600; color: #fff; transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;  }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(243, 111, 33, 0.35); color: #fff; }
.btn-ghost { display: inline-flex; align-items: center; gap: 7px; padding: 10px 22px; border: 1px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--muted); transition: color 0.2s, border-color 0.2s;  }
.btn-ghost:hover { color: var(--fg); border-color: rgba(255, 255, 255, 0.2); }
[data-theme="light"] .btn-ghost:hover { border-color: rgba(0, 0, 0, 0.2); }
.theme-toggle-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); color: var(--fg);  transition: border-color 0.2s, background 0.2s; }
.theme-toggle-btn:hover { border-color: var(--orange); background: rgba(243, 111, 33, 0.1); }
.theme-toggle-btn .sun-icon { display: none; }
.theme-toggle-btn .moon-icon { display: block; }
[data-theme="light"] .theme-toggle-btn .sun-icon { display: block; }
[data-theme="light"] .theme-toggle-btn .moon-icon { display: none; }

/* ── MOBILE MENU ────────────────────────────── */
#mob-toggle { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--fg); border: none; background: none; }
@media (max-width: 900px) { .nav-links, .nav-cta { display: none; } #mob-toggle { display: flex; } .theme-toggle-btn { margin-right: 15px; } }
#mob-menu { position: fixed; inset: 0; z-index: 999; background: var(--bg); display: flex; flex-direction: column; padding: 100px 40px 40px; transform: translateX(100%); transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
#mob-menu.open { transform: translateX(0); }
#mob-menu > a { font-family: var(--font-display); font-size: clamp(28px, 8vw, 48px); font-weight: 800; color: var(--fg); border-bottom: 1px solid var(--border); padding: 18px 0; transition: color 0.2s;  }
#mob-menu > a:hover { color: var(--orange); }

/* ── SECTION WITH BG ────────────────────────── */
.section-with-bg { position: relative; }
.bg-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(243,111,33,0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 90% 100%, rgba(229,57,53,0.05) 0%, transparent 50%); pointer-events: none; z-index: 0; }

/* ── HERO ───────────────────────────────────── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 100px 0 80px; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; animation: orbFloat 14s ease-in-out infinite; z-index: 0; }
.orb-1 { width: 600px; height: 600px; background: rgba(243, 111, 33, 0.18); top: -10%; left: -10%; animation-delay: 0s; filter: blur(80px) !important; opacity: 0.18 !important; }
.orb-2 { width: 500px; height: 500px; background: rgba(229, 57, 53, 0.14); bottom: 0; right: -5%; animation-delay: -5s; filter: blur(100px) !important; opacity: 0.14 !important; }
.orb-3 { width: 300px; height: 300px; background: rgba(243, 111, 33, 0.1); top: 40%; left: 50%; animation-delay: -8s; }
@keyframes orbFloat { 0% { transform: translate(0, 0) scale(1); } 33% { transform: translate(40px, -60px) scale(1.08); } 66% { transform: translate(-30px, 30px) scale(0.93); } 100% { transform: translate(0, 0) scale(1); } }
#hero::after { content: ""; position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(243,111,33,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(243,111,33,0.04) 1px, transparent 1px); background-size: 60px 60px; animation: grid-drift 20s linear infinite; pointer-events: none; }
@keyframes grid-drift { 0% { background-position: 0 0, 0 0; } 100% { background-position: 60px 60px, 60px 60px; } }
#hero::before { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(243,111,33,0.4), transparent); animation: scanline 5s ease-in-out infinite; z-index: 1; pointer-events: none; }
@keyframes scanline { 0% { top: 0%; opacity: 0; } 5% { opacity: 1; } 95% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(128, 128, 128, 0.05); border: 1px solid var(--border); border-radius: 100px; padding: 8px 16px; font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 28px; backdrop-filter: blur(8px); width: fit-content; }
[data-theme="light"] .hero-badge { background: rgba(255, 255, 255, 0.8); }
.hero-title { font-family: var(--font-display); font-size: clamp(54px, 7vw, 110px); font-weight: 800; line-height: 0.95; letter-spacing: -3px; color: var(--fg); margin-bottom: 30px; position: relative; z-index: 1; }
.hero-title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-title .outline { -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.25); color: transparent; }
[data-theme="light"] .hero-title .outline { -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.15); }
.hero-sub-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.hero-desc { max-width: 480px; font-size: clamp(15px, 1.5vw, 17px); color: var(--muted); line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; margin-top: 36px; }
.hero-actions .btn-primary { padding: 14px 32px; font-size: 14px; }
.hero-actions .btn-secondary { padding: 14px 28px; font-size: 14px; background: var(--surface); border: 1px solid var(--border); color: var(--fg); border-radius: 12px; display: flex; align-items: center; gap: 10px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); font-weight: 600; }
.hero-actions .btn-secondary:hover { background: var(--card); border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
.hero-actions .btn-text { padding: 14px 20px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; font-weight: 500; }
.hero-actions .btn-text:hover { color: var(--orange); transform: translateX(4px); }
.hero-stats { display: flex; gap: 32px; }
.hero-stat .num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--fg); line-height: 1; }
.hero-stat .lbl { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; margin-top: 4px; }
.hero-animate { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.hero-animate.revealed { opacity: 1; transform: translateY(0); }

/* ── MARQUEE ────────────────────────────────── */
.marquee-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 10px; padding: 0 36px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--muted); white-space: nowrap; letter-spacing: -0.2px; transition: color 0.2s;  }
.marquee-item:hover { color: var(--orange); }
.marquee-item .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); margin-left: 36px; flex-shrink: 0; }
@keyframes marqueeScroll { to { transform: translateX(-33.3333%); } }

/* ── SECTIONS SHARED ────────────────────────── */
section { padding: 120px 40px; }
.max-w { max-width: 1280px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.section-label::before { content: ""; width: 20px; height: 1px; background: var(--orange); }
.section-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 5vw, 64px); letter-spacing: -2px; line-height: 1.05; color: var(--fg); }
.section-title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── STATS BELT ─────────────────────────────── */
#stats { background: var(--surface); padding: 80px 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: var(--card); backdrop-filter: blur(12px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15); }
.stat-item { padding: 50px 40px; border-right: 1px solid var(--border); position: relative; overflow: hidden; transition: background 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { transform: translateY(-4px) scale(1.03); }
.stat-item::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity 0.3s; }
.stat-item:hover::before { opacity: 0.04; }
[data-theme="light"] .stat-item:hover::before { opacity: 0.1; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 56px; letter-spacing: -3px; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* ── EVENTS ─────────────────────────────────── */
#events { background: var(--bg); }
.events-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 20px; flex-wrap: wrap; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); transition: all 0.2s;  }
.filter-btn.active { background: var(--grad); border-color: transparent; color: #fff; }
.filter-btn:hover:not(.active) { border-color: rgba(128, 128, 128, 0.5); color: var(--fg); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease; transform-style: preserve-3d;  position: relative; isolation: isolate; }
.event-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(243, 111, 33, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(243, 111, 33, 0.2); }
.event-card::after { content: ""; position: absolute; top: -50%; left: -75%; width: 50%; height: 200%; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%); transform: skewX(-20deg); transition: left 0.6s ease; pointer-events: none; }
.event-card:hover::after { left: 150%; }
.event-card.hidden-card { display: none !important; }
.ec-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.ec-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.event-card:hover .ec-img img { transform: scale(1.07); }
.ec-img .ec-tag { position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; backdrop-filter: blur(12px); }
.ec-tag.open { background: rgba(34, 197, 94, 0.15); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.ec-tag.soon { background: rgba(255, 255, 255, 0.08); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }
.ec-body { padding: 24px; }
.ec-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ec-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); font-family: var(--font-mono); }
.ec-date { font-size: 11px; color: var(--muted); margin-left: auto; }
.ec-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.4px; line-height: 1.25; color: var(--fg); margin-bottom: 10px; transition: color 0.2s; }
.event-card:hover .ec-title { color: var(--orange); }
.ec-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── GALLERY ────────────────────────────────── */
#gallery { background: var(--surface); }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 280px 240px 260px; gap: 16px; }
.bento-item { border-radius: 16px; overflow: hidden; position: relative;  background: #000; }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-mid { grid-column: span 2; }
.bento-wide { grid-column: span 4; }
.bento-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.bento-item:hover img { transform: scale(1.06); }

/* ── TEAM ───────────────────────────────────── */
#team { background: var(--bg); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; text-align: center; padding: 36px 24px 28px; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease; transform-style: preserve-3d;  position: relative; }
.team-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(243, 111, 33, 0.4); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(243, 111, 33, 0.1); }
.team-card::after { content: ""; position: absolute; top: -50%; left: -75%; width: 50%; height: 200%; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%); transform: skewX(-20deg); transition: left 0.6s ease; pointer-events: none; }
.team-card:hover::after { left: 150%; }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden; border: 2px solid var(--border); transition: border-color 0.3s; }
.team-card:hover .team-avatar { border-color: var(--orange); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--fg); margin-bottom: 4px; }
.team-role { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); font-family: var(--font-mono); }

/* ── TESTIMONIALS ───────────────────────────── */
#testimonials { background: var(--surface); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;  }
.review-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(243, 111, 33, 0.2); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review-stars svg { width: 14px; height: 14px; fill: var(--orange); }
.review-text { font-size: 14.5px; line-height: 1.75; color: var(--muted); margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.review-author-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--fg); }
.review-author-role { font-size: 11px; color: var(--orange); font-family: var(--font-mono); }

/* ── FAQ ────────────────────────────────────── */
#faq { background: var(--bg); }
.faq-wrap { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; flex: 1; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; gap: 20px; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--fg); text-align: left;  transition: color 0.2s; }
.faq-q:hover { color: var(--orange); }
.faq-icon { width: 30px; height: 30px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all 0.3s; }
.faq-item.open .faq-icon { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-a { font-size: 14.5px; line-height: 1.8; color: var(--muted); max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ── CONTACT & NEW CLEAN CONTACT FORM ───────── */
#contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-left { position: relative; isolation: isolate; }
.contact-office-img { position: relative; z-index: 0; overflow: hidden; border-radius: 16px; margin-bottom: 36px; }
.contact-office-img img { width: 100%; height: 220px; object-fit: cover; display: block; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.contact-info-wrapper { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.contact-info-item { margin-bottom: 0 !important; position: relative; z-index: 2; }
.contact-info-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-family: var(--font-mono); }
.contact-info-value { font-size: 15px; color: var(--fg); }

/* Form Mimarisinin En Gelişmiş Hali */
.clean-contact-form { display: flex; flex-direction: column; gap: 24px; background: var(--card); padding: 40px; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
[data-theme="dark"] .clean-contact-form { box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.ccf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ccf-group { display: flex; flex-direction: column; gap: 8px; }
.ccf-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }

.ccf-input, .ccf-textarea { 
  width: 100%; padding: 16px 20px; background: var(--bg); border: 1px solid var(--border); 
  border-radius: 12px; color: var(--fg); font-size: 15px; font-family: inherit; 
  outline: none; transition: all 0.2s; appearance: none;
}
select.ccf-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f0ece4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
[data-theme="light"] select.ccf-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
.ccf-textarea { min-height: 140px; resize: vertical; }
.ccf-input:focus, .ccf-textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(243, 111, 33, 0.1); }
.ccf-submit { align-self: flex-start; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; background: var(--grad); color: #fff; border: none; border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; margin-top: 8px; }
.ccf-checkbox-group { display: flex; flex-direction: row; align-items: flex-start; gap: 12px; margin-top: 25px; }
.ccf-checkbox-group input[type="checkbox"] { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--orange); cursor: pointer; }
.ccf-checkbox-group label { font-size: 14px; color: var(--muted); line-height: 1.6; cursor: pointer; }

/* ── TOAST ──────────────────────────────────── */
#toast { position: fixed; bottom: 120px; right: 30px; z-index: 99000; background: var(--card); border: 1px solid rgba(34, 197, 94, 0.3); border-radius: 14px; padding: 16px 22px; display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--fg); transform: translateY(20px); opacity: 0; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
[data-theme="light"] #toast { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
#toast.show { transform: translateY(0); opacity: 1; }
#toast .toast-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(34, 197, 94, 0.12); color: #22c55e; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#toast .toast-icon svg { width: 16px; height: 16px; }
#toast .toast-title { font-weight: 700; font-size: 13px; }
#toast .toast-sub { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* ── FOOTER ─────────────────────────────────── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 40px 40px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 40px; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 24px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--fg); }
.footer-logo img { height: 36px; width: auto; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s;  position: relative; overflow: hidden; }
.footer-links a::after { content: ""; position: absolute; bottom: -2px; left: -100%; width: 100%; height: 1px; background: var(--orange); transition: left 0.3s ease; }
.footer-links a:hover::after { left: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); color: var(--muted); display: flex; align-items: center; justify-content: center; transition: all 0.2s;  }
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-social a svg { width: 15px; height: 15px; }
.footer-bottom { padding-top: 30px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-signature { color: var(--orange) !important; font-weight: 700; text-decoration: none; font-size: 14px; transition: opacity 0.2s; }

/* ── BACK TO TOP ────────────────────────────── */
#btt-new { position: fixed !important; bottom: 120px !important; right: 30px !important; width: 56px !important; height: 56px !important; border-radius: 50% !important; background: var(--fg) !important; color: var(--bg) !important; display: flex !important; align-items: center !important; justify-content: center !important; border: 2px solid var(--border) !important; cursor: pointer !important; z-index: 99999 !important; opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; transform: translateY(20px) scale(0.8) !important; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important; }
#btt-new.is-visible { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; transform: translateY(0) scale(1) !important; }
#btt-new:hover { background: var(--orange) !important; color: #fff !important; transform: translateY(-5px) scale(1.1) !important; box-shadow: 0 15px 40px rgba(243, 111, 33, 0.4) !important; }
#btt-new.launching { animation: rocket-launch 0.6s cubic-bezier(0.45, 0, 0.55, 1) forwards !important; }
@keyframes rocket-launch { 0% { transform: translateY(0) scale(1); } 30% { transform: translateY(10px) scale(0.9); } 100% { transform: translateY(-100vh) scale(1.2); opacity: 0; } }

/* ── RESPONSIVE OVERRIDES ───────────────────── */
@media (max-width: 768px) {
  section { padding: 60px 24px; }
  #hero { padding: 100px 24px 60px; text-align: center; min-height: auto; }
  .hero-inner { flex-direction: column; gap: 40px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
  .events-header { flex-direction: column; align-items: center; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-left { text-align: center; }
  .contact-info-wrapper { align-items: center; }
  .ccf-row { grid-template-columns: 1fr; gap: 16px; } 
  .clean-contact-form { padding: 24px 20px; } 
  .ccf-submit { width: 100%; padding: 16px; } 
  .ccf-input, select.ccf-input, .ccf-textarea { font-size: 16px; padding: 14px 16px; }
  .ccf-checkbox-group label { font-size: 13px; }
}

/* ── ANIMATIONS & EFFECTS ───────────────────── */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.reveal-clip { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); opacity: 1 !important; transform: none !important; transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-clip.visible { clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%); }
.section-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); opacity: 0.2; margin: 0; }
.typewriter-text { display: inline-block; min-width: 200px; color: var(--orange); border-right: 3px solid var(--orange); padding-right: 5px; animation: blink-caret .75s step-end infinite; }
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: var(--orange); } }