/* ============================================================
   TEACHERA DİL OKULU — KON KLONU
   Renk paleti: #133a60 (ana yeşil), #ECE2D5 (bej), #E70000 (aksan kırmızı)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Prevent white flash on load — match hero/header bg */
html { background-color: #0d2a47; scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body { background-color: var(--white); font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; }

/* ── CSS Değişkenleri ── */
:root {
  --green-dark:   #0d2a47;
  --green:        #133a60;
  --green-mid:    #1a4878;
  --green-light:  #1e5799;
  --green-pale:   #c5d8ed;
  --beige-dark:   #D8CDBD;
  --beige:        #ECE2D5;
  --beige-light:  #F7F3EE;
  --cream:        #FDFAF6;
  --red:          #E70000;
  --red-dark:     #C20000;
  --text-dark:    #09090F;
  --text-mid:     #3a3a4a;
  --text-soft:    #6b7280;
  --white:        #ffffff;
  --shadow-sm:    0 1px 3px rgba(50,77,71,.08), 0 1px 2px rgba(50,77,71,.05);
  --shadow-md:    0 4px 16px rgba(50,77,71,.12), 0 2px 6px rgba(50,77,71,.08);
  --shadow-lg:    0 10px 40px rgba(50,77,71,.15), 0 4px 12px rgba(50,77,71,.10);
  --shadow-xl:    0 20px 60px rgba(50,77,71,.20);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --radius-pill:  999px;
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.6s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--beige-light); }
::-webkit-scrollbar-thumb { background: #133a60; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #1a4878; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

.display-font { font-family: 'Playfair Display', Georgia, serif; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm { padding: 3rem 0; }

/* ── Utility ── */
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.text-soft   { color: var(--text-soft); }
.text-center { text-align: center; }

.bg-green    { background-color: var(--green); }
.bg-beige    { background-color: var(--beige); }
.bg-beige-light { background-color: var(--beige-light); }
.bg-cream    { background-color: var(--cream); }
.bg-dark     { background-color: var(--green-dark); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  z-index: 0;
  /* NO overflow:hidden — prevents clipping on rounded buttons */
}

.btn-primary {
  background-color: var(--green);
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(19,58,96,.35);
}
.btn-primary:hover {
  background-color: var(--green-dark);
  color: var(--white) !important;
  box-shadow: 0 8px 28px rgba(19,58,96,.50);
}

.btn-red {
  background-color: var(--red);
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(231,0,0,.35);
}
.btn-red:hover {
  background-color: var(--red-dark);
  color: var(--white) !important;
  box-shadow: 0 8px 28px rgba(231,0,0,.45);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background-color: var(--green);
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(19,58,96,.30);
}

.btn-outline-white {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.18);
  border-color: var(--white);
  color: var(--white) !important;
}

.btn-lg { padding: 1.05rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.82rem; }

/* ── Site Header (Fixed Wrapper) ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
}

/* ── Announce Bar ── */
.announce-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.announce-bar a {
  color: #93c5fd;
  text-decoration: underline;
  font-weight: 600;
}

/* ── Navbar — always white, no scroll effect ── */
.navbar {
  position: relative;
  z-index: auto;
  background: rgba(247,243,238,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(19,58,96,.12);
  padding: 0.7rem 0;
}

/* scrolled class kept for JS compatibility — same style */
.navbar.scrolled, .navbar.bg-solid, .hero-page .navbar, .hero-page .navbar.scrolled {
  background: rgba(247,243,238,0.97);
  box-shadow: 0 2px 20px rgba(19,58,96,.12);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

.logo span.accent { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--green);
  background: rgba(19,58,96,.07);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.navbar-cta { display: flex; align-items: center; gap: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 998;
  background: var(--cream);
  padding: 5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border-bottom: 1px solid rgba(50,77,71,.08);
}
.mobile-menu a:hover { background: var(--beige-light); color: var(--green); }

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, var(--green-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 220px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--beige);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: #fff;
  bottom: -80px; left: -80px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--beige);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5rem);
}
.hero-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--beige);
}
.hero-subtitle {
  color: rgba(255,255,255,.78);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2.75rem;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  margin-top: 0.25rem;
}

