/* ==========================================================================
   AC PRIME - GLOBAL PREMİUM STİLLER (TEMEL AYARLAR)
   ========================================================================== */
:root {
    --bordo: #820415;     
    --lac: #213566;       
    --krem: #FAF7F2;      /* Tam kıvamında premium kırık beyaz arka plan */
    --yazi-koyu: #4b4949; 
    --yazi-mutlu: #6B6B6B;
    --border-soft: #E5E0D8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

body {
    background-color: var(--krem);
    color: var(--yazi-koyu);
    line-height: 1.6;
    padding-top: 108px;
}

h1, h2, h3, .serif-font {
    font-family: 'Playfair Display', Georgia, serif; 
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ==========================================================================
   ÜST BAR (HEADER) & LOGO (BEYAZ/KREM VE BÜYÜTÜLMÜŞ VERSİYON)
   ========================================================================== */

header {
    background-color: #ffffff; 
    color: var(--lac);
    padding: 20px 40px; 
    display: flex;
    align-items: center;
    gap: 25px;
    /* box-shadow: 0 4px 30px rgba(130, 4, 21, 0.06), 0 10px 40px rgba(33, 53, 102, 0.08); */
    box-shadow: 0 4px 30px #d3ebf4, 0 10px 40px rgba(33, 53, 102, 0.08);
    position: fixed;   /* Sayfayı kaydırsan da burayı ekrana çiviler */
    top: 0;            /* En üste yapıştırır */
    left: 0;           /* Soldan sıfırlar */
    width: 100%;       /* Ekranı komple kaplamasını sağlar */
    z-index: 1000;

}

header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em; /* Üst bar büyüdüğü için yazıyı da biraz büyüttük */
    font-weight: 800;
    color: var(--lac); /* Yazı rengi lacivert oldu */
}

.menu-ac-btn {
    background-color: transparent;
    color: var(--lac); /* Menü butonu lacivert oldu */
    border: none;
    padding: 5px 10px;
    font-size: 32px; /* Buton ikonunu biraz büyüttük */
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}

.menu-ac-btn:hover {
    color: var(--bordo); /* Üzerine gelince klas bir bordo olur */
    transform: scale(1.1); 
}

.logo-alani {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 65px; /* Logoyu da üst bara uyumlu olarak büyüttük (eski: 50px) */
    width: auto;
}
/* ==========================================================================
   YANDAN AÇILIR MENÜ (SIDEBAR)
   ========================================================================== */
/* ==========================================================================
   YAN MENÜ (SIDEBAR) - GENİŞLETİLMİŞ GÜVENLİK MESAFELİ VERSİON
   ========================================================================== */
.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 999; /* Üst barın (1000) altında kalması için sabit */
    top: 0;
    left: -250px;
    background-color: var(--bordo);
    overflow-x: hidden;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* 🚀 SFA LİNKLERİNİ İYİCE AŞAĞI İTTİK (Eski: 120px) 🚀 */
    padding-top: 190px; 
    box-shadow: 5px 0 25px rgba(0,0,0,0.25);
}

