/* =============================================
   EUROSTAR YURTDIŞI EĞİTİM DANIŞMANLIĞI
   Premium CSS Design System v3.0
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --primary: #1a56db;
  --primary-dark: #1440a8;
  --primary-light: #3b82f6;
  --primary-ultra-light: #eff6ff;
  --secondary: #059669;
  --secondary-light: #d1fae5;
  --accent: #ef4444;
  --accent-orange: #f97316;
  --gold: #d97706;
  --gold-light: #fef3c7;
  --purple: #7c3aed;
  --dark: #0f172a;
  --dark2: #1e293b;
  --dark3: #334155;
  --gray: #64748b;
  --gray-light: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --white: #ffffff;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-2xl: 0 40px 80px rgba(0,0,0,0.15);
  --shadow-primary: 0 8px 24px rgba(26,86,219,0.3);
  --shadow-green: 0 8px 24px rgba(5,150,105,0.3);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.4s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;
  --max-width: 1300px;
  --nav-height: 76px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; text-rendering: optimizeLegibility; }
body { font-family: var(--font-main); color: var(--dark); background: #f8fafc; line-height: 1.65; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--primary); color: white; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; color: var(--dark); }
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.7; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-primary);
}
.brand-star {
  color: #fbbf24;
  font-size: 1.1rem;
  line-height: 1;
}
.brand-main {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: white;
  letter-spacing: 1.5px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-sub {
  font-size: 0.62rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--radius-sm); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500; color: var(--dark3);
  transition: var(--transition); white-space: nowrap;
  position: relative;
}
.nav-link:hover, .nav-item:hover > .nav-link { background: var(--primary-ultra-light); color: var(--primary); }
.nav-link.active, .nav-item.active > .nav-link {
  color: var(--primary); font-weight: 700;
  background: var(--primary-ultra-light);
}
.nav-link.active::after {
  content: '';
  position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 2px; background: var(--primary); border-radius: 2px;
}
.nav-link .arrow { font-size: 0.65rem; margin-left: 2px; opacity: 0.6; }
/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 240px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); z-index: 200;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-header {
  padding: 6px 10px 4px;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--gray); margin-top: 4px;
}
.dropdown-divider { height: 1px; background: var(--gray-200); margin: 6px 8px; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 500; color: var(--dark2);
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--primary-ultra-light); color: var(--primary); }
.dropdown-all {
  color: var(--primary) !important; font-weight: 700 !important;
  border-top: 1px solid var(--gray-200); margin-top: 4px;
}
/* CTA Button */
.btn-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: white; font-size: 0.83rem; font-weight: 700;
  box-shadow: var(--shadow-primary);
  transition: var(--transition); white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,0.45); }
.cta-icon { font-size: 0.75rem; }
.cta-item { margin-left: 6px; }

/* Consultancy Banner */
.consultancy-banner {
  background: linear-gradient(90deg, var(--dark) 0%, #1e3a8a 60%, var(--primary) 100%);
  padding: 10px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.consultancy-banner-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}
.cb-badge {
  background: rgba(251,191,36,0.2); color: #fbbf24;
  padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 800;
  border: 1px solid rgba(251,191,36,0.3); white-space: nowrap;
}
.cb-text {
  color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 500;
  flex: 1; text-align: center; min-width: 200px;
}
.cb-btn {
  background: rgba(255,255,255,0.12); color: white;
  padding: 5px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.25); white-space: nowrap;
  transition: var(--transition);
}
.cb-btn:hover { background: rgba(255,255,255,0.22); }
.cb-close {
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 0.9rem; cursor: pointer; padding: 4px; line-height: 1;
  transition: var(--transition); flex-shrink: 0;
}
.cb-close:hover { color: white; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 30%, #1e3a8a 70%, #1d4ed8 100%);
  padding: 90px 28px 80px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(99,102,241,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M20 20L0 0h40z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; width: 100%; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.3);
  color: #fbbf24; padding: 7px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.4px;
  backdrop-filter: blur(10px);
}
.hero-verified {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(5,150,105,0.12); border: 1px solid rgba(5,150,105,0.3);
  color: #34d399; padding: 7px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
}
.hero h1 { color: white; margin-bottom: 20px; max-width: 780px; line-height: 1.15; }
.hero h1 .highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p, .hero-desc { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 600px; margin-bottom: 40px; line-height: 1.75; }
.hero-search-box {
  background: white; border-radius: var(--radius-xl);
  padding: 8px; display: flex; gap: 8px; max-width: 720px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 8px 20px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}
