/* ==========================================================================
   ATAŞEHİR ADIGÜZEL MESLEK YÜKSEKOKULU - ADAY ÖĞRENCİ PORTALI
   Resmi Kurumsal Renk Paleti:
   1. Kurumsal Koyu Lacivert / Mavi: #00548f / #072b4a / #04192b
   2. Canlı Vurgu Turuncu: #ff8f35 / #e67319 / #ff6b00
   3. Beyaz, Açık Zemin & Koyu Kontrast: #ffffff / #f8fafc / #0f172a
   ========================================================================== */

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

:root {
  /* Kurumsal Renkler */
  --primary-blue: #00548f;
  --primary-dark: #072b4a;
  --primary-deep: #04192b;
  --primary-light: #0d70b7;
  --primary-subtle: #e6f1f8;
  --primary-glow: rgba(0, 84, 143, 0.4);

  --accent-orange: #ff8f35;
  --accent-orange-dark: #e87313;
  --accent-orange-light: #fff3eb;
  --accent-orange-glow: rgba(255, 143, 53, 0.45);

  --accent-green: #10b981;
  --accent-green-light: #ecfdf5;

  --white: #ffffff;
  --canvas-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-light: #e2e8f0;
  --border-subtle: rgba(255, 255, 255, 0.16);

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-inverse: #ffffff;

  /* Tipografi */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Gölgeler */
  --shadow-sm: 0 2px 8px rgba(0, 84, 143, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(7, 43, 74, 0.08), 0 8px 10px -6px rgba(7, 43, 74, 0.04);
  --shadow-lg: 0 20px 40px -15px rgba(7, 43, 74, 0.15);
  --shadow-xl: 0 25px 50px -12px rgba(4, 25, 43, 0.25);
  --shadow-orange: 0 10px 25px -5px rgba(255, 143, 53, 0.45);
  --shadow-neon: 0 0 30px rgba(255, 143, 53, 0.35);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Geçişler */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sıfırlama */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--canvas-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Özel Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Konteyner */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   ANİMASYONLAR
   ========================================================================== */
@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(255, 143, 53, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 143, 53, 0.8), 0 0 10px rgba(255, 255, 255, 0.6);
  }
}

@keyframes badgeShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(200%);
  }
}

@keyframes robotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 143, 53, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(255, 143, 53, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 143, 53, 0);
  }
}

@keyframes typingDots {

  0%,
  20% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-5px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
}

@keyframes messageAppear {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   SADE VE ŞIK HEADER NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 12px 0;
  background: rgba(4, 25, 43, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  padding: 8px 0;
  background: rgba(4, 25, 43, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-container {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  white-space: nowrap;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--accent-orange);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--white);
}

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

.nav-link.nav-highlight {
  color: var(--accent-orange);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  white-space: nowrap;
}

.header-phone-btn i {
  color: var(--accent-orange);
}

.header-phone-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #ff6b00);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255, 143, 53, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff7a18, #e86600);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 143, 53, 0.55);
  color: var(--white);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-robot {
  background: linear-gradient(135deg, #ff8f35, #ff6b00);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255, 143, 53, 0.45);
  animation: robotPulse 2.5s infinite;
}

.btn-robot:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 143, 53, 0.65);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
}

.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 70px;
  background-color: var(--primary-deep);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 25, 43, 0.95) 0%, rgba(7, 43, 74, 0.84) 50%, rgba(0, 84, 143, 0.58) 100%);
  z-index: 2;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 3;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-left {
  color: var(--white);
}

.hero-burs-banner {
  display: inline-flex;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  margin-bottom: 24px;
  animation: floatY 4s ease-in-out infinite;
  position: relative;
}

.hero-burs-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: badgeShine 3s infinite;
}

.burs-item-orange {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff8f35, #ff6b00);
  padding: 10px 20px;
  color: var(--white);
}

.burs-rate-big {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 0.9;
  text-shadow: 0 2px 8px rgba(120, 50, 0, 0.4);
}

.burs-label-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #2e1200;
}

.burs-plus {
  font-weight: 300;
  font-size: 1.8rem;
  color: #2e1200;
  line-height: 1;
}

.burs-extra-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.burs-extra-circle .rate {
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
}