.sidebar a {
    padding: 16px 28px;
    text-decoration: none;
    font-size: 17px;
    color: #ffffff;
    display: block;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar a:hover {
    background-color: var(--lac);
    padding-left: 35px;
}

.sidebar .kapat-btn {
    position: absolute;
    
    /* 🚀 ÇARPIYI ÜST BARIN MAVİSİNDEN/GÖLGESİNDEN TAMAMEN KURTARDIK (Eski: 115px) 🚀 */
    top: 135px; 
    right: 25px;       
    font-size: 38px;   
    line-height: 1;
    border-bottom: none !important;
    padding: 0 !important; 
    background: transparent !important; 
    width: auto !important;
    display: inline-block;
    transition: transform 0.2s ease, color 0.2s ease !important;
}

.sidebar .kapat-btn:hover {
    background-color: transparent !important; 
    padding-left: 0 !important;               
    color: #d4af37 !important; /* Gold aşkına devam! */
    transform: scale(1.1);                    
}
/* ==========================================================================
   YENİ ELİT SLIDER ALANI (KALIN ÇERÇEVELER ATILDI)
   ========================================================================== */
.slider-alani {
    position: relative;
    margin: 40px auto;
    max-width: 1400px;
    background-color: var(--lac);
    box-shadow: 0 20px 50px rgba(33, 53, 102, 0.08);
    border-radius: 24px; /* Köşeler yumuşatıldı */
    overflow: hidden;
    border: none; /* Çirkin kalın çizgi yok edildi */
}

.slider-icerik {
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Fotoğrafın üstüne yazının okunması için şık bir karanlık maske */
/* ==========================================================================
   SLIDER (YAZILAR ALTA VE SOLA YASLI JİLET GİBİ TASARIM)
   ========================================================================== */

.slider-icerik {
    width: 100%;
    height: 550px;
    display: flex;
    align-items: flex-end; /* YAZILARI EN ALTA YASLAR */
    justify-content: flex-start; /* YAZILARI SOLA YASLAR */
    position: relative;
}

/* Fotoğrafın tam alt kısmına sinematik siyah gölge geçişi ekliyoruz */
.slider-icerik::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-yazi {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: left; /* Yazıları merkeze değil sola hizalar */
    padding: 60px 80px; /* Alttan ve soldan o elit ferah boşluğu bırakır */
    width: 100%;
}

.slider-yazi h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

/* (Bundan sonraki .ok-btn kısmı sende aynen kalabilir) */

/* Modern Ok Butonları (Buzlu Cam Efektli Elit Daireler) */
.ok-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sol-ok { left: 24px; }
.sag-ok { right: 24px; }

.ok-btn:hover {
    background-color: var(--bordo);
    border-color: var(--bordo);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .slider-alani { margin: 20px; }
    .slider-icerik { height: 380px; }
    .ok-btn { width: 40px; height: 40px; font-size: 14px; }
    
}

/* ==========================================================================
   VURGU ELEMENTLERİ & BAŞARILARIMIZ ALANI
   ========================================================================== */
.bordo-yazi { color: var(--bordo); }

.alt-cizgili {
    position: relative;
    display: inline-block;
}

.alt-cizgili::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background-color: var(--bordo); 
    border-radius: 2px;
}

.basarilarimiz-alani {
    text-align: center;
    padding: 80px 24px 40px;
    max-width: 750px;
    margin: 0 auto;
}

.basari-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--bordo);
    margin-bottom: 16px;
}

.basari-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--bordo);
}