.hero-search-box input {
  flex: 2; min-width: 200px; padding: 14px 20px;
  border: none; outline: none; font-size: 0.95rem;
  font-family: inherit; background: var(--gray-light);
  border-radius: var(--radius-md); color: var(--dark);
}
.hero-search-box select {
  flex: 1; min-width: 130px; padding: 14px 14px; border: none; outline: none;
  font-size: 0.85rem; font-family: inherit; background: var(--gray-light);
  border-radius: var(--radius-md); color: var(--dark); cursor: pointer;
}
.hero-search-box .btn-search {
  padding: 14px 28px; background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: white; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 700; transition: var(--transition);
  white-space: nowrap; box-shadow: var(--shadow-primary);
}
.hero-search-box .btn-search:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,86,219,0.5); }
.hero-stats { display: flex; gap: 44px; margin-top: 52px; flex-wrap: wrap; }
.hero-stat { color: white; }
.hero-stat .num { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 900; display: block; line-height: 1; margin-bottom: 4px; }
.hero-stat .lbl { font-size: 0.8rem; opacity: 0.68; font-weight: 500; letter-spacing: 0.3px; }
.hero-stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.12); align-self: center; }

/* Company Identity Banner */
.company-identity-strip {
  background: white;
  border-bottom: 3px solid var(--primary);
  padding: 18px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.company-identity-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: space-between;
}
.company-name-block {
  display: flex; align-items: center; gap: 16px;
}
.company-logo-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: var(--shadow-primary);
}
.company-name-text strong {
  display: block; font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 900; color: var(--dark);
  letter-spacing: 0.3px;
}
.company-name-text span {
  display: block; font-size: 0.75rem; color: var(--gray);
  font-weight: 500; margin-top: 2px;
}
.company-credentials {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.credential-chip {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; background: var(--gray-light);
  border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  color: var(--dark2); border: 1px solid var(--gray-200);
}
.credential-chip.gold {
  background: var(--gold-light); border-color: #fcd34d; color: #92400e;
}
.credential-chip.green {
  background: var(--secondary-light); border-color: #6ee7b7; color: #065f46;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: linear-gradient(90deg, #0a0f1e 0%, #0f172a 50%, #1a3060 100%);
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-strip-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap; justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: 9px; color: white; font-size: 0.85rem; font-weight: 600; }
.trust-item .icon { font-size: 1.1rem; }
.trust-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.15); }

/* =============================================
   SECTION LAYOUTS
   ============================================= */
.section { padding: 88px 28px; }
.section-sm { padding: 52px 28px; }
.section-xs { padding: 36px 28px; }
.section-dark { background: var(--dark2); color: white; }
.section-light { background: white; }
.section-gray { background: #f0f4f8; }
.section-gradient { background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%); }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .tag {
  display: inline-block; padding: 6px 18px;
  background: var(--primary-ultra-light); color: var(--primary);
  border: 1px solid rgba(26,86,219,0.2);
  border-radius: 50px; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 18px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* =============================================
   GRID SYSTEMS
   ============================================= */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 28px; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

/* =============================================
   CARDS - Base
   ============================================= */
.card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); overflow: hidden;
  transition: var(--transition-slow); position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.card-elevated { box-shadow: var(--shadow-md); border: none; }
.card-bordered { border: 2px solid var(--gray-200); }
.card-primary { border-color: var(--primary); }
.card-body { padding: 28px; }
.card-header { padding: 20px 28px; border-bottom: 1px solid var(--gray-200); }
.card-footer { padding: 18px 28px; border-top: 1px solid var(--gray-200); }

/* =============================================
   UNIVERSITY CARDS
   ============================================= */
.uni-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); overflow: hidden;
  transition: var(--transition-slow); position: relative;
  box-shadow: var(--shadow-sm);
}
.uni-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.uni-card:hover::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
  pointer-events: none; z-index: 1;
}
.uni-card-header {
  padding: 28px 28px 22px;
  background: linear-gradient(135deg, var(--header-color, var(--primary)), color-mix(in srgb, var(--header-color, var(--primary)) 70%, black 30%));
  position: relative; min-height: 130px; display: flex; align-items: flex-end;
}
.uni-type-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.badge-devlet { background: rgba(5,150,105,0.25); color: #34d399; border: 1px solid rgba(52,211,153,0.3); }
.badge-ozel { background: rgba(239,68,68,0.25); color: #f87171; border: 1px solid rgba(248,113,113,0.3); }
.uni-card-header h3 { color: white; font-size: 0.97rem; font-weight: 700; line-height: 1.3; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.uni-card-header .city { color: rgba(255,255,255,0.78); font-size: 0.8rem; margin-top: 5px; }
.uni-card-body { padding: 22px 24px; }
.uni-card-description { color: var(--gray); font-size: 0.85rem; line-height: 1.65; margin-bottom: 16px; }
.uni-stats-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.uni-stat-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--gray); }
.uni-stat-item strong { color: var(--dark2); font-weight: 700; }
.uni-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.tag { padding: 4px 11px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2px; }
.tag-blue { background: var(--primary-ultra-light); color: var(--primary); border: 1px solid rgba(26,86,219,0.15); }
.tag-green { background: var(--secondary-light); color: var(--secondary); border: 1px solid rgba(5,150,105,0.2); }
.tag-orange { background: var(--gold-light); color: var(--gold); border: 1px solid rgba(217,119,6,0.2); }
.tag-purple { background: rgba(124,58,237,0.08); color: var(--purple); border: 1px solid rgba(124,58,237,0.2); }
.uni-card-footer { padding: 16px 24px; border-top: 1px solid var(--gray-200); display: flex; gap: 10px; background: var(--gray-light); }
.uni-card-footer .btn-primary { flex: 1; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: white; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.2px;
  transition: var(--transition); box-shadow: var(--shadow-primary);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  background: transparent; color: var(--primary); font-size: 0.88rem; font-weight: 700;
  border: 2px solid var(--primary); transition: var(--transition);
}
.btn-secondary:hover { background: var(--primary); color: white; transform: translateY(-1px); }
.btn-ghost {
  padding: 10px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200); color: var(--gray);
  font-size: 0.85rem; font-weight: 600; transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-ultra-light); }
