/* ============================================================
   EUROSTAR PORTAL - ULTRA BLACK DIAMOND v3
   ============================================================ */

:root {
  --primary: #1a56db;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --mid: #64748b;
  --light: #f1f5f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --shadow-xl: 0 24px 80px rgba(0,0,0,0.18);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(26,86,219,0.35);
}

.logo-text { display: flex; flex-direction: column; }
.logo-main { font-weight: 800; font-size: 16px; color: var(--dark); letter-spacing: 1px; }
.logo-sub { font-size: 10px; color: var(--mid); font-weight: 500; }

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

.nav-link {
  display: flex;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--dark-3);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.nav-link:hover { background: var(--light); color: var(--primary); }

.nav-cta-link {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: white !important;
  padding: 9px 20px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(26,86,219,0.3);
}

.nav-cta-link:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,219,0.4) !important;
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(26,86,219,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,0.4);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.btn-large { padding: 16px 36px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

.btn-sm-primary {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-sm-primary:hover { background: var(--primary-dark); }

.btn-sm-outline {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-sm-outline:hover { background: var(--primary); color: white; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 17px;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #1a56db 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: white;
}

.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; animation: float1 8s infinite ease-in-out; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation: float2 10s infinite ease-in-out; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 50%; animation: float3 6s infinite ease-in-out; }

@keyframes float1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-20px,20px) scale(1.05)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(15px,-15px)} }
@keyframes float3 { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,-60%)} }

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,0.5)}
  50%{box-shadow:0 0 0 8px rgba(16,185,129,0)}
}