.basarilarimiz-alani h2 {
    color: var(--lac);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.basarilarimiz-alani p {
    color: var(--yazi-mutlu);
    font-size: 1.1rem;
}


/* ==========================================================================
   KAYIT OL BUTON ALANI (PREMIUM GÜNCELLEME)
   ========================================================================== */
.kayit-butonu-alani {
    text-align: center;
    padding: 20px 24px 80px;
}

.kayit-btn {
    display: inline-block;
    background-color: var(--bordo);
    color: #ffffff;
    text-decoration: none;
    padding: 30px 130px;
    font-size: 1.1rem;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(130, 4, 21, 0.2);
}

.kayit-btn:hover {
    background-color: var(--lac);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(33, 53, 102, 0.25);
}

/* ==========================================================================
   MUCİZEVİ POP-UP AÇILIŞ ANİMASYONU (FADE-IN EFFECT)
   ========================================================================== */
@keyframes sayfaAcilis {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sitedeki tüm ana sarmalayıcılar açılırken yağ gibi süzülecek */
.evt-wrapper, .con-wrapper, .reg-wrapper, .kurumsal-wrapper, .main-content {
  animation: sayfaAcilis 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/*OZLU SOZ ALANI */
.ozlu-soz-alani {
    border-radius: 18px;
    overflow: hidden;
    background-attachment: scroll !important;
    box-shadow:
        0 -10px 25px rgba(0, 72, 255, 0.08),
        0 18px 45px rgba(97, 0, 0, 0.2),
        0 6px 18px rgba(33, 53, 102, 0.08);
}
/* ==========================================================================
   KURUMSAL SAYFA ALANLARI
   ========================================================================== */
.kurumsal-sayfa {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.sayfa-basligi h2 {
    font-size: 40px;
    color: var(--lac);
    margin-bottom: 10px;
}

.misyon-vizyon-kapsayici {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.kurumsal-kart {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 6px solid var(--bordo);
    transition: transform 0.3s;
}

.kurumsal-kart:hover {
    transform: translateY(-5px);
}

.kurumsal-kart h3 {
    color: var(--lac);
    font-size: 26px;
    margin-bottom: 15px;
}

.kurumsal-kart p {
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.kurucu-mesaj-alani {
    display: flex;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    margin-top: 50px;
}

.kurucu-profil {
    background-color: var(--lac);
    color: white;
    padding: 40px;
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kurucu-foto-placeholder {
    width: 140px;
    height: 140px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 20px;
}

.kurucu-profil h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.kurucu-profil .unvan {
    font-size: 13px;
    color: #d4af37;
    font-weight: bold;
}

.kurucu-metni {
    padding: 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kurucu-metni h3 {
    color: var(--lac);
    font-size: 32px;
    margin-bottom: 20px;
}

.kurucu-metni p {
    font-style: italic;
    line-height: 1.8;
    color: #444;
    font-size: 17px;
}

/* --- RESPONSIVE MOD --- */
@media (max-width: 768px) {
    .misyon-vizyon-kapsayici, .kurucu-mesaj-alani {
        flex-direction: column;
    }
    .kurucu-profil {
        width: 100%;
        padding: 30px;
    }
    .kurucu-metni {
        padding: 30px;
    }
}
/* ==========================================================================
   EĞİTİM PAKETLERİ SAYFASI ÖZEL STİLLERİ
   Modüler yapı korundu, diğer sayfalarla çakışmaz.
   ========================================================================== */

.ep-wrapper {
  --ep-bordeaux: #820415;
  --ep-navy: #213566;
  --ep-navy-light: #32467a;
  --ep-cream: #FAF7F2;
  --ep-gold: #d4af37;
  --ep-gold-light: #f4ebd0;
  --ep-text: #1E1E1E;
  --ep-text-muted: #6B6B6B;
  --ep-white: #FFFFFF;
  --ep-border: #E5E0D8;
  --ep-shadow-hover: 0 16px 48px rgba(33, 53, 102, 0.14);
  --ep-radius: 16px;

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--ep-cream);
  color: var(--ep-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.ep-wrapper h1, .ep-wrapper h2, .ep-wrapper h3, .ep-wrapper h4 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Header Banner (Sadece sayfaya özel afiş kısmı) */
.ep-header {
  background: linear-gradient(135deg, var(--ep-navy) 0%, var(--ep-bordeaux) 100%);
  color: var(--ep-white);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ep-header-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.ep-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ep-gold);
  margin-bottom: 16px;
}

.ep-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ep-gold);
}

.ep-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.ep-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
}

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

/* Packages Section */
.ep-packages-section {
  padding: 80px 0;
}

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

.ep-section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ep-navy);
  margin-bottom: 12px;
}

.ep-section-header p {
  color: var(--ep-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* YENİ: Alt Alta Dizilim (Stack) */
.ep-packages-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px; /* Çok geniş ekranda çirkin uzamasın diye limitlendi */
  margin: 0 auto;
}

.ep-package-card {
  background: var(--ep-white);
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Ekranda genişse ikon ve yazıyı yan yana alır, daha şık durur */
@media (min-width: 600px) {
  .ep-package-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
}

.ep-package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ep-shadow-hover);
  border-color: transparent;
}



.ep-featured-badge {
  position: absolute;
  top: 0;
  right: 24px;
  background: linear-gradient(135deg, var(--ep-gold) 0%, var(--ep-gold-light) 100%);
  color: var(--ep-navy);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
}

.ep-package-content {
  flex-grow: 1;
}

.ep-package-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ep-navy);
  margin-bottom: 8px;
}

.ep-package-desc {
  font-size: 1rem;
  color: var(--ep-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  border-bottom: 1px solid var(--ep-border);
  padding-bottom: 20px;
}

/* Features */
.ep-features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.ep-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.ep-check-icon {
  color: var(--ep-bordeaux);
  font-weight: bold;
}

.ep-feature-disabled {
  color: var(--ep-text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

/* Comparison Section */
.ep-comparison-section {
  padding: 40px 0 100px;
}

.ep-comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--ep-radius);
  border: 1px solid var(--ep-border);
  background: var(--ep-white);
}

.ep-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.ep-comparison-table th,
.ep-comparison-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--ep-border);
}