.btn-success {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--secondary), #047857);
  color: white; font-size: 0.88rem; font-weight: 700;
  transition: var(--transition); box-shadow: var(--shadow-green);
}
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,150,105,0.45); }
.btn-warning {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #d97706, #b45309);
  color: white; font-size: 0.88rem; font-weight: 700;
  transition: var(--transition);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-xl { padding: 18px 44px; font-size: 1.05rem; border-radius: 50px; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-full { width: 100%; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px;
  background: white; color: var(--primary); font-size: 0.95rem; font-weight: 800;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2); transition: var(--transition);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.28); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px;
  background: transparent; color: white; font-size: 0.95rem; font-weight: 800;
  border: 2px solid rgba(255,255,255,0.55); transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.14); border-color: white; transform: translateY(-1px); }

/* =============================================
   PROGRAM CARDS
   ============================================= */
.program-card {
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--gray-200); padding: 24px;
  transition: var(--transition-slow); cursor: pointer;
  box-shadow: var(--shadow-xs);
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.program-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; gap: 12px; }
.program-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); line-height: 1.35; }
.program-degree { padding: 4px 11px; border-radius: 50px; font-size: 0.7rem; font-weight: 800; white-space: nowrap; }
.degree-lisans { background: var(--primary-ultra-light); color: var(--primary); border: 1px solid rgba(26,86,219,0.2); }
.degree-lisansustu { background: rgba(124,58,237,0.08); color: var(--purple); border: 1px solid rgba(124,58,237,0.2); }
.degree-doktora { background: rgba(239,68,68,0.08); color: var(--accent); border: 1px solid rgba(239,68,68,0.2); }
.program-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.program-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--gray); }
.program-university { font-size: 0.82rem; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.program-tuition { font-size: 1.1rem; font-weight: 900; color: var(--dark); margin-bottom: 14px; }
.program-tuition .per-year { font-size: 0.72rem; color: var(--gray); font-weight: 500; }
.program-footer { display: flex; gap: 10px; flex-wrap: wrap; }
.verification-badge { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; }
.verified { color: var(--secondary); }
.partly-verified { color: var(--gold); }
.pending { color: var(--gray); }

/* =============================================
   CITY CARDS
   ============================================= */
.city-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: var(--transition-slow); box-shadow: var(--shadow-sm);
}
.city-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.city-card-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  position: relative; overflow: hidden;
}
.city-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.2) 100%);
}
.city-card-body { padding: 22px; }
.city-card-body h3 { margin-bottom: 7px; font-size: 1.05rem; }
.city-card-body p { color: var(--gray); font-size: 0.84rem; margin-bottom: 14px; line-height: 1.55; }
.city-stats { display: flex; gap: 20px; margin-bottom: 14px; }
.city-stat { font-size: 0.8rem; color: var(--gray); }
.city-stat strong { display: block; font-size: 1.1rem; color: var(--dark); font-weight: 900; }
.cost-range { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; }
.cost-range .range { font-weight: 800; color: var(--primary); }

/* =============================================
   FIELD CARDS
   ============================================= */
.field-card {
  background: white; border-radius: var(--radius-md);
  padding: 28px; border: 1px solid var(--gray-200);
  transition: var(--transition-slow); text-align: center;
  box-shadow: var(--shadow-xs);
}
.field-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.field-icon { font-size: 2.8rem; margin-bottom: 14px; }
.field-card h3 { font-size: 0.97rem; margin-bottom: 8px; }
.field-card p { color: var(--gray); font-size: 0.82rem; margin-bottom: 14px; }
.field-count { font-size: 0.75rem; font-weight: 800; color: var(--primary); }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { max-width: 900px; margin: 0 auto; }
.faq-category { margin-bottom: 44px; }
.faq-category-title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 1.1rem; color: var(--dark2); padding-bottom: 12px; border-bottom: 2px solid var(--gray-200); }
.faq-item {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  margin-bottom: 10px; overflow: hidden; box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; padding: 20px 24px; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.93rem; font-weight: 600; color: var(--dark); gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--gray-light); }
.faq-question.active { background: var(--primary-ultra-light); color: var(--primary); }
.faq-chevron { font-size: 0.7rem; flex-shrink: 0; transition: transform 0.3s ease; color: var(--gray); }
.faq-question.active .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer { display: none; padding: 0 24px 20px; animation: fadeIn 0.25s ease; }
.faq-answer.show { display: block; }
.faq-answer p { color: var(--gray); font-size: 0.88rem; line-height: 1.75; margin-bottom: 10px; }
.faq-answer .detail { background: var(--gray-light); padding: 14px 18px; border-radius: var(--radius-sm); border-left: 3px solid var(--primary); font-size: 0.85rem; color: var(--dark2); }