.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  border-radius: var(--radius-xl);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.hero-img-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-img-badge.badge-1 { bottom: 2rem; left: -1.5rem; }
.hero-img-badge.badge-2 { top: 2rem; right: -1.5rem; animation-delay: -2s; }
.badge-icon { font-size: 1.5rem; }
.badge-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.badge-text span { font-size: 0.72rem; color: var(--text-soft); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll svg { opacity: 0.5; }

/* ── Timeline Section ── */
.timeline-section {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.timeline-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--white) 40%);
  pointer-events: none;
}

.timeline-wrapper {
  position: relative;
  z-index: 1;
}

.timeline-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 3.5rem;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
  z-index: 0;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
  z-index: 1;
}

.timeline-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--green), 0 6px 20px rgba(19,58,96,.3);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.timeline-step:hover .timeline-step-num {
  transform: scale(1.15);
  box-shadow: 0 0 0 4px var(--green-light), 0 10px 30px rgba(19,58,96,.4);
}

.timeline-step-icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.timeline-step-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.timeline-step-desc {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 160px;
  margin: 0 auto;
}

.timeline-step.is-final .timeline-step-num {
  background: var(--red);
  box-shadow: 0 0 0 3px var(--red), 0 6px 20px rgba(231,0,0,.35);
  width: 64px;
  height: 64px;
  font-size: 1.4rem;
}

.timeline-step.is-final:hover .timeline-step-num {
  box-shadow: 0 0 0 4px #ff4d4d, 0 10px 30px rgba(231,0,0,.45);
}

/* Mobile timeline: vertical */
@media (max-width: 768px) {
  .timeline-track {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding-left: 1.75rem;
  }
  .timeline-track::before {
    top: 28px;
    left: 0;
    right: auto;
    bottom: 28px;
    width: 3px;
    height: auto;
  }
  .timeline-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0 0 2rem 0;
    width: 100%;
    flex: none;
  }
  .timeline-step-body { flex: 1; padding-top: 0.35rem; }
  .timeline-step-desc { max-width: none; margin: 0; }
  .timeline-step-num { margin-bottom: 0; flex-shrink: 0; }
  .timeline-step-icon { display: none; }
}

/* ── Brands / Languages Bar ── */
.languages-bar {
  background: var(--white);
  padding: 2.5rem 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
}
.languages-bar .inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.languages-bar .inner::-webkit-scrollbar { display: none; }
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--beige-light);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.4rem;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  flex-shrink: 0;
  min-width: max-content; /* ensure text is never clipped */
  text-decoration: none;
}
.lang-pill:hover {
  background: var(--green);
  color: var(--white) !important;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(19,58,96,.25);
}
.lang-pill:hover * { color: inherit; }
.lang-flag { font-size: 1.2rem; line-height: 1; }

/* ── Section Headers ── */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header .label { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-soft); font-size: 1.05rem; line-height: 1.75; max-width: 560px; }
.section-header.center p { margin: 0 auto; }

/* ── Programs Section ── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--beige);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}

.program-card-top {
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.program-card-top::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.program-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.program-age {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 0.35rem;
}
.program-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.program-card-body { padding: 1.75rem 2rem; flex: 1; display: flex; flex-direction: column; }
.program-desc { color: var(--text-soft); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; }
.program-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; flex: 1; }
.program-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.program-feature::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ── Methodology Section ── */
.method-section {
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.method-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.method-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.method-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.method-label { color: rgba(255,255,255,.6); margin-bottom: 0.75rem; }
.method-title { color: var(--white); margin-bottom: 1.25rem; }
.method-desc { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; }

.method-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.method-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}
.method-step:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.25);
}
.step-title { font-weight: 700; color: var(--white); margin-bottom: 0.2rem; font-size: 0.95rem; }
.step-desc { font-size: 0.85rem; color: rgba(255,255,255,.65); line-height: 1.5; }