.ep-comparison-table th {
  background: linear-gradient(135deg, var(--ep-navy) 0%, var(--ep-navy-light) 100%);
  color: var(--ep-white);
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}

.ep-comparison-table td:first-child {
  font-weight: 600;
  color: var(--ep-navy);
}

.ep-comparison-table tr:hover td {
  background: var(--ep-cream);
}

.ep-comparison-table tr:last-child td {
  border-bottom: none;
}

.ep-check {
  color: var(--ep-bordeaux);
  font-weight: 700;
}

.ep-cross {
  color: var(--ep-text-muted);
  opacity: 0.5;
}

/* CTA Section */
.ep-cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--ep-navy) 0%, var(--ep-bordeaux) 100%);
  text-align: center;
  color: var(--ep-white);
}

.ep-cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.ep-cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}

.ep-cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.ep-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
}

.ep-btn-gold {
  background: linear-gradient(135deg, var(--ep-gold) 0%, var(--ep-gold-light) 100%);
  color: var(--ep-navy);
}

.ep-btn-gold:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}
/* ==========================================================================
   AC PRIME - ETKİNLİKLER SAYFASI (SLIDER) KOMPLE TASARIMI
   ========================================================================== */

.evt-wrapper {
  --evt-bordeaux: #820415;
  --evt-navy: #213566;
  --evt-cream: #FAF7F2;
  --evt-gold: #d4af37;
  --evt-text: #1E1E1E;
  --evt-text-muted: #6B6B6B;
  --evt-white: #FFFFFF;
  --evt-border: #E5E0D8;
  
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--evt-cream);
  color: var(--evt-text);
  line-height: 1.6;
  padding-bottom: 100px;
  min-height: 100vh;
}

.evt-wrapper h1, .evt-wrapper h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Temiz ve Ortalanmış Başlık Alanı (Kurumsal Yapı) */
.evt-page-intro {
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.evt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--evt-bordeaux);
  margin-bottom: 16px;
}

.evt-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--evt-bordeaux);
}

.evt-page-intro h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--evt-navy);
  margin-bottom: 16px;
}

.evt-page-intro p {
  font-size: 1.1rem;
  color: var(--evt-text-muted);
}

/* Slider Alanı Konteyneri */
.evt-gallery-section {
  padding: 0 24px;
}

.evt-container {
  max-width: 900px;
  margin: 0 auto;
}