/* =============================================
   FILTER PANEL
   ============================================= */
.filter-panel {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); padding: 26px;
  position: sticky; top: calc(var(--nav-height) + 20px);
  box-shadow: var(--shadow-sm);
}
.filter-panel h3 { font-size: 1rem; margin-bottom: 22px; color: var(--dark); display: flex; align-items: center; justify-content: space-between; }
.filter-group { margin-bottom: 26px; }
.filter-group label { display: block; font-size: 0.72rem; font-weight: 800; color: var(--dark3); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.8px; }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 6px 10px; border-radius: var(--radius-sm); transition: var(--transition); }
.filter-option:hover { background: var(--gray-light); }
.filter-option input { width: 16px; height: 16px; cursor: pointer; accent-color: var(--primary); }
.filter-option span { font-size: 0.87rem; color: var(--dark2); flex: 1; }
.filter-option .count { font-size: 0.72rem; color: var(--gray); background: var(--gray-light); padding: 2px 8px; border-radius: 50px; font-weight: 700; }
.filter-select {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 0.87rem; font-family: inherit;
  color: var(--dark); outline: none; transition: var(--transition); background: white;
}
.filter-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,0.08); }
.btn-filter-apply {
  width: 100%; padding: 14px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: white; font-weight: 700; font-size: 0.9rem;
  transition: var(--transition); margin-top: 4px;
  box-shadow: var(--shadow-primary);
}
.btn-filter-apply:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,86,219,0.45); }
.btn-filter-reset { width: 100%; padding: 10px; color: var(--gray); font-size: 0.83rem; margin-top: 8px; font-weight: 600; }
.btn-filter-reset:hover { color: var(--primary); }

/* =============================================
   SEARCH PAGE LAYOUT
   ============================================= */
.search-page-layout { display: grid; grid-template-columns: 290px 1fr; gap: 32px; align-items: start; }
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.results-count { font-size: 0.9rem; color: var(--gray); font-weight: 500; }
.results-count strong { color: var(--dark); font-weight: 800; }
.sort-select { padding: 10px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.87rem; outline: none; background: white; }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.active-filter { display: flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 50px; background: var(--primary-ultra-light); color: var(--primary); font-size: 0.75rem; font-weight: 700; border: 1px solid rgba(26,86,219,0.2); }
.active-filter button { background: none; border: none; cursor: pointer; color: var(--primary); font-size: 0.8rem; padding: 0; margin-left: 2px; }

/* =============================================
   LEAD FORM / CONVERSION SECTIONS
   ============================================= */
.lead-form-section {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 40%, #1e3a8a 100%);
  padding: 88px 28px; color: white; position: relative; overflow: hidden;
}
.lead-form-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,86,219,0.15) 0%, transparent 70%);
}
.lead-form-container { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.lead-form-header { text-align: center; margin-bottom: 52px; }
.lead-form-header h2 { color: white; margin-bottom: 14px; }
.lead-form-header p { color: rgba(255,255,255,0.72); font-size: 1.05rem; }
.lead-form-header .brand-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,191,36,0.12); color: #fbbf24;
  padding: 8px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
  border: 1px solid rgba(251,191,36,0.25); margin-bottom: 20px;
}
.lead-form {
  background: white; border-radius: var(--radius-xl);
  padding: 48px; box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 800; color: var(--dark2); letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 0.92rem; font-family: inherit;
  outline: none; transition: var(--transition); color: var(--dark);
  background: var(--gray-light);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); background: white;
  box-shadow: 0 0 0 4px rgba(26,86,219,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 28px; text-align: center; }
.form-submit .btn-primary { padding: 18px 52px; font-size: 1rem; border-radius: 50px; box-shadow: var(--shadow-primary); }
.form-disclaimer { margin-top: 14px; font-size: 0.76rem; color: var(--gray); }
.form-benefits { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.form-benefit { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray); }