.method-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

/* ── Format Cards ── */
.formats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.format-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.format-card:hover::before { transform: scaleX(1); }
.format-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.format-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.format-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.format-desc { color: var(--text-soft); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.75rem; }
.format-list { display: flex; flex-direction: column; gap: 0.5rem; }
.format-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--beige-light);
}
.format-item:last-child { border-bottom: none; }
.format-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
}

/* ── Stats Section ── */
.stats-section {
  background: var(--beige-light);
  padding: 4rem 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.88rem; color: var(--text-soft); font-weight: 500; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: #f59e0b;
  font-size: 0.9rem;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.92rem; }
.author-meta { font-size: 0.78rem; color: var(--text-soft); }

/* ── Program Finder CTA ── */
.finder-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.finder-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
}
.finder-section h2 { color: var(--white); margin-bottom: 1rem; }
.finder-section p { color: rgba(255,255,255,.75); margin-bottom: 2.5rem; max-width: 520px; margin-inline: auto; font-size: 1.05rem; line-height: 1.75; }
.finder-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--beige);
}
.contact-info-item:first-child { border-top: 1px solid var(--beige); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--beige-light);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-light); margin-bottom: 0.2rem; }
.contact-info-value { font-weight: 600; color: var(--text-dark); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--beige-light);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(19,58,96,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── About Page ── */
.about-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(160deg, var(--beige-light) 0%, var(--white) 100%);
  position: relative;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-pale); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.value-desc { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; }

/* ── Courses Page ── */
.courses-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  text-align: center;
}
.courses-hero h1 { color: var(--white); }
.courses-hero p { color: rgba(255,255,255,.75); max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; }

.courses-filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  padding: 1.75rem 0;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--beige-light);
  border: 1.5px solid var(--beige);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.course-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card-header {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-flag { font-size: 3rem; }
.course-level {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--beige-light);
  color: var(--green);
  border: 1px solid var(--green-pale);
}
.course-card-body { padding: 0 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.course-lang-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.course-desc { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 1.5rem; flex: 1; }
.course-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  margin-bottom: 1.5rem;
}
.course-meta-item { text-align: center; }
.course-meta-val { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.course-meta-key { font-size: 0.72rem; color: var(--text-soft); }

/* ── Footer ── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
  color: rgba(255,255,255,.6);
}
.footer-logo { color: var(--white); }
.footer-logo .logo-mark { background: rgba(255,255,255,.12); }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-link:hover { background: rgba(255,255,255,.18); color: var(--white); transform: translateY(-2px); }

.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul li a::before { content: '→'; opacity: 0; transition: var(--transition); font-size: 0.75rem; }
.footer-col ul li a:hover::before { opacity: 1; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ── Floating WhatsApp ── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 990;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: pulse-green 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,.75); }
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(160deg, var(--beige-light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}
.page-hero-green .section-label { color: rgba(255,255,255,.6); }
.page-hero-green h1 { color: var(--white); }
.page-hero-green p { color: rgba(255,255,255,.75); }
.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 40px 40px;
}

/* ── Map embed ── */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-md);
  height: 400px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--green); }
.breadcrumb span { color: var(--text-soft); }

