/* Style System for Hedef 500 Akademi */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #0b0f19;
  --bg-secondary: #111827;
  --bg-tertiary: #1f2937;
  --text-primary: #f9fafb;
  --text-secondary: #abc4ff;
  --text-muted: #9ca3af;
  --brand-primary: #3b82f6; /* Electric Blue */
  --brand-secondary: #6366f1; /* Indigo */
  --brand-accent: #f97316; /* Amber / Orange */
  --brand-accent-rgb: 249, 115, 22;
  --brand-success: #10b981;
  --brand-error: #ef4444;
  
  --gradient-hero: linear-gradient(135deg, #0b0f19 0%, #1e1b4b 50%, #0b0f19 100%);
  --gradient-brand: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  --gradient-accent: linear-gradient(135deg, #f97316 0%, #d97706 100%);
  --gradient-card-hover: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 60%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout and Effects */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-secondary);
}

/* Custom Selection */
::selection {
  background-color: var(--brand-secondary);
  color: #fff;
}

/* Utility Layouts */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 30%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Panel */
.glass-panel {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--border-glass);
  box-shadow: var(--shadow-glass);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.5), var(--shadow-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-accent {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
}

/* Header & Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.25rem 0;
}

.header.scrolled {
  padding: 0.8rem 0;
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-glass);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  gap: 0.5rem;
}

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

.logo-badge {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-left: 0.3rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-phone-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.contact-phone-top:hover {
  color: var(--brand-accent);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  padding: 180px 0 100px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  top: -10%;
  right: -10%;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, rgba(0, 0, 0, 0) 75%);
  bottom: 0px;
  left: -5%;
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--text-secondary);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease;
}

.hero-tag span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--brand-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-accent);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  animation: fadeInUp 0.8s ease 0.1s both;
}

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

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.student-avatars {
  display: flex;
  align-items: center;
}

.student-avatars span {
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  margin-right: -10px;
}

.student-avatars span:nth-child(1) { background: #3b82f6; }
.student-avatars span:nth-child(2) { background: #10b981; }
.student-avatars span:nth-child(3) { background: #f59e0b; }

.trust-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-text strong {
  color: #fff;
  display: block;
}

/* Floating Card / Interactive Graphic */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

.hero-card {
  width: 100%;
  max-width: 450px;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border: var(--border-glass);
  background: rgba(17, 24, 39, 0.45);
  box-shadow: var(--shadow-glass);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.chart-badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--brand-success);
  font-weight: 600;
}

.chart-metric {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #fff;
  display: flex;
  align-items: baseline;
}

.chart-metric span {
  font-size: 1.2rem;
  color: var(--brand-accent);
  margin-left: 0.25rem;
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.bar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bar-label span:last-child {
  color: #fff;
  font-weight: 600;
}

.bar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.bar-fill.fill-95 { width: 95%; }
.bar-fill.fill-90 { width: 90%; }
.bar-fill.fill-88 { width: 88%; }

.graphic-decorations {
  position: absolute;
  top: -40px;
  right: -20px;
  background: var(--bg-tertiary);
  border: var(--border-glass);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-glass);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.decor-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
}

.decor-text {
  font-size: 0.8rem;
  font-weight: 700;
}

.decor-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Stats Counter Section */
.stats {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-number span {
  color: var(--brand-accent);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Generic Section Design */
.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-dark {
  background-color: var(--bg-primary);
}

.section-bg-alt {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Features (Eğitim Modelimiz) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  padding: 3rem 2.2rem;
  border-radius: var(--border-radius-lg);
  border: var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-card-hover);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.feature-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-md);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  transform: scale(1.05);
}

.feature-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

/* Courses (Derslerimiz) */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.course-card {
  border-radius: var(--border-radius-md);
  border: var(--border-glass);
  background: var(--bg-secondary);
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
}