.evt-slider-box {
  background: var(--evt-white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(33, 53, 102, 0.08);
  overflow: hidden;
  border: 1px solid var(--evt-border);
}

/* Görsel Kutusu */
.evt-image-area {
  position: relative;
  width: 100%;
  height: 500px;
  background: #000;
}

.evt-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

/* Sağ-Sol Ok Butonları */
.evt-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(33, 53, 102, 0.7);
  color: var(--evt-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.evt-arrow:hover {
  background: var(--evt-bordeaux);
  transform: translateY(-50%) scale(1.1);
}

.evt-arrow-left { left: 20px; }
.evt-arrow-right { right: 20px; }

/* Metin Açıklama Alanı */
.evt-text-area {
  padding: 40px;
  text-align: center;
  background: var(--evt-white);
}

.evt-date-badge {
  display: inline-block;
  background: #E8EDF5;
  color: var(--evt-navy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.evt-text-area h3 {
  font-size: 2rem;
  color: var(--evt-navy);
  margin-bottom: 16px;
}

.evt-text-area p {
  color: var(--evt-text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .evt-page-intro { padding: 50px 20px 30px; }
  .evt-image-area { height: 320px; }
  .evt-text-area { padding: 30px 20px; }
  .evt-text-area h3 { font-size: 1.5rem; }
  .evt-arrow { width: 40px; height: 40px; font-size: 16px; }
}


/* ==========================================================================
   AC PRIME - İLETİŞİM SAYFASI KOMPLE TASARIMI
   ========================================================================== */

.con-wrapper {
  --con-bordeaux: #820415;
  --con-navy: #213566;
  --con-cream: #FAF7F2;
  --con-gold: #d4af37;
  --con-text: #1E1E1E;
  --con-text-muted: #6B6B6B;
  --con-white: #FFFFFF;
  --con-border: #E5E0D8;
  --con-whatsapp-green: #25D366;
  --con-whatsapp-hover: #20ba5a;
  
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--con-cream);
  color: var(--con-text);
  line-height: 1.6;
  padding-bottom: 100px;
  min-height: 100vh;
}

.con-wrapper h1, .con-wrapper h2 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Başlık Alanı */
.con-page-intro {
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.con-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--con-bordeaux);
  margin-bottom: 16px;
}

.con-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--con-bordeaux);
}

.con-page-intro h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--con-navy);
  margin-bottom: 16px;
}

.con-page-intro p {
  font-size: 1.1rem;
  color: var(--con-text-muted);
}

/* Konteyner ve Izgara Yapısı */
.con-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.con-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* Harita biraz daha geniş dursun */
  gap: 32px;
  margin-bottom: 48px;
}

/* Harita Kutusu */
.con-map-box {
  background: var(--con-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--con-border);
  height: 450px;
  box-shadow: 0 10px 30px rgba(33, 53, 102, 0.05);
}

.con-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Görsel Kutuları */
.con-images-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 450px;
}

.con-img-card {
  flex: 1;
  background: var(--con-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--con-border);
  position: relative;
}

.con-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.con-img-card:hover img {
  transform: scale(1.04);
}

.con-img-card span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(33, 53, 102, 0.85);
  color: var(--con-white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* İletişim Kanalları Kartı */
.con-channels-card {
  background: var(--con-white);
  border-radius: 24px;
  border: 1px solid var(--con-border);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(33, 53, 102, 0.06);
}

.con-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.con-whatsapp-zone h2 {
  font-size: 2rem;
  color: var(--con-navy);
  margin-bottom: 24px;
}

/* DEV WHATSAPP BUTONU */
.con-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--con-whatsapp-green);
  color: var(--con-white);
  text-decoration: none;
  font-size: clamp(1.4rem, 3vw, 2rem); /* Ekran büyüdükçe devleşen font */
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.con-whatsapp-btn:hover {
  background: var(--con-whatsapp-hover);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.4);
}

.con-phone-sub {
  font-size: 0.9rem;
  color: var(--con-text-muted);
  margin-top: 12px;
  font-weight: 500;
}

.con-divider {
  border: none;
  border-top: 1px solid var(--con-border);
  margin: 40px 0;
}

/* E-POSTA ALANI */
.con-email-zone {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.con-email-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--con-text-muted);
  font-weight: 600;
}