.burs-extra-circle .sub {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.burs-item-navy {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(4, 25, 43, 0.88);
  padding: 10px 20px;
  color: var(--white);
}

.burs-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.burs-sabit-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.hero-title .highlight-orange {
  color: var(--accent-orange);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 25px rgba(255, 143, 53, 0.35);
}

.hero-description {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.trust-badge-item:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.trust-badge-item i {
  color: var(--accent-orange);
  font-size: 1.1rem;
}

/* ==========================================================================
   HERO SAĞ TARAF - DÖNÜŞÜM FORMU
   ========================================================================== */
.hero-form-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
  transition: var(--transition);
}

.hero-form-card:hover {
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.55), 0 0 25px rgba(255, 143, 53, 0.15);
}

.form-header {
  margin-bottom: 20px;
}

.form-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-orange-light);
  color: var(--accent-orange-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
}

.form-header p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-label .req {
  color: var(--accent-orange);
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: #fdfdfd;
  color: var(--text-main);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 84, 143, 0.12);
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fdfdfd;
  overflow: hidden;
  transition: var(--transition);
}

.phone-input-wrap:focus-within {
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 84, 143, 0.12);
}

.phone-prefix {
  padding: 11px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: #f1f5f9;
  border-right: 1.5px solid var(--border-light);
  user-select: none;
}

.phone-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 12px;
  font-size: 0.88rem;
  outline: none;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
}

.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary-blue);
  cursor: pointer;
}

.form-check label {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.4;
  cursor: pointer;
}

.form-check a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: underline;
}

.btn-form-submit {
  width: 100%;
  padding: 14px;
  font-size: 0.96rem;
  font-weight: 800;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-section {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 36px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 6px;
}

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

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

.stat-indicator {
  width: 28px;
  height: 3px;
  background: var(--accent-orange);
  margin: 8px auto 0 auto;
  border-radius: 2px;
  transition: var(--transition);
}

.stat-item:hover .stat-indicator {
  width: 45px;
  background: var(--primary-blue);
}

/* ==========================================================================
   BÖLÜMLER & KONTENJAN REHBERİ
   ========================================================================== */
.section-padding {
  padding: 85px 0;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px auto;
}

.section-tag {
  display: inline-block;
  background: var(--primary-subtle);
  color: var(--primary-blue);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.programs-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

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

.filter-pill {
  background: #f1f5f9;
  color: var(--text-muted);
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 84, 143, 0.25);
  transform: translateY(-2px);
}

.search-box-wrap {
  position: relative;
  min-width: 260px;
}

.search-box-wrap input {
  width: 100%;
  padding: 9px 14px 9px 38px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  font-size: 0.85rem;
  outline: none;
  background: #f8fafc;
  transition: var(--transition);
}

.search-box-wrap input:focus {
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 84, 143, 0.1);
}

.search-box-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(0, 84, 143, 0.18);
  border-color: var(--accent-orange);
}

.program-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.program-category-badge {
  font-size: 0.60rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--primary-subtle);
  color: var(--primary-blue);
}

.program-duration {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-orange-dark);
  background: var(--accent-orange-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.program-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.program-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.5em;
}

.program-details-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px dashed var(--border-light);
  border-bottom: 1px dashed var(--border-light);
  margin-bottom: 18px;
}

.program-detail-item {
  font-size: 0.78rem;
  color: var(--text-main);
}

.program-detail-item strong {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.program-dgs-target {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.4;
  height: 2.8em;
}

.program-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ==========================================================================
   İNTERAKTİF SOHBET TABANLI AI TERCİH ROBOTU (CHAT ASSISTANT UI)
   ========================================================================== */
.robot-section {
  background: linear-gradient(135deg, #04192b 0%, #072b4a 50%, #00548f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.robot-section::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 53, 0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.robot-section .adiguzel-page-wrapper {
  margin: 0 auto;
}

/* ==========================================================================
   KAMPÜS ZİYARETİ VE RANDEVU MODÜLÜ (HAFTA SONU KAPALI)
   ========================================================================== */
.appointment-section {
  background: var(--canvas-bg);
}

.appointment-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  max-width: 960px;
  margin: 0 auto;
}

.weekend-notice-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: #9a3412;
  font-weight: 600;
}

.weekend-notice-banner i {
  font-size: 1.2rem;
  color: var(--accent-orange);
}