/* =============================================
   PROCESS STEPS
   ============================================= */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.step-card {
  background: white; border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--gray-200); transition: var(--transition-slow);
  position: relative; box-shadow: var(--shadow-xs);
}
.step-card:not(:last-child)::after {
  content: '→';
  position: absolute; right: -22px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-300); font-size: 1.3rem; font-weight: 700;
  z-index: 1;
}
.step-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); transform: translateY(-3px); }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: white; font-size: 1.2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: var(--shadow-primary);
}
.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-card h4 { margin-bottom: 10px; font-size: 1rem; }
.step-card p { color: var(--gray); font-size: 0.84rem; line-height: 1.6; }

/* =============================================
   CTA BLOCKS
   ============================================= */
.cta-block {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  border-radius: var(--radius-xl); padding: 64px 52px;
  text-align: center; color: white;
  box-shadow: 0 24px 64px rgba(26,86,219,0.35);
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.cta-block h2 { color: white; margin-bottom: 16px; position: relative; }
.cta-block p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-block .company-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,191,36,0.15); color: #fbbf24;
  padding: 8px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  border: 1px solid rgba(251,191,36,0.25); margin-bottom: 24px;
  position: relative;
}

/* =============================================
   TUITION COMPARISON TABLE
   ============================================= */
.tuition-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.tuition-table th { background: var(--dark); color: white; padding: 16px 20px; text-align: left; font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; }
.tuition-table td { padding: 16px 20px; border-bottom: 1px solid var(--gray-200); font-size: 0.9rem; }
.tuition-table tr:last-child td { border-bottom: none; }
.tuition-table tr:hover td { background: var(--gray-light); }
.price-highlight { font-weight: 900; color: var(--primary); font-size: 1rem; }
.source-link { font-size: 0.73rem; color: var(--primary); text-decoration: underline; }

/* =============================================
   UNIVERSITY DETAIL PAGE
   ============================================= */
.uni-detail-hero {
  background: linear-gradient(135deg, var(--header-color, var(--primary)), color-mix(in srgb, var(--header-color, var(--primary)) 60%, black 40%));
  padding: 80px 28px; color: white;
}
.uni-detail-hero .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.uni-detail-icon { width: 110px; height: 110px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 3.2rem; flex-shrink: 0; backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.2); }
.uni-detail-info h1 { color: white; font-size: clamp(1.5rem, 3vw, 2.3rem); margin-bottom: 8px; }
.uni-detail-info .official-name { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 18px; }
.uni-meta-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.uni-meta-pill { display: flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 50px; background: rgba(255,255,255,0.12); color: white; font-size: 0.8rem; font-weight: 600; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }
.uni-detail-body { padding: 64px 28px; }
.uni-detail-layout { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }
.uni-detail-sidebar { position: sticky; top: calc(var(--nav-height) + 20px); }
.info-card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.info-card h4 { margin-bottom: 18px; font-size: 1rem; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.info-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.87rem; gap: 12px; }
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--gray); flex-shrink: 0; }
.info-row .value { font-weight: 700; color: var(--dark); text-align: right; }
.action-card { background: linear-gradient(135deg, var(--primary), #1d4ed8); border-radius: var(--radius-lg); padding: 28px; color: white; box-shadow: var(--shadow-primary); }
.action-card h4 { color: white; margin-bottom: 14px; }
.action-card p { color: rgba(255,255,255,0.8); font-size: 0.86rem; margin-bottom: 20px; }
.action-card .btn-white { display: flex; justify-content: center; margin-bottom: 10px; }
.disclaimer-box { background: var(--gold-light); border: 1px solid #fcd34d; border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.78rem; color: #78350f; line-height: 1.6; margin-top: 20px; }
.disclaimer-box strong { display: block; margin-bottom: 4px; }

/* Consultancy CTA on university pages */
.eurostar-promo-box {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border-radius: var(--radius-lg); padding: 32px; color: white;
  margin-bottom: 20px; position: relative; overflow: hidden;
}
.eurostar-promo-box::before {
  content: '★';
  position: absolute; right: 20px; top: 16px;
  font-size: 4rem; color: rgba(251,191,36,0.08);
  font-family: var(--font-heading);
}
.eurostar-promo-box .promo-label {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: #fbbf24; margin-bottom: 10px; display: block;
}
.eurostar-promo-box h4 { color: white; font-size: 1.05rem; margin-bottom: 10px; }
.eurostar-promo-box p { color: rgba(255,255,255,0.72); font-size: 0.83rem; margin-bottom: 18px; line-height: 1.6; }
.eurostar-promo-box .promo-stats {
  display: flex; gap: 16px; margin-bottom: 20px;
  padding: 14px; background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.08);
}
.promo-stat { text-align: center; flex: 1; }
.promo-stat strong { display: block; font-size: 1.3rem; font-weight: 900; color: #fbbf24; }
.promo-stat span { font-size: 0.65rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb { padding: 14px 28px; background: var(--gray-light); border-bottom: 1px solid var(--gray-200); }
.breadcrumb-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray); flex-wrap: wrap; }
.breadcrumb a { color: var(--primary); transition: var(--transition); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--gray-300); }

/* =============================================
   BADGES & STATUS
   ============================================= */
.status-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.status-verified { background: var(--secondary-light); color: var(--secondary); border: 1px solid rgba(5,150,105,0.2); }
.status-partial { background: var(--gold-light); color: var(--gold); border: 1px solid rgba(217,119,6,0.2); }
.status-pending { background: var(--gray-light); color: var(--gray); border: 1px solid var(--gray-200); }
.trust-score { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; }
.trust-bar { flex: 1; height: 5px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.trust-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--secondary), #10b981); }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.compare-table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; background: white; }
.compare-table th { background: var(--dark); color: white; padding: 16px 20px; text-align: left; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid rgba(255,255,255,0.1); min-width: 210px; }
.compare-table th:first-child { min-width: 170px; position: sticky; left: 0; background: var(--dark2); z-index: 2; }
.compare-table td { padding: 16px 20px; border-bottom: 1px solid var(--gray-200); font-size: 0.88rem; }
.compare-table td:first-child { font-weight: 700; color: var(--dark2); position: sticky; left: 0; background: white; z-index: 1; font-size: 0.82rem; border-right: 1px solid var(--gray-200); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--gray-light); }
.compare-table tr:hover td:first-child { background: var(--gray-light); }
.compare-yes { color: var(--secondary); font-weight: 800; }
.compare-no { color: var(--accent); font-weight: 800; }