/* ── Course Stats & Levels Alignments ── */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.quick-stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid var(--beige);
}
.quick-stat-item:last-child {
  border-right: none;
}
.course-card-header > div {
  display: flex !important;
  justify-content: space-between;
  align-items: center !important;
  width: 100%;
}
.course-level {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

/* ── Method Page Responsive Grid & Cards ── */
.metot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.metot-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--beige-light);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
}
.metot-checklist-item i {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.metot-checklist-item span {
  font-size: 0.92rem;
  font-weight: 500;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.pillar-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
}
.pillar-card:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.process-step.highlight {
  background: var(--green);
  border: none;
  box-shadow: var(--shadow-lg);
}
.process-step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step.highlight .process-step-circle {
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }

  .navbar .navbar-inner { min-height: 72px !important; }
  .site-logo { height: 60px !important; max-width: 150px !important; }

  .hero { padding: 185px 0 50px !important; min-height: auto !important; }
  .page-hero-green,
  .about-hero,
  .courses-hero {
    padding-top: 185px !important;
    padding-bottom: 50px !important;
  }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .hero-stats { gap: 1.5rem; }

  .programs-grid { grid-template-columns: 1fr; }
  .method-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .method-image { display: none; }
  .formats-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid > div:first-child { text-align: center; }
  .contact-grid .contact-info-item { justify-content: center; }
  .contact-grid .contact-social-row { justify-content: center; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .course-cards-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .finder-actions { flex-direction: column; align-items: center; }
  .languages-bar .inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .quick-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .quick-stat-item {
    border-right: 1px solid var(--beige) !important;
    border-bottom: 1px solid var(--beige) !important;
  }
  .quick-stat-item:nth-child(2n) {
    border-right: none !important;
  }
  .quick-stat-item:nth-child(3), .quick-stat-item:nth-child(4) {
    border-bottom: none !important;
  }
  .metot-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .pillars-grid {
    grid-template-columns: 1fr !important;
  }
  .pillar-card {
    padding: 1.5rem !important;
  }

  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .mobile-menu {
    padding: 5rem 1rem 2rem !important;
  }
  .mobile-menu .btn {
    padding: 0.75rem 1rem !important;
    font-size: 0.88rem !important;
    white-space: normal !important;
    text-align: center;
    justify-content: center;
  }
  .contact-form {
    padding: 1.5rem !important;
  }
  .btn {
    white-space: normal !important;
    text-align: center;
  }
  .btn-lg {
    padding: 0.85rem 1.25rem !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 576px) {
  .process-step {
    padding: 1.25rem 1.25rem !important;
    gap: 1rem !important;
  }
  .process-step-circle {
    width: 42px !important;
    height: 42px !important;
    font-size: 1rem !important;
  }
  .metot-checklist-item {
    padding: 0.75rem 1rem !important;
    gap: 0.6rem !important;
  }
  .metot-checklist-item span {
    font-size: 0.85rem !important;
  }
}

/* ── Course Card (Kurslar Page) ── */
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}
.course-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-desc {
  color: var(--text-soft);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  flex: 1;
}
.course-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.1rem;
  padding: .75rem;
  background: var(--beige-light);
  border-radius: var(--radius-md);
}
.course-meta-item { text-align: center; }
.course-meta-val { font-weight: 800; font-size: .95rem; color: var(--green); }
.course-meta-key { font-size: .7rem; color: var(--text-soft); margin-top: .1rem; text-transform: uppercase; letter-spacing: .06em; }

/* Page Hero Green variant */
.page-hero-green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; }

/* ── Logo Image Sizing ── */
.site-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 220px;
}

/* Footer logo: white version via filter */
.site-logo-footer {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 160px;
  filter: brightness(0) invert(1);
}

/* Keep navbar height consistent regardless of logo size */
.navbar .navbar-inner {
  min-height: 112px;
  padding: 0.5rem 0;
}

/* Inner page heroes also clear the fixed header and balance top/bottom spacing */
.page-hero-green,
.about-hero,
.courses-hero {
  padding-top: 250px !important;
  padding-bottom: 70px !important;
}

/* ── Hero content always visible (no fade-up delay on initial load) ── */
.hero .fade-up,
.hero .hero-badge,
.hero h1,
.hero .hero-sub,
.hero .hero-cta,
.hero .hero-scroll,
.hero .hero-visual {
  opacity: 1 !important;
  transform: none !important;
}

/* Hero section itself always has dark gradient — prevent white bleed-through */
.hero {
  background:linear-gradient(135deg,#0d2a47 0%,#133a60 55%,#1e5799 100%);
  min-height:100vh;
  padding:250px 0 70px !important;
  display:flex;
  align-items:center;
  position: relative;
  z-index: 0;
}