.date-scroll-wrap {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 2px;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.date-scroll-wrap::-webkit-scrollbar {
  height: 4px;
}

.date-scroll-wrap::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

.date-pill {
  flex: 0 0 auto;
  min-width: 86px;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: #f8fafc;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.date-pill:hover:not(.disabled),
.date-pill.selected {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.date-pill.disabled {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.65;
}

.date-pill.disabled .closed-badge {
  font-size: 0.6rem;
  font-weight: 800;
  color: #ef4444;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.date-pill .day-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.date-pill .day-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.time-slot-btn {
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background: #f8fafc;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.time-slot-btn:hover,
.time-slot-btn.selected {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   UYGULAMALI EĞİTİM & ATÖLYELER (LABS)
   ========================================================================== */
.labs-section {
  background: var(--white);
}

.labs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.lab-card {
  background: var(--canvas-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 24px;
  transition: var(--transition);
}

.lab-card:hover {
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-orange);
}

.lab-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.lab-card:hover .lab-icon-box {
  background: var(--accent-orange);
  color: var(--white);
  transform: rotate(5deg) scale(1.08);
}

.lab-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.lab-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   DETAYLI VE KATEGORİLİ SSS (AKORDİYON)
   ========================================================================== */
.faq-section {
  background: #f1f5f9;
}

.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.faq-tab-btn {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  color: var(--text-main);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.faq-tab-btn:hover,
.faq-tab-btn.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 84, 143, 0.25);
  transform: translateY(-2px);
}

.faq-accordion-group {
  display: none;
  max-width: 880px;
  margin: 0 auto;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-group.active {
  display: flex;
  animation: messageAppear 0.35s ease-out;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
}

.faq-question i {
  color: var(--primary-blue);
  transition: transform 0.28s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background: #fdfdfd;
}

.faq-answer-inner {
  padding: 0 24px 22px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-answer-inner strong {
  color: var(--primary-dark);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 65px 0 26px 0;
  border-top: 4px solid var(--accent-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

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

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
}

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

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-links a:hover {
  background: var(--accent-orange);
  transform: translateY(-3px) scale(1.08);
}

.footer-column h5 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-column h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2.5px;
  background: var(--accent-orange);
}

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

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   SABİT CANLI WHATSAPP & ROBOT WIDGET
   ========================================================================== */
.floating-support-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.floating-btn.whatsapp {
  background: #25d366;
  color: var(--white);
}

.floating-btn.whatsapp:hover {
  transform: scale(1.06) translateY(-2px);
  background: #20ba59;
}

.floating-btn.robot-float {
  background: linear-gradient(135deg, #ff8f35, #ff6b00);
  color: var(--white);
  animation: robotPulse 3s infinite;
}

.floating-btn.robot-float:hover {
  transform: scale(1.06) translateY(-2px);
}

/* ==========================================================================
   MODAL PENCERELER
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 25, 43, 0.88);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-content-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 820px;
  width: 100%;
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: messageAppear 0.3s ease-out;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.1rem;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--accent-orange);
  color: var(--white);
  transform: rotate(90deg);
}

/* TOAST NOTIFICATION */
.toast-notice {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1100;
  background: var(--white);
  border-left: 5px solid var(--accent-orange);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: none;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================================================
   GELİŞMİŞ MOBİL & TABLET UYUMLULUĞU (SADE & TEMİZ)
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
  }

  .nav-link {
    font-size: 0.86rem;
  }
}

@media (max-width: 992px) {
  .header {
    padding: 10px 0;
  }

  .header-phone-btn .phone-text {
    display: none;
  }

  .header-phone-btn {
    padding: 8px 10px;
  }

  .nav-container {
    position: static;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(4, 25, 43, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 3px solid var(--accent-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-links.mobile-active {
    display: flex;
    animation: messageAppear 0.25s ease-out;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-section {
    padding-top: 105px;
    padding-bottom: 50px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .robot-container {
    grid-template-columns: 1fr;
  }

  .chat-window-card {
    height: 520px;
  }

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

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

@media (max-width: 640px) {
  .brand-logo-img {
    height: 40px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-burs-banner {
    flex-direction: column;
    width: 100%;
  }

  .burs-item-orange,
  .burs-item-navy {
    padding: 8px 16px;
  }

  .burs-rate-big {
    font-size: 2rem;
  }

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

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .hero-form-card {
    padding: 22px 18px;
  }

  .appointment-card {
    padding: 22px 18px;
  }

  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .labs-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .floating-support-bar {
    bottom: 16px;
    right: 16px;
  }

  .floating-btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}