.hero-title {
  color: white;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-line1 { display: block; font-size: clamp(36px,5vw,60px); color: rgba(255,255,255,0.75); }
.hero-line2 { display: block; font-size: clamp(44px,7vw,78px); }
.hero-line3 { display: block; font-size: clamp(44px,7vw,78px); color: var(--accent); }

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-subtitle strong { color: white; }

.hero-prices {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.price-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
}

.price-card:hover { background: rgba(255,255,255,0.12); }
.price-card.featured { background: rgba(245,158,11,0.2); border-color: var(--accent); }

.price-label { font-size: 12px; color: rgba(255,255,255,0.65); }
.price-amount { font-weight: 800; font-size: 18px; }
.price-amount small { font-size: 12px; font-weight: 400; opacity: 0.75; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-cta { font-size: 17px; padding: 15px 32px; }

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

.trust-item i { color: #10b981; }

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 380px;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  transition: var(--transition);
}

.hero-card:hover { transform: translateX(6px); background: rgba(255,255,255,0.12); }

.card-icon { font-size: 28px; }

.card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-info strong { font-size: 15px; font-weight: 700; }
.card-info span { font-size: 12px; opacity: 0.75; }

.card-tag {
  display: inline-block;
  background: rgba(16,185,129,0.25);
  color: #34d399;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  width: fit-content;
}

.hero-stats-mini {
  display: flex;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-mini {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  color: white;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-mini:last-child { border-right: none; }
.stat-mini strong { display: block; font-size: 20px; font-weight: 800; }
.stat-mini span { font-size: 11px; opacity: 0.65; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark);
  padding: 28px 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-item strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item span { font-size: 13px; opacity: 0.65; }

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { background: var(--light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.why-card.highlighted {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.why-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.why-icon { font-size: 36px; margin-bottom: 16px; }

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-card.highlighted h3 { color: white; }

.why-card p { color: var(--mid); line-height: 1.65; }
.why-card.highlighted p { color: rgba(255,255,255,0.7); }

.why-detail {
  display: inline-block;
  background: rgba(26,86,219,0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 14px;
}

.why-card.highlighted .why-detail {
  background: rgba(245,158,11,0.2);
  color: var(--accent);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-section { background: white; }

.comparison-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  background: var(--dark);
  color: white;
}

.comparison-header > div {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15px;
}

.featured-col {
  background: rgba(26,86,219,0.2);
  border-left: 3px solid var(--primary);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.comparison-row:hover { background: var(--light); }
.comparison-row:last-child { border-bottom: none; }

.comparison-row > div {
  padding: 16px 24px;
  font-size: 14px;
}

.col-feature { font-weight: 600; color: var(--dark-3); }
.col-tr { color: var(--mid); }
.col-galati { color: var(--dark); font-weight: 500; }
.col-galati.featured-col { background: rgba(26,86,219,0.04); border-left: 3px solid var(--primary); color: var(--primary); }
.col-galati.featured-col strong { color: var(--primary-dark); }

.comparison-cta {
  text-align: center;
  margin-top: 32px;
}

.comparison-cta p {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--dark);
}

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.programs-section { background: var(--light); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.programs-grid-small {
  grid-template-columns: repeat(3, 1fr);
}

.program-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.program-badge {
  position: absolute;
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 var(--radius-lg) 0 var(--radius);
}

.program-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.program-level {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.level-lisans { background: rgba(26,86,219,0.1); color: var(--primary); }
.level-yukseklisans { background: rgba(139,92,246,0.1); color: #7c3aed; }
.level-doktora { background: rgba(16,185,129,0.1); color: #059669; }

.program-lang { font-size: 12px; color: var(--mid); }

.program-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.program-faculty {
  font-size: 12px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.program-desc {
  font-size: 13px;
  color: var(--dark-3);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.highlight-tag {
  background: var(--light);
  color: var(--dark-3);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}

.program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.program-price .price-from { font-size: 11px; color: var(--mid); display: block; }
.program-price strong { font-size: 15px; color: var(--primary-dark); font-weight: 700; }

.program-duration {
  font-size: 12px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 4px;
}

.program-actions {
  display: flex;
  gap: 8px;
}

/* ============================================================
   COST CALCULATOR TEASER
   ============================================================ */
.calculator-teaser { background: linear-gradient(135deg, var(--dark), var(--dark-2)); }

.calc-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.calc-teaser-content h2 { color: white; font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.calc-teaser-content p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

.calc-quick { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.calc-quick-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
}

.calc-quick-item span { color: rgba(255,255,255,0.7); font-size: 14px; }
.calc-quick-item strong { color: var(--accent); font-weight: 700; }

.calc-teaser-visual { display: flex; justify-content: center; }

.calc-circle {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-circle-inner { text-align: center; }
.calc-vs { font-size: 32px; font-weight: 900; color: var(--accent); display: block; margin-bottom: 16px; }
.calc-compare { display: flex; flex-direction: column; gap: 12px; }
.calc-compare-item { text-align: center; }
.calc-compare-item span { display: block; color: rgba(255,255,255,0.5); font-size: 12px; }
.calc-compare-item strong.bad { display: block; color: #f87171; font-weight: 700; font-size: 15px; }
.calc-compare-item strong.good { display: block; color: #34d399; font-weight: 700; font-size: 15px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card.featured { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }

.testimonial-quote {
  font-size: 64px;
  line-height: 0.8;
  color: var(--primary);
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.testimonial-card.featured .testimonial-quote { color: rgba(255,255,255,0.3); }

.testimonial-card p {
  color: var(--dark-3);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card.featured p { color: rgba(255,255,255,0.85); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-card.featured .author-avatar {
  background: rgba(255,255,255,0.2);
}

.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-author span { display: block; font-size: 12px; color: var(--mid); }
.testimonial-card.featured span { color: rgba(255,255,255,0.65); }
.author-city { font-size: 11px !important; color: var(--primary) !important; font-weight: 600; }
.testimonial-card.featured .author-city { color: var(--accent) !important; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: white; }

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.process-step {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.process-step:hover .step-number { background: white; color: var(--primary); }

.step-icon { font-size: 32px; margin: 8px 0 10px; }

.process-step h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: 12px; color: var(--mid); line-height: 1.5; }
.process-step:hover p { color: rgba(255,255,255,0.8); }

.process-arrow { font-size: 24px; color: var(--border); font-weight: 300; }

.process-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--light); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  transition: var(--transition);
  gap: 12px;
}

.faq-q:hover { background: var(--light); }
.faq-q.open { background: var(--primary); color: white; }
.faq-q.open i { transform: rotate(180deg); }
.faq-q i { flex-shrink: 0; transition: var(--transition); color: var(--mid); }
.faq-q.open i { color: white; }

.faq-a {
  display: none;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--dark-3);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }

.final-cta-inner {
  text-align: center;
  padding: 20px 0;
}

.final-cta-content h2 {
  color: white;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 12px;
}

.final-cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 32px;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta-note { color: rgba(255,255,255,0.65); font-size: 14px; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 100px 0 48px;
  color: white;
}

.page-hero-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: white; }

/* ============================================================
   FILTERS (Programs Page)
   ============================================================ */
.filters-bar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.search-box {
  position: relative;
}

.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mid);
}

.search-box input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  transition: var(--transition);
  font-family: var(--font);
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  min-width: 60px;
}

.filter-buttons { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-btn {
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  background: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark-3);
}

.filter-btn:hover { border-color: var(--primary); color: var(--primary); }

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  font-weight: 700;
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

#resultsCount { font-size: 14px; color: var(--mid); font-weight: 500; }

.sort-select select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: var(--font);
  background: white;
  cursor: pointer;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results-icon { font-size: 48px; margin-bottom: 16px; }
.no-results h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.no-results p { color: var(--mid); margin-bottom: 20px; }

/* ============================================================
   PROGRAM DETAIL
   ============================================================ */
.program-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.program-detail-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.program-detail-header { margin-bottom: 24px; }

.detail-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.detail-lang, .detail-cat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--light);
  color: var(--dark-3);
}

.program-detail-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.detail-faculty {
  font-size: 15px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.detail-desc {
  font-size: 16px;
  color: var(--dark-3);
  line-height: 1.7;
}

.detail-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.detail-stat {
  background: white;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.detail-stat.highlight { background: rgba(26,86,219,0.04); }
.detail-stat i { color: var(--primary); font-size: 18px; }
.detail-stat strong { font-size: 16px; font-weight: 700; color: var(--primary-dark); }
.detail-stat span { font-size: 11px; color: var(--mid); }

.detail-section-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.detail-section-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}

.detail-section-card h2 i { color: var(--primary); }

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.detail-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-3);
}

.detail-highlight-item i { color: var(--success); }

.career-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-item {
  background: linear-gradient(135deg, rgba(26,86,219,0.08), rgba(26,86,219,0.04));
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(26,86,219,0.15);
}

.requirements-general {
  margin-top: 16px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.requirements-general h4 { font-size: 13px; font-weight: 700; margin-bottom: 10px; color: var(--dark-3); }

.requirements-general ul { list-style: none; }
.requirements-general li { padding: 5px 0; font-size: 14px; color: var(--dark-3); }

/* Sidebar */
.program-detail-sidebar { position: sticky; top: 80px; }

.sidebar-cta-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
  margin-bottom: 16px;
}

.sidebar-cta-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.sidebar-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.sidebar-price span { font-size: 13px; color: var(--mid); }
.sidebar-price strong { font-size: 16px; color: var(--primary-dark); font-weight: 700; }

.sidebar-cta-card .btn-primary,
.sidebar-cta-card .btn-whatsapp,
.sidebar-cta-card .btn-outline { margin-bottom: 10px; }

.sidebar-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--mid);
  margin-top: 8px;
}

.sidebar-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.sidebar-info-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; }

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.info-row:last-child { border-bottom: none; }
.info-row span { color: var(--mid); }
.info-row strong { color: var(--dark); font-weight: 600; }

.related-programs { margin-top: 40px; }
.related-programs h2 { font-size: 24px; font-weight: 700; margin-bottom: 20px; }

/* ============================================================
   CALCULATOR PAGE
   ============================================================ */
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.calc-card, .calc-results-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.calc-card h2, .calc-results-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-card h2 i, .calc-results-card h2 i { color: var(--primary); }

.calc-field { margin-bottom: 24px; }

.calc-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-3);
  margin-bottom: 10px;
}

.calc-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.calc-option {
  flex: 1;
  min-width: 100px;
  padding: 14px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: white;
}

.calc-option:hover { border-color: var(--primary); }

.calc-option.active {
  border-color: var(--primary);
  background: rgba(26,86,219,0.06);
}

.option-icon { font-size: 24px; display: block; margin-bottom: 6px; }
.calc-option strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.calc-option small { font-size: 11px; color: var(--mid); }

.range-container { position: relative; }

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,86,219,0.4);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--mid);
}

.range-value {
  background: var(--primary);
  color: white;
  padding: 2px 12px;
  border-radius: 20px;
  font-weight: 700;
}

/* Cost breakdown */
.cost-summary { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.cost-item span { color: var(--mid); }
.cost-item strong { font-weight: 600; color: var(--dark); }

.cost-divider { height: 1px; background: var(--border); }

.cost-total span { font-weight: 700; color: var(--dark); }
.cost-total strong { font-size: 18px; font-weight: 800; color: var(--primary-dark); }

.cost-total-program span { font-weight: 700; color: var(--dark); }
.cost-total-program strong { font-size: 22px; font-weight: 900; color: var(--accent-dark); }

.cost-comparison-bar { margin: 24px 0; }
.cost-comparison-bar h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }

.bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--mid);
}

.bar-item > span { min-width: 140px; font-size: 12px; }

.bar-track { flex: 1; background: var(--light); border-radius: 4px; overflow: hidden; }

.bar-fill {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  border-radius: 4px;
  white-space: nowrap;
}

.bar-bad { background: linear-gradient(90deg, #ef4444, #dc2626); }
.bar-warning { background: linear-gradient(90deg, #f59e0b, #d97706); }
.bar-good { background: linear-gradient(90deg, #10b981, #059669); }

.recommended-programs { margin: 24px 0; }
.recommended-programs h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }

.rec-prog-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  cursor: pointer;
}

.rec-prog-item:hover { color: var(--primary); }
.rec-prog-item:last-child { border-bottom: none; }
.rec-prog-item .rec-name { font-weight: 600; }
.rec-prog-item .rec-price { color: var(--primary-dark); font-weight: 700; }

.calc-cta { margin-top: 20px; }

/* ============================================================
   APPLY PAGE
   ============================================================ */
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
}

.apply-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.apply-progress {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.progress-step {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  background: var(--light);
  color: var(--mid);
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

.progress-step:last-child { border-right: none; }

.progress-step.active {
  background: var(--primary);
  color: white;
}

.form-step h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-3);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  transition: var(--transition);
  color: var(--dark);
  background: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}

.form-field textarea { resize: vertical; }

.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  color: var(--dark-3);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  color: var(--dark-3);
  margin-bottom: 10px;
  line-height: 1.4;
}

.form-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.review-box {
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.submit-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.submit-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark-3);
}

.submit-info-item i { color: var(--success); }

/* Apply Sidebar */
.apply-sidebar { display: flex; flex-direction: column; gap: 16px; }

.apply-info-card,
.apply-guarantee-card,
.selected-prog-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.apply-info-card h3,
.apply-guarantee-card h3,
.selected-prog-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-methods { display: flex; flex-direction: column; gap: 10px; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}

.contact-method.whatsapp {
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
}

.contact-method.whatsapp:hover { background: rgba(37,211,102,0.15); }

.contact-method i { font-size: 22px; }
.contact-method.whatsapp i { color: #25D366; }
.contact-method strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.contact-method span { font-size: 12px; color: var(--mid); }

.apply-guarantee-card ul { list-style: none; }
.apply-guarantee-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.apply-guarantee-card li:last-child { border-bottom: none; }
.apply-guarantee-card li i { color: var(--success); }

.selected-prog-card strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.selected-prog-card p { font-size: 13px; color: var(--mid); margin-bottom: 8px; }
.sel-prog-price { font-size: 16px; font-weight: 700; color: var(--primary-dark); }

/* Apply Success */
.apply-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon { font-size: 72px; margin-bottom: 16px; }

.apply-success h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.apply-success p { color: var(--dark-3); margin-bottom: 8px; }

.success-ref {
  background: var(--light);
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius);
  margin: 16px 0;
}

.success-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.about-content p { color: var(--dark-3); line-height: 1.8; margin-bottom: 16px; }

.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon { font-size: 28px; flex-shrink: 0; }
.value-item strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.value-item p { color: var(--mid); font-size: 14px; margin: 0; }

.uni-info-card {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px;
}

.uni-info-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }

.uni-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.uni-fact {
  text-align: center;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 14px;
}

.uni-fact strong { display: block; font-size: 24px; font-weight: 900; color: var(--accent); }
.uni-fact span { font-size: 12px; opacity: 0.65; }

.uni-info-card p { color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 16px; font-size: 14px; }

.uni-accreditations { display: flex; gap: 8px; flex-wrap: wrap; }

.accred-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ============================================================
   GUIDE PAGE
   ============================================================ */
.guide-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.guide-content h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.guide-content h3 { font-size: 20px; font-weight: 700; margin: 24px 0 12px; }
.guide-content p { color: var(--dark-3); line-height: 1.8; margin-bottom: 16px; }
.guide-content ul { padding-left: 20px; margin-bottom: 16px; }
.guide-content li { margin-bottom: 8px; color: var(--dark-3); line-height: 1.6; }

.guide-note {
  background: rgba(245,158,11,0.1);
  border-left: 4px solid var(--warning);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px;
  color: var(--dark-3);
}

.cost-table {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 16px 0;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.cost-row:last-child { border-bottom: none; }
.cost-row.cost-total { background: var(--dark); color: white; }
.cost-row.cost-total strong { color: var(--accent); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: white;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waBounce 3s infinite 2s;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

.whatsapp-float svg { width: 22px; height: 22px; }

@keyframes waBounce {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

/* ============================================================
   CHATBOT
   ============================================================ */
.chatbot-toggle {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 13px 22px 13px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 24px rgba(26,86,219,0.4);
  transition: var(--transition);
}

.chatbot-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(26,86,219,0.5);
}

.chat-icon { font-size: 18px; }

.chat-badge {
  background: #ef4444;
  color: white;
  font-size: 11px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  animation: chatPing 2s infinite;
}

@keyframes chatPing {
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.2)}
}

.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 360px;
  height: 520px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  animation: chatSlide 0.3s ease-out;
}