/* =============================================
   VISA SECTION
   ============================================= */
.visa-warning {
  background: var(--gold-light); border: 2px solid #fcd34d; border-radius: var(--radius-md);
  padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 32px;
}
.visa-warning .icon { font-size: 1.5rem; flex-shrink: 0; }
.visa-warning p { font-size: 0.87rem; color: #78350f; line-height: 1.65; }
.visa-warning strong { display: block; margin-bottom: 6px; font-size: 0.93rem; }
.visa-step { background: white; border-radius: var(--radius-md); border: 1px solid var(--gray-200); padding: 28px; margin-bottom: 16px; display: flex; gap: 20px; box-shadow: var(--shadow-xs); }
.visa-step-num { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #1d4ed8); color: white; font-weight: 900; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-primary); }
.visa-step-content h4 { margin-bottom: 8px; }
.visa-step-content p { color: var(--gray); font-size: 0.87rem; line-height: 1.65; }
.visa-step-source { font-size: 0.73rem; color: var(--primary); margin-top: 8px; font-weight: 600; }

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
#whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
}
.whatsapp-float-btn {
  display: flex; align-items: center; gap: 12px;
  background: #25d366; color: white; padding: 14px 20px 14px 16px;
  border-radius: 50px; box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.15);
  transition: var(--transition); text-decoration: none;
}
.whatsapp-float-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 40px rgba(37,211,102,0.55), 0 6px 16px rgba(0,0,0,0.2); }
.wa-icon { font-size: 1.6rem; line-height: 1; }
.wa-text strong { display: block; font-size: 0.85rem; font-weight: 800; line-height: 1.2; }
.wa-text small { font-size: 0.7rem; opacity: 0.88; }
.whatsapp-btn-footer { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #25d366; color: white; padding: 12px 20px; border-radius: 50px; font-size: 0.83rem; font-weight: 700; margin-top: 10px; width: 100%; transition: var(--transition); }
.whatsapp-btn-footer:hover { background: #1fad54; transform: translateY(-1px); }
.phone-btn-footer { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); padding: 10px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-top: 8px; width: 100%; transition: var(--transition); border: 1px solid rgba(255,255,255,0.15); }
.phone-btn-footer:hover { background: rgba(255,255,255,0.14); color: white; }

/* Scroll to top button */
.scroll-top-btn {
  position: fixed; bottom: 28px; left: 28px; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: white; color: var(--dark2); font-size: 1rem; font-weight: 900;
  border: 2px solid var(--gray-200); box-shadow: var(--shadow-md);
  transition: var(--transition); opacity: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #0a0f1e; color: white; }
.footer-main { padding: 80px 28px 52px; }
.footer-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1.6fr; gap: 52px; }

/* Footer Brand */
.footer-logo { margin-bottom: 18px; }
.footer-logo-mark { display: flex; align-items: center; gap: 10px; }
.footer-star { color: #fbbf24; font-size: 1.3rem; }
.footer-brand-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 900; color: white; letter-spacing: 1.5px; }
.footer-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 600; margin-top: 4px; letter-spacing: 0.6px; text-transform: uppercase; }
.footer-desc { color: rgba(255,255,255,0.58); font-size: 0.84rem; line-height: 1.75; margin-bottom: 24px; }
.footer-trust { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.social-btn { padding: 8px 16px; border-radius: 50px; font-size: 0.76rem; font-weight: 700; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.social-btn.whatsapp { background: rgba(37,211,102,0.12); color: #4ade80; border: 1px solid rgba(37,211,102,0.2); }
.social-btn.whatsapp:hover { background: #25d366; color: white; border-color: #25d366; }
.social-btn.instagram { background: rgba(225,48,108,0.12); color: #f472b6; border: 1px solid rgba(225,48,108,0.2); }
.social-btn.instagram:hover { background: #e1306c; color: white; border-color: #e1306c; }
.social-btn.youtube { background: rgba(255,0,0,0.1); color: #f87171; border: 1px solid rgba(255,0,0,0.2); }
.social-btn.youtube:hover { background: #ff0000; color: white; border-color: #ff0000; }
.footer-cert { display: flex; flex-direction: column; gap: 7px; }
.cert-badge { display: flex; align-items: center; gap: 7px; font-size: 0.73rem; color: rgba(255,255,255,0.5); }

.footer-col h4 { font-size: 0.82rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.85); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.84rem; transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-col ul li a:hover { color: white; transform: translateX(3px); }

/* Footer Contact Box */
.footer-contact-box { margin-top: 24px; background: rgba(255,255,255,0.05); border-radius: var(--radius-md); padding: 22px; border: 1px solid rgba(255,255,255,0.07); }
.fcb-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.fcb-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.5); flex-shrink: 0; }
.fcb-header strong { font-size: 0.88rem; color: rgba(255,255,255,0.9); }
.fcb-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 14px; }

/* Footer Bottom */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 28px; }
.footer-bottom-inner { max-width: var(--max-width); margin: 0 auto; display: flex; flex-direction: column; gap: 10px; text-align: center; }
.footer-bottom-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 4px; }
.footer-bottom-brand strong { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.footer-est { background: rgba(251,191,36,0.1); color: #fbbf24; padding: 3px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; border: 1px solid rgba(251,191,36,0.2); }
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.78rem; }
.disclaimer { font-style: italic; font-size: 0.72rem !important; max-width: 800px; margin: 0 auto; line-height: 1.6 !important; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 4px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.75rem; transition: var(--transition); }
.footer-links a:hover { color: white; }

/* =============================================
   ALERTS & NOTICE BOXES
   ============================================= */
.alert { padding: 16px 20px; border-radius: var(--radius-sm); font-size: 0.87rem; line-height: 1.65; margin-bottom: 16px; display: flex; gap: 12px; align-items: flex-start; }
.alert-warning { background: var(--gold-light); border: 1px solid #fcd34d; color: #78350f; }
.alert-info { background: var(--primary-ultra-light); border: 1px solid rgba(26,86,219,0.2); color: var(--primary-dark); }
.alert-success { background: var(--secondary-light); border: 1px solid rgba(5,150,105,0.2); color: #065f46; }
.alert-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { display: flex; gap: 8px; justify-content: center; align-items: center; padding: 32px 0; }
.page-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); font-size: 0.87rem; font-weight: 700; color: var(--dark2); transition: var(--transition); }
.page-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-ultra-light); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: white; box-shadow: var(--shadow-primary); }
.page-btn.disabled { opacity: 0.4; pointer-events: none; }

/* =============================================
   PROGRAM DETAIL PAGE
   ============================================= */
.program-detail-hero { background: linear-gradient(135deg, #0a0f1e, #1e3a8a); padding: 64px 28px; color: white; }
.program-field-icon { font-size: 3rem; margin-bottom: 16px; }
.program-detail-hero h1 { color: white; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.program-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.program-pill { padding: 6px 16px; border-radius: 50px; background: rgba(255,255,255,0.12); color: white; font-size: 0.78rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.2); }
.program-quick-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin-top: 32px; }
.quick-fact { background: rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 18px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); }
.quick-fact .fact-label { font-size: 0.7rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 4px; }
.quick-fact .fact-value { font-size: 1.05rem; font-weight: 900; }

/* =============================================
   DOCUMENT CHECKLIST
   ============================================= */
.checklist { background: white; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; box-shadow: var(--shadow-sm); }
.checklist-header { padding: 20px 24px; background: var(--gray-light); border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; }
.checklist-header h3 { font-size: 1rem; }
.checklist-body { padding: 16px; }
.checklist-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border-radius: var(--radius-sm); transition: var(--transition); }
.checklist-item:hover { background: var(--gray-light); }
.check-icon { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--gray-200); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; cursor: pointer; font-size: 0.75rem; color: transparent; transition: var(--transition); }
.checklist-item.checked .check-icon { background: var(--secondary); border-color: var(--secondary); color: white; }
.checklist-content h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.checklist-content p { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }
.checklist-content .important { font-size: 0.75rem; color: var(--accent-orange); font-weight: 700; margin-top: 4px; }