.course-card:hover {
  background: var(--bg-tertiary);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.course-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(249, 115, 22, 0.15);
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.course-icon-bg {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
  font-weight: bold;
  font-size: 1.25rem;
}

.course-card:nth-child(2) .course-icon-bg { color: #ec4899; }
.course-card:nth-child(3) .course-icon-bg { color: #10b981; }
.course-card:nth-child(4) .course-icon-bg { color: #f59e0b; }
.course-card:nth-child(5) .course-icon-bg { color: #8b5cf6; }
.course-card:nth-child(6) .course-icon-bg { color: #06b6d4; }

.course-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.course-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.course-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition-smooth);
}

.course-link:hover {
  text-decoration: underline;
  color: #fff;
}

/* Service Regions (Hizmet Bölgelerimiz) */
.regions-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.regions-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.region-btn {
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  color: var(--text-muted);
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.region-btn .nav-badge {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  color: var(--text-muted);
  font-weight: 500;
}

.region-btn:hover {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.region-btn.active {
  background: var(--gradient-brand);
  color: white;
  border: none;
  box-shadow: var(--shadow-glow);
}

.region-btn.active .nav-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.regions-content {
  position: relative;
  min-height: 350px;
}

.region-panel {
  display: none;
  animation: fadeInVar 0.5s ease-out;
}

.region-panel.active {
  display: block;
}

.panel-header {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-header span {
  color: var(--brand-accent);
}

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.neighborhood-card {
  padding: 1.2rem;
  background: var(--bg-secondary);
  border: var(--border-glass);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.neighborhood-card:hover {
  background: var(--bg-tertiary);
  transform: translateX(5px);
  border-color: rgba(99, 102, 241, 0.25);
}

.neighborhood-card svg {
  color: var(--brand-accent);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.neighborhood-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* Consultation & Contact Form */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cta-info h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-info p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-details p, .info-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-details a:hover {
  color: var(--brand-primary);
  text-decoration: underline;
}

.form-box {
  padding: 3rem;
  border-radius: var(--border-radius-lg);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  background: rgba(255,255,255,0.05);
  border-color: var(--brand-primary);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.2rem;
}

.form-select option {
  background-color: var(--bg-secondary);
  color: #fff;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  accent-color: var(--brand-secondary);
}

.checkbox-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.checkbox-group label a {
  color: var(--brand-primary);
  text-decoration: underline;
}

.form-message {
  display: none;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-success-alert {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
}

.form-success-alert svg {
  color: var(--brand-success);
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

/* FAQ Accordion */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  background: var(--bg-secondary);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-trigger {
  padding: 1.5rem 2rem;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-heading);
  text-align: left;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: var(--transition-smooth);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: rgba(99, 102, 241, 0.3);
  background: var(--bg-tertiary);
}

.faq-item.active .faq-icon {
  background: var(--brand-secondary);
  color: #fff;
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding: 0 2rem 2rem 2rem;
  max-height: 500px; /* arbitrary height to fit contents */
}

/* Footer Styles */
.footer {
  background-color: #080c14;
  border-top: var(--border-glass);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about .logo {
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.03);
  border: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--gradient-brand);
  color: #fff;
  border: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.footer-title {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--brand-accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-item svg {
  color: var(--brand-accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  border-top: var(--border-glass);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-terms {
  display: flex;
  gap: 1.5rem;
}

.footer-terms a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-terms a:hover {
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInVar {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-tag {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-graphic {
    order: -1;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .features-grid, .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .regions-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-cta, .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .features-grid, .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .neighborhoods-grid {
    grid-template-columns: 1fr;
  }
  
  .form-box {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Mobile Menu active mode */
  .mobile-menu-active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    padding: 2rem;
    border-bottom: var(--border-glass);
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  
  .mobile-menu-active .nav-cta {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 230px);
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    padding: 0 2rem 2rem 2rem;
    gap: 1rem;
  }
  
  .mobile-menu-active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-active .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