.con-email-link {
  font-size: 1.5rem;
  color: var(--con-bordeaux);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.con-email-link:hover {
  color: var(--con-navy);
  text-decoration: underline;
}

/* Mobil Ekran Ayarları */
@media (max-width: 768px) {
  .con-grid {
    grid-template-columns: 1fr; /* Alt alta dizilim */
  }
  .con-map-box, .con-images-box {
    height: 350px;
  }
  .con-channels-card {
    padding: 40px 20px;
  }
  .con-whatsapp-btn {
    padding: 16px 28px;
  }
}

/* ==========================================================================
   AC PRIME - ÖN KAYIT FORMU KOMPLE TASARIMI
   ========================================================================== */

.reg-wrapper {
  --reg-bordeaux: #820415;
  --reg-navy: #213566;
  --reg-cream: #FAF7F2;
  --reg-text: #1E1E1E;
  --reg-text-muted: #6B6B6B;
  --reg-white: #FFFFFF;
  --reg-border: #E5E0D8;
  --reg-radius: 16px;
  
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--reg-cream);
  color: var(--reg-text);
  line-height: 1.6;
  padding-bottom: 100px;
  min-height: 100vh;
  display: block; /* Görünürlüğü garanti altına alalım */
}

.reg-wrapper h1 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Başlık Alanı */
.reg-page-intro {
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 750px;
  margin: 0 auto;
}

.reg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--reg-bordeaux);
  margin-bottom: 16px;
}

.reg-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--reg-bordeaux);
}

.reg-page-intro h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--reg-navy);
  margin-bottom: 16px;
}

.reg-page-intro p {
  font-size: 1.1rem;
  color: var(--reg-text-muted);
}

/* Konteyner ve Kart Tasarımı */
.reg-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.reg-form-card {
  background: var(--reg-white);
  border-radius: var(--reg-radius);
  border: 1px solid var(--reg-border);
  padding: 48px;
  box-shadow: 0 20px 40px rgba(33, 53, 102, 0.05);
}

/* Form Elemanları */
.reg-form-group-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--reg-navy);
  margin-bottom: 24px;
}

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

.reg-input-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.reg-input-box label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--reg-text);
  text-align: left;
}

.reg-input-box input,
.reg-input-box select,
.reg-input-box textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid var(--reg-border);
  border-radius: 8px;
  background-color: #FAFBFD;
  color: var(--reg-text);
  outline: none;
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.reg-input-box input:focus,
.reg-input-box select:focus,
.reg-input-box textarea:focus {
  border-color: var(--reg-bordeaux);
  background-color: var(--reg-white);
  box-shadow: 0 0 0 3px rgba(130, 4, 21, 0.1);
}

.reg-form-divider {
  border: none;
  border-top: 1px solid var(--reg-border);
  margin: 32px 0;
}

/* Checkbox Alanı */
.reg-checkbox-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0 32px;
  text-align: left;
}

.reg-checkbox-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--reg-bordeaux);
  margin-top: 3px;
  cursor: pointer;
  flex-shrink: 0;
}

.reg-checkbox-box label {
  font-size: 0.88rem;
  color: var(--reg-text-muted);
  cursor: pointer;
  user-select: none;
}