/* =============================================
   SEARCH RESULTS EMPTY
   ============================================= */
.empty-state { text-align: center; padding: 80px 28px; }
.empty-state .empty-icon { font-size: 4.5rem; margin-bottom: 20px; opacity: 0.4; }
.empty-state h3 { margin-bottom: 12px; color: var(--gray); }
.empty-state p { color: var(--gray); font-size: 0.9rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); transition: var(--transition-slow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-family: var(--font-heading); font-size: 4rem;
  color: var(--primary-ultra-light); font-weight: 900; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--dark2); font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #1d4ed8); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 800; font-size: 0.9rem; margin-bottom: 3px; }
.testimonial-role { font-size: 0.75rem; color: var(--gray); }

/* =============================================
   STAT CARDS (About / Home)
   ============================================= */
.stat-highlight-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; text-align: center;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: var(--transition-slow); position: relative; overflow: hidden;
}
.stat-highlight-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-ultra-light), transparent);
  opacity: 0; transition: var(--transition);
}
.stat-highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-highlight-card:hover::before { opacity: 1; }
.stat-highlight-num {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900;
  color: var(--primary); line-height: 1; margin-bottom: 8px; display: block;
  position: relative;
}
.stat-highlight-label { color: var(--gray); font-size: 0.88rem; font-weight: 600; position: relative; }