@keyframes chatSlide {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.chatbot-avatar { font-size: 22px; }
.chatbot-name { font-size: 14px; font-weight: 700; }
.chatbot-status { font-size: 11px; opacity: 0.8; }

.chatbot-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
  scrollbar-width: thin;
}

.chat-msg { display: flex; flex-direction: column; }

.chat-msg.bot { align-items: flex-start; }
.chat-msg.user { align-items: flex-end; }

.chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.chat-msg.bot .chat-bubble {
  background: white;
  color: var(--dark);
  border-radius: 4px 12px 12px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.chat-msg.user .chat-bubble {
  background: var(--primary);
  color: white;
  border-radius: 12px 4px 12px 12px;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.chat-quick-replies button {
  background: white;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
}

.chat-quick-replies button:hover {
  background: var(--primary);
  color: white;
}

.chatbot-input-area {
  padding: 12px 14px;
  background: white;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

#chatInput {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
}

#chatInput:focus { border-color: var(--primary); }

.chat-send-btn {
  background: var(--primary);
  color: white;
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chat-send-btn:hover { background: var(--primary-dark); }

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: white;
  border-radius: 4px 12px 12px 12px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.chat-typing span {
  width: 6px; height: 6px;
  background: var(--mid);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%,100%{transform:translateY(0);opacity:0.5}
  50%{transform:translateY(-4px);opacity:1}
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 60px 0 0; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo .logo-icon {
  width: 36px; height: 36px;
}

.footer-brand .footer-logo span {
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--primary); color: white; }

.footer-links h4, .footer-contact h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover { color: white; }

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact .contact-item i {
  color: var(--primary-light);
  width: 16px;
}

.footer-verified {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.exit-popup-overlay.show { display: flex; }

.exit-popup {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.exit-popup-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--mid);
}

.exit-popup h2 { font-size: 26px; font-weight: 800; margin: 12px 0 8px; }
.exit-popup p { color: var(--mid); margin-bottom: 24px; }

.exit-popup-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exit-popup-skip {
  background: none;
  border: none;
  color: var(--mid);
  font-size: 12px;
  cursor: pointer;
  margin-top: 8px;
  font-family: var(--font);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-table { overflow-x: auto; }
  .process-steps { flex-direction: column; align-items: stretch; }
  .process-arrow { display: none; }
  .calc-teaser-inner { grid-template-columns: 1fr; }
  .calc-teaser-visual { display: none; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .program-detail-layout { grid-template-columns: 1fr; }
  .program-detail-sidebar { position: static; }
  .calc-layout { grid-template-columns: 1fr; }
  .apply-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .detail-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: white;
    padding: 16px;
    box-shadow: var(--shadow);
    gap: 4px;
    z-index: 1000;
  }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-prices { flex-wrap: wrap; }
  .why-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-container { justify-content: center; }
  .stat-divider { display: none; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .chatbot-container { width: calc(100vw - 32px); right: 16px; bottom: 80px; }
  .form-row { grid-template-columns: 1fr; }
  .detail-stats-row { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 52px 0; }
  .comparison-header { font-size: 12px; }
  .comparison-row > div { padding: 12px; font-size: 13px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-large { padding: 14px 24px; font-size: 15px; }
  .hero-line3, .hero-line2 { font-size: 44px; }
  .programs-grid-small { grid-template-columns: 1fr; }
  .final-cta-buttons { flex-direction: column; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Hero */
.contact-hero {
  padding: 100px 0 60px;
  background: linear-gradient(150deg, #0f172a 0%, #1e293b 50%, #1a56db 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.contact-hero-shape {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,0.15) 0%, transparent 70%);
  right: -200px; top: -200px;
}

.contact-hero-content { color: white; max-width: 720px; position: relative; z-index: 1; }

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

.contact-hero-badge i { color: #f59e0b; }

.contact-hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-hero-highlight {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.contact-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.chero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
}

.chero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* Quick Contact Bar */
.quick-contact-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 68px;
  z-index: 100;
}

.qcbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.qcbar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
}

.qcbar-item > i {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.qcbar-item > i.fa-whatsapp { color: #25D366; }
.qcbar-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.qcbar-item span { font-size: 13px; color: var(--mid); }

.qcbar-btn {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.qcbar-btn.whatsapp { background: #25D366; color: white; }
.qcbar-btn.whatsapp:hover { background: #128C7E; }
.qcbar-btn.phone { background: var(--primary); color: white; }
.qcbar-btn.phone:hover { background: var(--primary-dark); }
.qcbar-btn.email { background: var(--light); color: var(--dark); border: 1px solid var(--border); }
.qcbar-btn.email:hover { background: var(--dark); color: white; }

.qcbar-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* Featured Offices */
.contact-section { background: var(--light); }

.offices-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.office-featured-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.office-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.office-featured-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.office-city-icon { font-size: 36px; }

.office-city-info h2 { color: white; font-size: 22px; font-weight: 800; }
.office-city-info span { color: rgba(255,255,255,0.75); font-size: 13px; }

.office-featured-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.office-featured-body { padding: 20px 24px; }

.office-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.office-detail-row:last-of-type { border-bottom: none; }
.office-detail-row i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.office-detail-row strong { display: block; font-weight: 700; color: var(--dark); }
.office-detail-row span { display: block; color: var(--dark-3); line-height: 1.5; }
.office-district { font-weight: 600; color: var(--dark) !important; margin-top: 2px; }

.office-phone {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}

.office-phone:hover { color: var(--primary-dark); }

.office-featured-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Region Filter */
.region-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.region-btn {
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  background: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  color: var(--dark-3);
}

.region-btn:hover { border-color: var(--primary); color: var(--primary); }
.region-btn.active { background: var(--primary); border-color: var(--primary); color: white; }

/* Office Cards Grid */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.office-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.office-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.office-card-top {
  padding: 16px 16px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.office-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.office-top-info h3 { font-size: 17px; font-weight: 800; color: var(--dark); }
.office-region-tag {
  font-size: 11px;
  color: var(--mid);
  background: var(--light);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
  display: inline-block;
  margin-top: 3px;
}

.office-card-body { padding: 14px 16px; flex: 1; }

.office-name {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.office-address {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--dark-3);
  line-height: 1.5;
  margin-bottom: 10px;
}

.office-address i { margin-top: 2px; flex-shrink: 0; }
.office-address strong { color: var(--dark); }

.office-phones { display: flex; flex-direction: column; gap: 6px; }

.office-phone-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.office-phone-item:hover { color: var(--primary); }

.office-card-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 6px;
}

/* Contact Form Section */
.contact-form-section { background: white; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.cfh-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-form-header h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.contact-form-header p { font-size: 14px; color: var(--mid); }

.contact-form-submit { margin-top: 8px; }

.submit-note {
  text-align: center;
  font-size: 13px;
  color: var(--mid);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.submit-note i { color: var(--primary); }

.contact-success {
  text-align: center;
  padding: 32px 16px;
}

.contact-success .success-icon { font-size: 56px; margin-bottom: 12px; }
.contact-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.contact-success p { color: var(--mid); margin-bottom: 20px; }

/* Info Panel Cards */
.contact-info-panel { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 80px; }

.cinfo-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* WhatsApp Card */
.whatsapp-card { border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.04); }

.cinfo-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cinfo-card-header i { font-size: 26px; color: #25D366; }
.cinfo-card-header strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); }
.cinfo-card-header span { font-size: 12px; color: var(--mid); }

.whatsapp-card p { font-size: 13px; color: var(--dark-3); margin-bottom: 14px; }

/* Why Contact */
.why-contact-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.why-contact-card h3 i { color: var(--primary); }

.why-contact-list { display: flex; flex-direction: column; gap: 12px; }

.wc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wc-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.wc-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.wc-item span { font-size: 12px; color: var(--mid); }

/* Galati Card */
.galati-card { background: linear-gradient(135deg, #0f172a, #1e293b); border: none; }

.galati-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.galati-flag { font-size: 28px; }
.galati-card-header strong { color: white; font-size: 15px; font-weight: 700; display: block; }
.galati-card-header span { color: rgba(255,255,255,0.6); font-size: 12px; }
.galati-card p { color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 12px; }

.galati-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.galati-detail i { color: var(--primary-light); }

/* Social Card */
.social-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }

.social-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.social-link i { font-size: 16px; }
.social-link span { color: var(--dark-3); }

.social-link.instagram { background: rgba(225,48,108,0.08); }
.social-link.instagram i { color: #e1306c; }
.social-link.instagram:hover { background: rgba(225,48,108,0.15); }

.social-link.youtube { background: rgba(255,0,0,0.08); }
.social-link.youtube i { color: #ff0000; }
.social-link.youtube:hover { background: rgba(255,0,0,0.15); }

.social-link.tiktok { background: rgba(0,0,0,0.06); }
.social-link.tiktok i { color: #000; }
.social-link.tiktok:hover { background: rgba(0,0,0,0.12); }

.social-link.twitter { background: rgba(29,161,242,0.08); }
.social-link.twitter i { color: #1da1f2; }
.social-link.twitter:hover { background: rgba(29,161,242,0.15); }

/* Map Section */
.contact-map-section { background: var(--light); }

.turkey-map-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.map-bg {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}

.map-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  opacity: 0.9;
}

.map-overlay-text {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-align: center;
}

.map-overlay-text strong { display: block; font-size: 18px; font-weight: 800; }
.map-overlay-text span { font-size: 11px; opacity: 0.8; }

.map-cities-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
}

.map-city-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.map-city-item:hover { border-color: var(--primary); background: rgba(26,86,219,0.02); }

.map-city-icon { font-size: 20px; flex-shrink: 0; }
.map-city-name { font-weight: 700; font-size: 14px; flex: 1; }
.map-city-phone { font-size: 12px; color: var(--mid); }

.map-city-call {
  width: 30px; height: 30px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
}

.map-city-call:hover { background: var(--primary-dark); }

/* Why Deep Grid (Neden Galati page) */
.why-deep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-deep-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.why-deep-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.why-deep-stat {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.why-deep-label {
  font-size: 13px;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 12px;
}

.why-deep-icon { font-size: 28px; margin-bottom: 10px; }

.why-deep-card p {
  font-size: 13px;
  color: var(--dark-3);
  line-height: 1.7;
}

/* Responsive — Contact */
@media (max-width: 1024px) {
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-featured-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
  .turkey-map-visual { grid-template-columns: 1fr; }
  .why-deep-grid { grid-template-columns: repeat(2, 1fr); }
  .qcbar-divider { display: none; }
}

@media (max-width: 768px) {
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .contact-hero h1 { font-size: 32px; }
  .contact-hero-stats { gap: 20px; }
  .qcbar-inner { flex-direction: column; gap: 12px; }
  .why-deep-grid { grid-template-columns: 1fr; }
  .quick-contact-bar { position: static; }
}

@media (max-width: 480px) {
  .offices-grid { grid-template-columns: 1fr; }
  .offices-featured-grid { grid-template-columns: 1fr; }
  .social-links-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RICH CONTENT PAGES (SEO Program Pages)
   ============================================================ */

.rich-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1a56db 100%);
  padding: 100px 0 60px;
  margin-top: 68px;
  position: relative;
  overflow: hidden;
}

.rich-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
  pointer-events: none;
}

.rich-hero-content { position: relative; z-index: 1; max-width: 760px; }

.rich-hero-content h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: white;
  margin: 12px 0 16px;
  line-height: 1.15;
}

.rich-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 640px;
}

.rich-hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.rich-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 12px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.rich-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.rich-stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.rich-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.rich-content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.rich-main { display: flex; flex-direction: column; gap: 24px; }

.rich-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

.rich-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rich-card h2 i { color: var(--primary); }

.rich-hook {
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark-3);
  font-style: italic;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 0;
}

.rich-card p {
  color: var(--dark-3);
  line-height: 1.8;
  font-size: 15px;
}

.why-sections { display: flex; flex-direction: column; gap: 20px; }

.why-section-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius);
  align-items: flex-start;
}

.why-section-icon { font-size: 28px; flex-shrink: 0; }

.why-section-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.why-section-content p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}

.career-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.career-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
}

.career-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.career-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 10px;
}

.career-salary {
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 6px;
}

.parent-card { background: linear-gradient(135deg, #fef9ec, #fffbf0); border-color: #f59e0b30; }
.parent-card h2 i { color: #f59e0b; }

.student-voice-card { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); border-color: #0ea5e930; }
.student-voice-card h2 i { color: #0ea5e9; }

blockquote {
  font-size: 16px;
  font-style: italic;
  color: var(--dark-3);
  line-height: 1.8;
  border-left: 4px solid #0ea5e9;
  padding-left: 16px;
  margin: 0;
}

.sticky-sidebar { position: sticky; top: 90px; }

.sidebar-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.comparison-mini { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }

.comp-mini-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--dark-3);
  line-height: 1.5;
}

.comp-mini-item i { color: var(--success); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 1024px) {
  .rich-content-layout { grid-template-columns: 1fr; }
  .career-cards { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
}

@media (max-width: 768px) {
  .rich-hero { padding: 90px 0 40px; }
  .rich-hero-stats { gap: 12px; }
  .rich-card { padding: 20px; }
}

/* ============================================================
   GUIDE CONTENT
   ============================================================ */
.guide-content { max-width: 760px; margin: 0 auto; }
.guide-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 20px; }
.guide-content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; }
.guide-content p { color: var(--dark-3); line-height: 1.8; margin-bottom: 16px; }
.guide-content ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.guide-content ul li::before { content: '✅ '; }
.guide-content ul li { color: var(--dark-3); line-height: 1.6; padding-left: 4px; }

.guide-note {
  background: #fef9ec;
  border: 1px solid #fbbf24;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--dark-3);
  margin-top: 24px;
}

.cost-table { display: flex; flex-direction: column; gap: 0; margin: 16px 0; }
.cost-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.cost-row:last-child { border-bottom: none; }
.cost-row span { color: var(--dark-3); }
.cost-row strong { font-weight: 700; color: var(--dark); }
.cost-row.cost-total {
  background: var(--light);
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
}
.cost-row.cost-total span { color: var(--dark); font-weight: 700; }
.cost-row.cost-total strong { color: var(--primary); font-size: 17px; }