/* Mobil Ekran Düzenlemeleri */
@media (max-width: 600px) {
  .reg-form-card {
    padding: 32px 20px;
  }
  .reg-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   SAYFA AÇILIŞ ANIMASYONU (SOFT FADE-IN POP-UP EFFECT)
   ========================================================================== */
@keyframes sayfaAcilis {
  0% {
    opacity: 0;
    transform: translateY(40px); /* Sayfa 20px aşağıdan başlar */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Yerine oturur */
  }
}

/* Her sayfanın ana kapsayıcısına bu animasyonu giydiriyoruz */
.evt-wrapper, .con-wrapper, .reg-wrapper, .kurumsal-wrapper, main, .main-content {
  animation: sayfaAcilis 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
/* ==========================================================================
   YÖNETİCİ GİRİŞ İKONU (HEADER)
   ========================================================================== */
.admin-login-icon {
    background: transparent;
    border: none;
    color: var(--lac); /* İkon lacivert oldu (Eskiden beyazdı görünmezdi) */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-size: 22px; /* İkonu biraz belirginleştirdik */
    transition: all 0.3s ease;
}

.admin-login-icon:hover {
    color: var(--bordo);
    transform: scale(1.1);
}
/* --- DUYURULAR VİTRİN TASARIMI --- */
.duyurular-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 40px 0;
}

.duyuru-kart {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border-left: 5px solid var(--bordo);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.duyuru-kart:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.duyuru-ust-bilgi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.duyuru-tarih {
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
}

.duyuru-etiket {
  background: rgba(130, 4, 21, 0.08);
  color: var(--bordo);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.duyuru-baslik {
  font-family: 'Playfair Display', serif;
  color: var(--lac);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.duyuru-ozet {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ==========================================================================
   🏆 BAŞARILAR ALANI GİRİŞ ANİMASYONU
   ========================================================================== */
.basari-kart-animasyon {
    opacity: 0;
    transform: translateY(30px); /* Kartları hafif aşağıda başlatıyoruz */
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* JavaScript bu class'ı eklediğinde kartlar pürüzsüzce yukarı süzülecek */
.basari-kart-animasyon.goster {
    opacity: 1;
    transform: translateY(0);
}




/* =====================================================
   MOBİL DÜZENLEME — DESKTOP'A DOKUNMAZ
   ===================================================== */

@media (max-width: 768px) {

    body {
        padding-top: 76px !important;
    }

    header {
        padding: 10px 12px !important;
        gap: 8px !important;
        min-height: 76px;
    }

    .menu-ac-btn {
        font-size: 28px !important;
        padding: 4px 6px !important;
        flex-shrink: 0;
    }

    .logo-img {
        height: 44px !important;
        max-width: 58px;
        object-fit: contain;
        flex-shrink: 0;
    }

    header h3 {
        font-size: 0.95rem !important;
        line-height: 1.1 !important;
        max-width: 165px;
        white-space: normal;
        letter-spacing: -0.02em;
    }

    header > div:last-child {
        gap: 8px !important;
        margin-left: auto !important;
        flex-shrink: 0;
    }

    .admin-login-icon {
        padding: 3px !important;
    }

    .admin-login-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .sidebar {
        padding-top: 105px !important;
    }

    .sidebar .kapat-btn {
        top: 82px !important;
        right: 18px !important;
        font-size: 34px !important;
    }

    /* Ana sayfa özlü söz görseli */
    .ozlu-soz-alani {
      width: calc(100% - 24px) !important;
      height: 260px !important;

      margin: 24px auto 0 !important;
      border-radius: 16px !important;
      overflow: hidden !important;

      background-image: url('mobilozlu.png') !important;
      background-size: cover !important;
      background-position: center center !important;
      background-repeat: no-repeat !important;
      background-attachment: scroll !important;
      background-color: #fff !important;

      box-shadow:
          0 10px 28px rgba(33, 53, 102, 0.16),
          0 3px 10px rgba(130, 4, 21, 0.10) !important;
  }

    .kayit-butonu-alani {
        padding: 18px 16px 55px !important;
        gap: 12px !important;
    }

    .kayit-btn {
        width: min(100%, 340px);
        padding: 18px 20px !important;
        font-size: 1rem !important;
    }
    /* Başarılar mobilde daha kompakt */
.basarilarimiz-alani {
    padding: 32px 16px 22px !important;
}

.basarilarimiz-alani h2 {
    font-size: 1.7rem !important;
    margin-bottom: 12px !important;
}

#basarilar-kutusu {
    gap: 10px !important;
    margin-top: 18px !important;
}

.basari-kart-animasyon {
    min-width: 145px !important;
    padding: 13px 14px !important;
    border-radius: 10px !important;
}

.basari-kart-animasyon h3 {
    font-size: 21px !important;
    margin-bottom: 5px !important;
}

.basari-kart-animasyon p {
    font-size: 12.5px !important;
    line-height: 1.25 !important;
}
}