/* =============================================
   ABOUT PAGE SPECIFIC
   ============================================= */
.team-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-200);
  text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 18px; box-shadow: var(--shadow-primary);
}
.team-name { font-size: 1.05rem; font-weight: 800; margin-bottom: 5px; }
.team-role { font-size: 0.82rem; color: var(--primary); font-weight: 700; margin-bottom: 12px; }
.team-bio { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--primary-light)); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before { content: ''; position: absolute; left: -32px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 3px solid white; box-shadow: 0 0 0 2px var(--primary); }
.timeline-year { font-size: 0.78rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: 7px; }
.timeline-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* =============================================
   SPECIFIC PAGE STYLES - /hakkinda
   ============================================= */
.about-hero { background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 50%, #1e3a8a 100%); padding: 100px 28px 80px; color: white; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(26,86,219,0.2) 0%, transparent 60%); }
.about-hero .container { position: relative; z-index: 1; }
.about-hero h1 { color: white; margin-bottom: 20px; }
.about-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; line-height: 1.75; }

/* =============================================
   ACCORDIONS (Bootstrap override)
   ============================================= */
.accordion-button:not(.collapsed) { background: var(--primary-ultra-light); color: var(--primary); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(26,86,219,0.12); }
.accordion-button { font-weight: 600; font-size: 0.93rem; }

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .uni-detail-layout { grid-template-columns: 1fr; }
  .uni-detail-sidebar { position: static; }
  .nav-container { padding: 0 20px; }
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .search-page-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .company-identity-inner { gap: 20px; }
  .step-card:not(:last-child)::after { display: none; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-height: 66px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; flex-direction: column;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: white; padding: 16px; border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg); gap: 2px; max-height: 80vh; overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-link.active::after { display: none; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: var(--gray-light);
    padding: 4px 8px; border-radius: var(--radius-sm); margin-top: 4px;
  }
  .cta-item { margin-left: 0; }
  .btn-cta { width: 100%; justify-content: center; margin-top: 8px; padding: 12px; }
  .consultancy-banner { padding: 8px 16px; }
  .cb-text { display: none; }
  .hero { padding: 72px 20px 60px; min-height: auto; }
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .lead-form { padding: 28px 20px; }
  .cta-block { padding: 44px 24px; }
  .section { padding: 60px 20px; }
  .trust-strip-inner { gap: 16px; }
  .trust-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-search-box { flex-direction: column; border-radius: var(--radius-md); }
  .hero-search-box input, .hero-search-box select { width: 100%; }
  #whatsapp-float { bottom: 16px; right: 16px; }
  .wa-text { display: none; }
  .whatsapp-float-btn { padding: 14px; border-radius: 50%; }
  .wa-icon { font-size: 1.8rem; }
  .scroll-top-btn { bottom: 80px; left: 16px; }
  .company-identity-strip { padding: 14px 20px; }
  .company-credentials { gap: 8px; }
  .credential-chip { font-size: 0.72rem; padding: 6px 12px; }
  .uni-detail-hero .container { flex-direction: column; gap: 24px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 18px; }
  .uni-meta-pills { gap: 6px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .brand-logo-wrap { padding: 6px 12px; }
  .brand-main { font-size: 1rem; }
  .brand-sub { display: none; }
  .footer-bottom-brand { flex-direction: column; gap: 8px; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.65; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.animate-fadeInUp { animation: fadeInUp 0.55s ease forwards; }
.animate-fadeIn { animation: fadeIn 0.35s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--gray-light) 25%, #e8ecef 50%, var(--gray-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-gray { color: var(--gray); }
.text-gold { color: var(--gold); }
.text-white { color: white; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.1rem; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }
.hidden { display: none; }
.visible { display: block; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.rounded { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 50%; }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.border { border: 1px solid var(--gray-200); }
.border-top { border-top: 1px solid var(--gray-200); }
.border-bottom { border-bottom: 1px solid var(--gray-200); }
