*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
body{background:#f5f8ff;color:#333;line-height:1.6;scroll-behavior:smooth;overflow-x:hidden;position:relative;}

body, html {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
}



/* MASAÜSTÜ MAVİ ŞERİT (Bilgisayarda görünür, mobilde gizlenir) */
.desktop-blue-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #0d47a1;
    padding: 12px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 10;
}

.desktop-blue-nav button {
    background: none;
    border: none;
    color: white;
    font-weight: 600;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
}

.desktop-blue-nav button:hover { background: rgba(255,255,255,0.15); border-radius: 5px; }

/* HAMBURGER BUTONU (Bilgisayarda gizli) */
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

/* --- YENİ MOBİL VE MASAÜSTÜ NAVIGASYON SİSTEMİ --- */

/* 1. Masaüstü Menü Stili (Varsayılan olarak gizli) */
.desktop-menu {
    display: none;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.desktop-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    cursor: pointer;
}

.desktop-menu li a:hover {
    color: #0d47a1;
}

/* 2. Mobil Panel Ayarları (Aşağı iten yapı) */
.proNav {
    display: none; /* Kapalıyken gizle */
    width: 100%;
    background: #ffffff;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.proNav.active {
    display: block; /* Açıldığında görünür olur ve altındaki içeriği iter */
}

.proNav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.proNav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

/* 3. Genel Navbar Düzeni (Header Top Bar) */
.header-top-bar {
    background-color: #ffffff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: relative; /* Fixed yerine relative yaparak itme özelliğini aktif ediyoruz */
    z-index: 10000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    flex-wrap: wrap; /* Menü açıldığında alt satıra geçmesi için */
}

/* 4. Ekran Boyutuna Göre Görünürlük Ayarları */

/* MASAÜSTÜ (992px ve üzeri) */
@media (min-width: 992px) {
    .menu-toggle { display: none !important; } /* Hamburgeri gizle */
    .desktop-menu { display: flex !important; } /* Masaüstü linkleri göster */
    .proNav { display: none !important; } /* Mobil menüyü tamamen devre dışı bırak */
    .desktop-blue-nav { display: none !important; } /* Alt mavi şeridi gizle */
}

/* MOBİL VE TABLET (991px ve altı) */
@media (max-width: 991px) {
    .desktop-menu { display: none !important; } /* Masaüstü linkleri gizle */
    .menu-toggle { display: flex !important; } /* Hamburgeri göster */
    
    header { 
        height: auto; 
        min-height: 350px; 
        margin-top: 90px !important; 
        position: relative;
        width: 100%;
        overflow: hidden !important; /* Taşmaları kesin olarak engeller */
        background: #000; /* Görsel yüklenene kadar arka plan siyah olsun */
    }
    
    header::before {
        content: "";
        position: absolute;
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
        /* Görselin tam ortalanması ve alanı kaplaması için */
        background: url('https://images.unsplash.com/photo-1561104445-5d1f1e1f8e0f?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080') no-repeat center center / cover !important;
        filter: brightness(0.45);
        z-index: 0;
        /* Animasyonu iptal ediyoruz */
        animation: none !important; 
        transform: none !important;
    }
    
    .container {
        width: 95%;
        margin: 20px auto;
        position: relative;
        z-index: 5;
    }
    
    h2 { font-size: 1.5rem; }
}
/* İçerik Konteynırı Ayarı */
.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 40px auto; 
    position: relative; 
    z-index: 20; 
}

.tab-content { display: none; }
.tab-content.active { 
    display: block !important; 
    animation: fadeInContent 0.5s ease;
}

@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- YENİLENMİŞ İLETİŞİM BÖLÜMÜ STİLLERİ --- */
/* İLETİŞİM PREMIUM TASARIM */
.contact-premium-section {
    padding: 40px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 50px;
}

/* Bilgi Kartları */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f4ff;
}

.c-info-card:hover {
    transform: translateX(10px);
    border-color: #0d47a1;
}

.c-icon-box {
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    color: #0d47a1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.c-text h4 {
    font-size: 1.1rem;
    color: #0d47a1;
    margin-bottom: 5px;
    font-weight: 700;
}

.c-text p, .c-text p a {
    color: #555;
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.5;
}

/* --- YENİLENMİŞ BİZİ TAKİP EDİN ALANI --- */
.contact-follow-us {
    margin-top: 15px;
    background: linear-gradient(to right, #ffffff, #f8fbff);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.05);
    border: 1px solid #e3f2fd;
}

.follow-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.follow-content span {
    font-weight: 800 !important; /* En kalın yazı */
    color: #0d47a1;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.social-links a img {
    width: 38px;
    height: 38px;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.2) rotate(5deg);
}

/* Harita Alanı */
.contact-map-box {
    background: #ffffff;
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    height: 500px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

/* GELİŞTİRİLMİŞ MOBİL DÜZENLEME (Tek Seferde) */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map-box {
        height: 350px;
        margin: 0 10px;
    }
    
    .c-info-card {
        margin: 0 10px;
    }

    .c-info-card:hover {
        transform: none;
    }

    .contact-follow-us {
        margin: 10px 15px; 
        padding: 20px;
    }

    .follow-content {
        flex-direction: row; 
        justify-content: space-around; /* Mobilde ortalı ve ferah duruş */
    }

    .follow-content span {
        font-size: 1rem;
    }
}

.c-info-card:hover {
    transform: translateX(10px);
    border-color: #0d47a1;
}

.c-icon-box {
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    color: #0d47a1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.c-text h4 {
    font-size: 1.1rem;
    color: #0d47a1;
    margin-bottom: 5px;
    font-weight: 700;
}

.c-text p, .c-text p a {
    color: #555;
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.5;
}

/* Sosyal Bar */
.contact-social-bar {
    display: flex;
    gap: 15px;
    padding: 10px;
}

.contact-social-bar a {
    width: 45px;
    height: 45px;
    background: #0d47a1;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 1.2rem;
}

.contact-social-bar a:hover {
    background: #ffcd00;
    color: #0d47a1;
    transform: translateY(-5px);
}

/* Harita Alanı */
.contact-map-box {
    background: #ffffff;
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    height: 500px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

/* Mobil Düzenleme */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map-box {
        height: 350px;
    }
    .c-info-card:hover {
        transform: none;
    }
}
/* ABOUT & SERVICES */
.about,.services{background:#fff;padding:30px;border-radius:12px;box-shadow:0 6px 20px rgba(0,0,0,0.1);}
.about img{max-width:100%;border-radius:12px;margin-bottom:20px;transition:transform 0.3s;}
.about img:hover{transform:scale(1.03);}

/* FAQ */
.faq{background:#fff;padding:30px;border-radius:12px;box-shadow:0 6px 20px rgba(0,0,0,0.1);}
.faq .faq-item{margin-bottom:15px;border-bottom:1px solid #ccc;transition:all 0.3s;}
.faq .faq-question{padding:12px;cursor:pointer;font-weight:600;display:flex;align-items:center;gap:10px;transition: background 0.3s;}
.faq .faq-question:hover{background:#f0f0f0;}
.faq .faq-answer{display:none;padding:10px 12px;color:#555;transition:all 0.3s;}

/* SLIDER & PLACES */
.slider-container{position:relative;display:flex;align-items:center;margin-bottom:40px;}
.slider{display:flex;overflow-x:auto;gap:20px;scroll-behavior:smooth;padding:10px 0;scrollbar-width:none;scroll-snap-type:x mandatory;}
.slider::-webkit-scrollbar{display:none;}
.slide, .place-card{min-width:250px;background:#f0f4ff;padding:20px;border-radius:20px;box-shadow:0 8px 25px rgba(0,0,0,0.15);flex-shrink:0;scroll-snap-align:start;transition:transform 0.3s,box-shadow 0.3s;}
.slide:hover,.place-card:hover{transform:translateY(-5px);}
.place-card img{width:100%;height:200px;object-fit:cover;border-radius:20px;transition:transform 0.3s;cursor:pointer;}
.place-card img:hover{transform:scale(1.05);}
.place-info{padding:15px;background:#f0f4ff;}
.place-info h4{margin-bottom:5px;color:#0d47a1;}
.place-info p{font-size:0.9rem;color:#333;}
.arrow{background:#0d47a1;color:#fff;border:none;padding:10px;border-radius:50%;cursor:pointer;position:absolute;top:50%;transform:translateY(-50%);z-index:10;transition:all 0.3s;}
.arrow:hover{background:#093078;transform:translateY(-50%) scale(1.1);}
.arrow.left{left:-20px;}
.arrow.right{right:-20px;}

/* TESTIMONIAL */
.testimonial-bubble {color: white;padding:20px 25px;border-radius:25px;box-shadow:0 8px 20px rgba(0,0,0,0.15);position:relative;min-height:120px;display:flex;flex-direction:column;justify-content:center;transition:transform 0.3s,box-shadow 0.3s;}
.testimonial-bubble:hover{transform:translateY(-5px);box-shadow:0 12px 30px rgba(0,0,0,0.2);}
.testimonial-bubble::after{content:'';position:absolute;bottom:-15px;left:30px;border-width:15px 15px 0;border-style:solid;border-color:#1976d2 transparent transparent transparent;}
.testimonial-bubble p{font-size:1rem;line-height:1.5;margin-bottom:10px;}
.testimonial-bubble h4{font-size:0.9rem;font-weight:600;text-align:right;margin:0;}
.testimonial-bubble:nth-child(1){background:linear-gradient(135deg,#0d47a1,#1976d2);}
.testimonial-bubble:nth-child(2){background:linear-gradient(135deg,#ff6f61,#ffb347);}
.testimonial-bubble:nth-child(3){background:linear-gradient(135deg,#6a11cb,#2575fc);}
.testimonial-bubble:nth-child(4){background:linear-gradient(135deg,#f7971e,#ffd200);}
/* Zeynep B. Baloncuğu Özel Rengi */
.testimonial-bubble.zeynep {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6) !important;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* GENERAL EFFECTS */
.fade-in{opacity:0;transform:translateY(20px);transition:all 0.8s ease;}
.fade-in.visible{opacity:1;transform:translateY(0);}
/* --- GÜNCEL SAĞ ALT BUTONLAR (WHATSAPP VE OK) --- */

/* WhatsApp Butonu (En Altta) */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background-color: #25d366 !important;
    color: #FFF !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px !important;
    text-decoration: none !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Yukarı Çık Butonu (WhatsApp'ın Üstünde - Çakışma Önleyici Mesafe) */
#back-to-top {
    position: fixed !important;
    /* WhatsApp'ın 30px + kendi boyu 60px + ek boşluk 40px = 130px */
    bottom: 100px !important; 
    right: 35px !important;
    width: 50px !important;
    height: 50px !important;
    background: #0d47a1 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    z-index: 9998 !important;
    /* JS Görünürlük Ayarı */
    display: none; 
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Efektleri */
.whatsapp-float:hover {
    background-color: #128c7e !important;
    transform: scale(1.1) rotate(10deg);
}

#back-to-top:hover {
    background: #1976d2 !important;
    transform: translateY(-8px);
}

/* Mobil Uyumluluk (Telefonlarda üst üste binmemesi için özel ayar) */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 30px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
    }
    #back-to-top {
        /* Mobilde WhatsApp'ın biraz daha üzerinde */
        bottom: 90px !important; 
        right: 25px !important;
        width: 45px !important;
        height: 45px !important;
    }
}
.lightbox{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.8);display:flex;align-items:center;justify-content:center;z-index:10000;display:none;}
.lightbox img{max-width:90%;max-height:80%;border-radius:12px;}

@media(max-width:900px){.contact-section,.services-cards,.slider{grid-template-columns:1fr;}}

/* EXPERIENCE STATS */

.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: #0d47a1;
  color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  flex: 1 1 150px;
  min-width: 150px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.stat-card h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ff0000;
}

.stat-card p {
  font-size: 1.1rem;
  font-weight: 500;
}
/* Romanya'da Eğitim özel stil */
#romanyadaegitim h2 {
    color: #0d47a1;
    margin-bottom: 30px;
    border-bottom: 3px solid #1976d2;
    display: inline-block;
    padding-bottom: 5px;
}

#romanyadaegitim .services-cards.enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

#romanyadaegitim .services-card {
    background: linear-gradient(135deg, #f0f4ff, #d9e3ff);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.4s, box-shadow 0.4s, border-left 0.4s;
    border-left: 5px solid #1976d2;
}

#romanyadaegitim .services-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    border-left-color: #ffcd00;
}

#romanyadaegitim .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

#romanyadaegitim .card-header img {
    width: 48px;
    height: 48px;
    transition: transform 0.5s;
}

#romanyadaegitim .services-card:hover .card-header img {
    transform: rotate(15deg) scale(1.2);
}

#romanyadaegitim .details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

#romanyadaegitim .services-card:hover .details {
    max-height: 200px;
}

#romanyadaegitim .details ul {
    padding-left: 20px;
    margin: 0;
    list-style: disc;
}
#romanyadaegitim .details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding-left: 10px;
}
/* Header bayrak arka plan */
.header-flag {
  position: absolute;
  top: 0; /* en üstten başlasın */
  left: 0;
  width: 100%;
  height: 100%; /* header’ın tüm yüksekliğini kaplasın */
  background: url('Images/Romania.jpg') no-repeat center center;
  background-size: cover;
  filter: brightness(0.4) contrast(1.2) drop-shadow(0 10px 20px rgba(0,0,0,0.7));
  z-index: 0; /* logonun ve hero içeriğinin arkasında kalsın */
  transform: scale(1);
  animation: flagWave 20s ease-in-out infinite alternate;
}


/* === Romanya Hero Alanı (Beyaz Arka Plan) === */
.hero-romania {
  background: #ffffff;       /* ⚡️ Beyaz arka plan */
  color: #333;               /* Metin rengi koyu gri */
  padding: 80px 20px 60px;
  text-align: center;
}

.hero-romania .hero-content {
  max-width: 900px;
  margin: auto;
}

.hero-romania h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #b30000;            /* Romanya bayrağına atıf için zarif kırmızı */
}

.hero-romania p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}
/* === Sekmelerin ekrana sığması ve kaydırılabilir olması === */
nav {
  display: flex;
  justify-content: center;      /* büyük ekranda ortala */
  flex-wrap: nowrap;            /* satır kırma yok */
  overflow-x: auto;             /* küçük ekranda yatay kaydırma */
  scrollbar-width: thin;        /* Firefox için */
}
nav::-webkit-scrollbar {
  height: 6px;                  /* Chrome için */
}
nav::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 3px;
}
.tab-btn {
  flex: 0 0 auto;                /* butonlar küçülmesin */
  padding: 10px 20px;
}
/* === Slider oklarını sabit ve görünür yap === */
.slider-container {
  position: relative;
}
.arrow.left,
.arrow.right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
}
.arrow.left { left: 10px; }
.arrow.right { right: 10px; }
h1, h2, h3 {
  margin-left: 20px;
  margin-right: 20px;
}
.tab-btn {
  font-size: 0.95rem;  /* biraz daha küçük */
  padding: 8px 16px;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;                        /* kutular arası boşluk */
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;                    /* ortala */
}
.services-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.services-card h4 {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #333;
}

.services-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Hover efekti */
.services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.services {
  background: #f7f7f7;
  padding: 60px 0;
}
.services > h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
}
.services > h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff4c60; /* markanın ana rengi */
  margin: 12px auto 0;
  border-radius: 2px;
}
/* Fotoğraf alanı düzeni */
.why-photos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;                   /* fotoğraflar arası boşluk */
  margin-top: 40px;
  flex-wrap: wrap;             /* mobilde alta geçsin */
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;          /* yuvarlak köşeler */
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  max-width: 400px;
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

/* Hover efekti */
.photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.photo-card:hover img {
  transform: scale(1.05);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.why-choose {
  background: linear-gradient(135deg, #f7f7f7 0%, #eaf3ff 100%);
  padding: 60px 20px;
  border-radius: 24px;
}
.photo-card:hover {
  box-shadow: 0 0 25px rgba(0,123,255,0.4);
}
.why-icon {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-8px);}
  60% {transform: translateY(-4px);}
}
.btn-primary.big {
  background: linear-gradient(135deg, #4f9cf9, #4361ee); /* mavi tonları */
  color: #fff;
  padding: 16px 40px;
  font-size: 1.2rem;
  border-radius: 50px; /* yuvarlatılmış köşeler */
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-primary.big:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 25px rgba(67, 97, 238, 0.5);
  background: linear-gradient(135deg, #4361ee, #4f9cf9); /* hover gradient ters çevrildi */
}
/* Hakkımızda Kısmı */
.about {
  position: relative;
  background-image: url('images/student.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35); /* saydam koyuluk */
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  background: #ffffff; /* beyaz içerik kutusu */
  padding: 40px;
  max-width: 900px;
  width: 90%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.whyus-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.whyus-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.rating .stars img {
  width: 30px;
  height: 30px;
}

.rating .figures img {
  width: 40px;
  height: 40px;
}

/* Animasyon */
@keyframes fadeInUp {
  0% {opacity:0; transform: translateY(30px);}
  100% {opacity:1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    padding: 30px 20px;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}
.testimonials {
  position: relative;
  padding: 80px 20px;
  color: #fff;
  background: url('images/testimonials-bg.jpg') no-repeat center center/cover;
  overflow: hidden;
}

.testimonials h2 {
  text-align:center;
  font-size: 2.5em;
  margin-bottom:50px;
  position: relative;
}


.stat-card {
  background: rgb(1, 78, 160); /* Mavi kutular */
  padding:20px 30px;
  border-radius:15px;
  text-align:center;
  color:#fff;
  backdrop-filter: blur(5px);
}

.stat-card h2 {
  font-size:2em;
  margin-bottom:5px;
  color:red; /* Sayılar kırmızı */
}

/* Slider */
.slider-container { position: relative; }
.slider {
  display:flex;
  gap:20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom:20px;
}

.testimonial-bubble {
  flex: 0 0 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(5px);
}

.testimonial-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Profil fotoğrafı */
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  border: 3px solid #fff;
}

/* Slider okları */
.arrow {
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border:none;
  color:#fff;
  font-size:2em;
  padding:10px;
  cursor:pointer;
  border-radius:50%;
}

.arrow.left { left:10px; }
.arrow.right { right:10px; }

.places {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.place {
    width: 300px;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.place:hover {
    transform: scale(1.03);
}

.place img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.place h3 {
    margin: 15px;
    font-size: 20px;
    color: #333;
}

.place p {
    margin: 0 15px 15px;
    font-size: 15px;
    color: #555;
}

.place .info {
    padding: 0 15px 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ---- Telefon ekranlarında bayrak üzerindeki yazıyı küçült ---- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 24px;     /* başlık boyutu */
    line-height: 1.2;    /* satır aralığı */
    text-align: center;  /* isteğe bağlı: ortala */
    padding: 0 10px;     /* kenarlardan biraz boşluk */
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 16px;     /* alt metin boyutu */
    line-height: 1.4;
    padding: 0 12px;
  }

  .hero-buttons button {
    font-size: 14px;     /* buton yazısı da küçülsün */
    padding: 10px 16px;
  }
}

/* Daha dar cihazlar (ör. iPhone SE) için ekstra */
@media (min-width: 992px) {
    .hero h1 {
        font-size: 24px; /* Masaüstünde büyük ve etkileyici başlık */
        margin-bottom: 20px; /* Masaüstünde mesafe normalleşir */
    }

    .hero p {
        font-size: 22px; /* İsteğin üzerine: Masaüstünde yazıyı büyüttük */
        font-weight: 500;
    }
}

header .logo img {
    position: relative;
    z-index: 10;   /* bayrak z-index’inden büyük olmalı */
}

  header .logo h1 {
    font-size: 22px;
    line-height: 1.2;
    margin-left: 0;    /* varsa ekstra soldan boşluğu kaldır */
  }

  header .logo img {
    max-width: 100px;
    height: auto;
  }

@media (max-width: 600px) {
    .hero h1 {
        font-size: 38px;      /* Mobilde ekranı kaplayan, güçlü bir font boyutu */
        margin-bottom: 18px;  /* İstediğin gibi arayı iyice açtık */
        line-height: 1.2;
    }

    .hero p {
        font-size: 20px;      /* Mobilde de "Geleceğinizi..." yazısı artık çok daha büyük */
        font-weight: 600;     /* Okunabilirliği artırmak için biraz daha kalınlaştırdık */
        line-height: 1.4;
    }
}
/* Daha küçük ekranlar (ör. iPhone SE) için istersen ek kural */
@media (max-width: 425px) {
  header .logo {
    gap: 4px;          /* çok küçük ekranlarda daha da yakınlaştır */
  }

  header .logo h1 { font-size: 18px; }
  header .logo img { max-width: 80px; }
}
@media (max-width: 768px) {
    header {
        height: 300px;             /* telefonlarda daha yüksek yap */
        min-height: 300px;
        padding: 10px;
    }

    .header-flag {
        background-size: cover;    /* tüm alanı kapla */
        background-position: center top; /* üstten hizala */
        height: 100%;
    }

    .logo img {
        height: 60px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .hero p {
        font-size: 14px;
    }
}
/* Telefonlar (768px altı) */
@media (max-width: 768px) {
    header .logo img {
        max-width: 80px;   /* yatay boyutu küçült */
        height: auto;      /* dikey boyut orantılı */
    }
}

/* Daha küçük telefonlar (425px altı) */
@media (max-width: 425px) {
    header .logo img {
        max-width: 60px;   /* daha küçük ekranlar için küçült */
        height: auto;
    }
}
/* Telefonlarda header ve bayrak tam görünmesi için */
@media (max-width: 768px) {
    header {
        overflow: hidden;            /* taşan kısımları gizle */
    }

    .header-flag {
        background-size: cover;      /* tüm alanı kapla */
        background-position: center; /* yatay ve dikey ortala */
        width: 100%;
        height: 100%;
    }
}
#free-consult-btn {
    margin-top: 30px;
    position: relative;
    /* Boyutu küçültmek için padding değerlerini düşürdük (Eskisi 16px 40px idi) */
    padding: 12px 30px; 
    /* Yazı boyutunu hafif küçülttük (Eskisi 1.1rem idi) */
    font-size: 0.85rem; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    background: linear-gradient(135deg, #ffcd00 0%, #ffb300 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 15px rgba(255, 205, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Üzerine gelince (Hover) Efekti */
#free-consult-btn:hover {
    transform: translateY(-3px) scale(1.02); /* Yükselme miktarını da küçülttük */
    box-shadow: 0 12px 25px rgba(255, 205, 0, 0.4);
    background: linear-gradient(135deg, #ffd633 0%, #ffcd00 100%);
}

/* Parlama Efekti (Aynı kalıyor) */
#free-consult-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.7s;
}

#free-consult-btn:hover::after {
    left: 120%;
}

/* Telefonlarda (Mobil) Ekstra Küçültme */
@media (max-width: 768px) {
    #free-consult-btn {
        padding: 10px 22px; /* Mobilde daha da kompakt */
        font-size: 0.85rem;
        margin-top: 20px; /* İstediğin yukarı taşıma miktarını buraya ekledim */
    }
}

/* Daha küçük cihazlar için ekstra (ör. iPhone SE) */
@media (max-width: 425px) {
    .hero-buttons button#free-consult-btn {
        font-size: 10px;
        padding: 6px 10px;
        margin-top: -5px;  /* biraz yukarı taşı */
    }
}
/* --- Profesyonel Responsive Footer --- */
footer {
  background-color: #242121; 
  color: #ffffff;
  padding: 60px 0 30px; /* Üst boşluk artırılarak daha ferah bir görünüm sağlandı */
  font-family: 'Poppins', sans-serif;
  border-top: 3px solid #0d47a1;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  /* Grid yapısı ile her ekranda dengeli dağılım */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-text {
  font-size: 0.88rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

/* --- LOGO AYARI --- */
.footer-logo-only {
  width: 80px;
  margin-top: 5px;
}

.footer-logo-only img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* --- LİSTE VE İKON DÜZENİ --- */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-size: 0.88rem;
  color: #cccccc;
  margin-bottom: 15px;
  display: flex;
  align-items: center; /* İkon ve metni dikeyde ortalar */
  gap: 12px;
}

.footer-list i {
  color: #3b82f6;
  font-size: 1.1rem;
  width: 24px; /* İkonlar için sabit alan */
  text-align: center;
}

.footer-list a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #3b82f6;
}

/* Saatler İçin Özel Hizalama */
.footer-time-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 200px; /* Aşırı yayılmayı engeller */
}

/* --- ALT BÖLÜM --- */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  padding: 0 10px;
}

/* --- MOBİL VE TABLET DÜZENLEMESİ --- */
@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr; /* Mobilde tek sütun */
    gap: 35px;
    text-align: center; /* Mobilde her şeyi ortalar */
  }

  .footer-column {
    align-items: center; /* İçerikleri sütun bazında ortalar */
  }

  .footer-list li {
    justify-content: center; /* İkon ve metni mobilde ortalar */
  }

  .footer-time-row {
    max-width: 100%; /* Mobilde tam genişlik */
  }
}


header .logo img {
    height: 80px; /* Orantılı boyut */
    width: auto;
}

header .logo h1 {
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Hamburger Butonu */
.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: none; /* Masaüstünde gizli */
}


/* --- 2. PROFESYONEL BEYAZ NAVBAR (ÜST ŞERİT) --- */
.header-top-bar {
    background-color: #ffffff !important;
    width: 100%;
    height: 90px; /* Bir tık daha geniş ve ferah bir alan için 80'den 90'a çıkardık */
    display: flex;
    justify-content: space-between; 
    align-items: center; /* Dikeyde tam ortalar */
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Logo ve RO Campus Yazısı (Görseldeki gibi yan yana) */
header .logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important; /* Resim ve yazı arasındaki boşluk */
    margin: 0 !important;
}

header .logo img {
    height: 70px !important; /* 55px olan değeri 70px'e çıkardık (Daha da büyütebilirsin) */
    width: auto !important;
    transition: transform 0.3s ease;
}

header .logo h1 {
    color: #333 !important;
    font-size: 1.8rem !important; /* 1.4rem olan değeri 1.8rem'e çıkardık */
    font-weight: 700 !important;
    text-shadow: none !important;
    white-space: nowrap; /* Yazının alt satıra kaymasını engeller */
}

/* Hamburger Butonu (Kutulu Tasarım) */
.menu-toggle {
    display: flex !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 5px;
    color: #333 !important;
    padding: 8px 12px;
    font-size: 1.5rem;
    cursor: pointer;
}


/* --- 3. MOBİL MENÜ (YUKARIDAN AŞAĞI SÜZÜLEN PANEL) --- */
.proNav {
    position: fixed;
    top: -100%; /* Kapalıyken yukarıda (ekran dışında) gizli */
    left: 0;
    width: 100%;
    height: auto !important;
    background: #ffffff !important;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    padding: 30px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.proNav.active {
    top: 80px; /* Tıklandığında Navbar'ın hemen altına iner */
}

.proNav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.proNav ul li a {
    color: #333 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
}

.menu-close { display: none !important; } /* İkon X'e dönüşeceği için butona gerek yok */

/* --- 4. HEADER VE BAYRAK ALANI --- */
header {
    margin-top: 80px; /* Sabit Navbar için üstten boşluk */
    height: 450px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.header-flag {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('Images/Romania.jpg') no-repeat center center/cover;
    filter: brightness(0.45);
    z-index: 0;
}

header .hero {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

/* Masaüstü Mavi Navigasyon Şeridi (Hero altında) */
.desktop-blue-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #0d47a1;
    padding: 12px 0;
    width: 100%;
    z-index: 10;
}

.desktop-blue-nav button {
    background: none;
    border: none;
    color: white;
    font-weight: 600;
    padding: 8px 15px;
    cursor: pointer;
}

/* --- 5. İÇERİK VE MOBİL UYUM --- */
.container { width: 90%; max-width: 1200px; margin: 40px auto; }
.tab-content { display: none; }
.tab-content.active { display: block !important; }

@media (max-width: 991px) {
    .desktop-blue-nav { display: none !important; } /* Mobilde mavi şeridi gizle */
    header { height: 450px; }
}

/* --- 6. DİĞER BİLEŞENLER (Kartlar, Stats, Footer) --- */
.services-card { background: #fff; padding: 25px; border-radius: 12px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }

.experience-stats { background: url("images/bomba.jpg") center/cover fixed; padding: 60px 20px; position: relative; color: white; text-align: center; }
.experience-stats::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.stats-container { position: relative; z-index: 1; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }

footer { background: #242121; color: #fff; padding: 50px 0 20px; border-top: 4px solid #0d47a1; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; width: 90%; margin: 0 auto; }


.desktop-menu {
    display: none; /* Varsayılan gizli, medya sorgusu ile açılıyor */
    list-style: none;
    gap: 35px; /* Menü elemanları arasındaki boşluğu artırdık */
    margin: 0;
    padding: 0;
    align-items: center; /* Menü elemanlarını dikeyde hizalar */
}

.desktop-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.05rem; /* Yazı boyutunu 0.95'ten 1.05'e çıkardık */
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px 5px; /* Tıklama alanını dikeyde genişlettik */
}

.desktop-menu li a:hover {
    color: #0d47a1;
    transform: translateY(-2px); /* Üzerine gelince hafif yükselme efekti */
}

/* --- MEDIA QUERIES (Büyük Ekranlar İçin) --- */
@media (min-width: 992px) {
    /* Hamburger butonunu gizle */
    .menu-toggle {
        display: none !important;
    }

    /* Masaüstü menüsünü göster */
    .desktop-menu {
        display: flex !important;
    }

    /* Eğer en alttaki mavi şeridi artık istemiyorsan onu da burada gizleyebilirsin */
    .desktop-blue-nav {
        display: none !important;
    }
}

/* --- MEDIA QUERIES (Küçük Ekranlar İçin) --- */
@media (max-width: 991px) {
    .desktop-menu {
        display: none !important; /* Küçük ekranda kesin gizle */
    }
    .menu-toggle {
        display: flex !important; /* Hamburgeri göster */
    }
}
/* PROFESYONEL PREP YEAR TASARIMI */
.prep-year-container {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    margin-bottom: 50px;
    border: 1px solid #eef2f6;
}

.prep-header-area {
    text-align: center;
    margin-bottom: 50px;
}

.prep-badge {
    background: #f0f4ff;
    color: #0d47a1;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.prep-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto;
}

.prep-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.prep-feature-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prep-feature-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(13, 71, 161, 0.1);
    border-color: #0d47a1;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Renk Paleti */
.icon-box.blue { background: #e3f2fd; color: #1976d2; }
.icon-box.yellow { background: #fffde7; color: #fbc02d; }
.icon-box.red { background: #ffebee; color: #d32f2f; }
.icon-box.purple { background: #f3e5f5; color: #7b1fa2; }

.prep-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #333;
}

.prep-feature-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.prep-summary-footer {
    margin-top: 50px;
    background: linear-gradient(90deg, #0d47a1, #1976d2);
    border-radius: 20px;
    padding: 25px;
    color: white;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-content i {
    font-size: 2rem;
    opacity: 0.8;
}

.footer-content p { margin: 0; line-height: 1.5; }

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .prep-year-container { padding: 30px 20px; }
    .footer-content { flex-direction: column; text-align: center; }
}
/* FAKÜLTE ALANI DÜZENLEMESİ */
.faculties-section {
    padding: 60px 20px;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.faculty-grid-compact {
    display: grid;
    /* Ekran boyutuna göre 1, 2, 3 veya 4 sütun yapar */
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.f-card {
    background: #f8fbff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #eef2f6;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.f-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1);
    border-color: #0d47a1;
}

.f-card i {
    font-size: 1.6rem;
    color: #0d47a1;
    margin-bottom: 12px;
}

.f-card h4 {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.f-card p {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

/* Mobilde sığması için */
@media (max-width: 480px) {
    .faculty-grid-compact {
        grid-template-columns: 1fr; /* Telefonda tek sütun */
    }
}
/* Fakülte Başlık Alanı Düzenlemesi */
.prep-header-area {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Her şeyi yatayda tam ortalar */
}

.academic-badge {
    background-color: #e3f2fd;
    color: #0d47a1;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    border: 1px solid #bbdefb;
}

.faculty-main-title {
    font-size: 2.2rem !important;
    color: #333;
    margin: 0 0 15px 0 !important; /* Kenar boşluklarını sıfırlayıp hizaladık */
    font-weight: 700;
}

.title-separator {
    width: 60px;
    height: 4px;
    background: #ffcd00; /* Romanya Sarısı - Vurgu için */
    border-radius: 2px;
    margin-bottom: 20px;
}

.prep-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto !important;
}

/* Mobil uyum için başlık boyutunu küçült */
@media (max-width: 768px) {
    .faculty-main-title {
        font-size: 1.6rem !important;
    }
}
/* PREMIUM FAKULTE ALTI BUTON TASARIMI */
.faculty-cta-container {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-cta-btn {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    padding: 15px 45px;
    border-radius: 60px;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.3);
    position: relative;
    overflow: hidden;
}

.icon-circle {
    background: rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Hover Efektleri */
.premium-cta-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.4);
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
}

.premium-cta-btn:hover .icon-circle {
    background: #ffffff;
    transform: rotate(-45deg);
}

.premium-cta-btn:hover .icon-circle i {
    color: #0d47a1;
}

/* Butonun İçindeki Parlama Animasyonu */
.premium-cta-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.8s;
}

.premium-cta-btn:hover::after {
    left: 120%;
}

.cta-helper-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .premium-cta-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 90%;
        justify-content: center;
    }
}
/* Memnuniyetler Başlık Alanı */
.testimonials-home h2 {
    text-align: center;
    font-size: 2.0rem !important;
    font-weight: 700;
    color: #0d47a1;
    margin-top: 60px !important;
    margin-bottom: 40px !important;
    position: relative;
    display: block;
}

/* Başlığın altına şık bir çizgi */
.testimonials-home h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #ffcd00; /* Romanya Sarısı */
    margin: 15px auto 0;
    border-radius: 2px;
}

/* İstatistik Alanını (Stats) Güzelleştirme */
.experience-stats {
    border-radius: 30px;
    margin: 20px auto;
    width: 95%;
    max-width: 1100px;
    overflow: hidden; /* Kenar yuvarlaması için */
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stat-card {
    background: rgba(13, 71, 161, 0.85) !important; /* Şeffaf lacivert */
    backdrop-filter: blur(10px); /* Arka planı bulanıklaştırır (modern hava katar) */
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-card h2 {
    color: #ffcd00 !important; /* Sayıları kırmızı yerine sarı yaparak daha okunur kıldık */
    font-size: 3rem !important;
    margin: 0 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-card p {
    color: #fff !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* HAKKIMIZDA PREMIUM STİLLERİ */
.about-premium-section {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* Giriş Metni Kutusu */
.about-main-text-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border-left: 6px solid #0d47a1;
}

.about-p-vurgu {
    font-size: 1.3rem;
    color: #0d47a1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-p-normal {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.about-p-normal span {
    font-weight: 600;
    color: #0d47a1;
    background: rgba(255, 205, 0, 0.15); /* Romanya Sarısı Vurgu */
    padding: 2px 5px;
    border-radius: 4px;
}

/* Misyon & Vizyon Düzeni */
.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.mv-premium-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.mv-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 71, 161, 0.1);
    border-color: #0d47a1;
}

.mv-icon-box {
    font-size: 2.5rem;
    color: #ffcd00; /* Vurgu Rengi */
    margin-bottom: 20px;
}

.mv-premium-card h3 {
    font-size: 1.5rem;
    color: #0d47a1;
    margin-bottom: 15px;
    font-weight: 700;
}

.mv-premium-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Destek Bannerı */
.about-footer-banner {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    padding: 30px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.3);
}

.banner-flex {
    display: flex;
    align-items: center;
    gap: 25px;
}

.banner-flex i {
    font-size: 3rem;
    opacity: 0.8;
}

.banner-flex p {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.5;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-main-text-box { padding: 30px 20px; }
    .about-p-vurgu { font-size: 1.1rem; }
    .banner-flex { flex-direction: column; text-align: center; }
}
/* Misyon Vizyon Kartları */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.mv-card {
    background: linear-gradient(145deg, #ffffff, #f0f4ff);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(13, 71, 161, 0.1);
}

.mv-icon {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-card p {
    color: #666;
    font-size: 1rem;
}

/* Destek Banner */
.support-banner {
    background: linear-gradient(90deg, #0d47a1, #1976d2);
    border-radius: 25px;
    padding: 30px;
    color: white;
    text-align: center;
}

.support-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.support-content i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.support-content p {
    font-size: 1.1rem;
    margin: 0;
    max-width: 800px;
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .support-content {
        flex-direction: column;
    }
    .about-main-p {
        font-size: 1.1rem;
    }
}
/* SSS PREMIUM TASARIM */
.faq-premium-container {
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.faq-card {
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-card:hover {
    border-color: #0d47a1;
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.08);
}

.faq-question-box {
    padding: 22px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-number {
    font-weight: 800;
    color: #0d47a1;
    opacity: 0.2;
    font-size: 1.1rem;
    min-width: 25px;
}

.faq-question-box h4 {
    font-size: 1.05rem;
    color: #333;
    margin: 0 !important;
    flex: 1;
    font-weight: 600;
    line-height: 1.4;
}

.faq-plus-icon {
    width: 32px;
    height: 32px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d47a1;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

/* Cevap Alanı */
.faq-answer-box {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafcff;
}

.faq-answer-box p {
    padding: 20px 30px 25px 75px; /* Numaradan sonrasına hizalandı */
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
    border-top: 1px solid #f1f1f1;
}

/* Aktif Durum */
.faq-card.active {
    border-color: #ffcd00;
    background: #fff;
}

.faq-card.active .faq-plus-icon {
    transform: rotate(45deg);
    background: #ffcd00;
    color: #333;
}

.faq-card.active .faq-answer-box {
    max-height: 500px;
}

.faq-footer-info {
    text-align: center;
    margin-top: 40px;
    color: #777;
    font-size: 0.9rem;
}

.faq-footer-info a {
    color: #0d47a1;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #ffcd00;
    padding-bottom: 2px;
}

@media (max-width: 768px) {
    .faq-question-box { padding: 18px 20px; }
    .faq-answer-box p { padding: 15px 20px 20px 20px; }
    .faq-number { display: none; } /* Mobilde numarayı gizleyip yer kazanalım */
}

/* --- ORTAK BAYRAK BUTONU STİLİ (Masaüstü & Mobil) --- */
.lang-switch-btn.only-flag, 
.only-flag-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    width: 45px;  /* Biraz daha belirgin olması için 45px yaptık */
    height: 45px; 
    padding: 0;
    border-radius: 50%; /* Tam yuvarlak */
    border: 1px solid #d9e3ff;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Daha akıcı animasyon */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-decoration: none !important;
}

.lang-switch-btn.only-flag img, 
.only-flag-mobile img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- HOVER ANİMASYONU (Her ikisi için de geçerli) --- */
.lang-switch-btn.only-flag:hover, 
.only-flag-mobile:hover {
    background: #0d47a1;
    transform: rotate(360deg) scale(1.2); /* Tam tur döner ve büyür */
    border-color: #0d47a1;
}

/* Mobilde Çizgi ve Yerleşim Ayarı */
@media (max-width: 991px) {
    .proNav .lang-wrapper {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #eee; /* Menüden ayıran ince çizgi */
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* --- PREMIUM NAVIGASYON VE DİL BUTONU FIX --- */

/* 1. Menü Linkleri */
.desktop-menu li a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

/* 2. Sadece Menü Linklerinin Altındaki Çizgi */
.desktop-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0d47a1;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.desktop-menu li a:hover::after {
    width: 100%;
}

/* 3. DİL BUTONU FIX (Çizgiyi Kaldırma ve Tasarım) */
.lang-switch-btn.only-flag {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #f0f4ff;
    border: 1px solid #d9e3ff;
    border-radius: 50% !important; /* Tam yuvarlak */
    margin-left: 20px; /* Menüden uzaklaştır */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* DİL BUTONUNUN ALTINDAKİ ÇİZGİYİ SİLEN KRİTİK KOD */
.lang-switch-btn.only-flag::after {
    display: none !important; /* Çizgiyi tamamen yok eder */
    content: none !important;
}

.lang-switch-btn.only-flag:hover {
    background: #0d47a1;
    transform: rotate(360deg) scale(1.1);
    border-color: #0d47a1;
}

.lang-switch-btn.only-flag img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .proNav ul li a::after {
        height: 1px; /* Mobilde çizgiyi daha zarif yapalım */
        background: rgba(13, 71, 161, 0.2);
    }

    /* Mobilde dil butonunun altındaki çizgiyi de kapatalım */
    .only-flag-mobile::after {
        display: none !important;
    }

    .proNav .lang-wrapper {
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        display: flex;
        justify-content: center;
    }
}

/*SON YAPILAN GUNCELLEMELER*/

/* Mobil Düzenlemeleri (768px altındaki ekranlar için) */
@media (max-width: 768px) {
    
    /* 1. Hakkımızda Bölümü Kutuları */
    .about-premium-section {
        padding: 20px 15px; /* Kenarlardan biraz boşluk bırakalım */
    }

    .mv-premium-card {
        width: 90%; /* Kutunun ekranın tamamını kaplamasını önler */
        margin: 15px auto; /* Kutuları ortalar ve aralarına boşluk koyar */
        padding: 20px; /* İç boşluğu biraz daraltır */
        border-radius: 15px; /* Daha yumuşak köşeler */
    }

    .about-main-text-box {
        width: 95%;
        margin: 0 auto 20px;
        padding: 15px;
    }

    .about-p-vurgu {
        font-size: 1.1rem; /* Yazıyı mobilde bir tık küçültelim */
        line-height: 1.5;
    }

    /* 2. SSS (FAQ) Bölümü Kutucukları */
    .faq-premium-container {
        padding: 10px;
    }

    .faq-card {
        width: 92%; /* Kutucuğun genişliğini %100'den %92'ye düşürdük */
        margin: 8px auto; /* Kutular arasındaki dikey mesafeyi daralttık */
        padding: 12px 15px; /* İç boşluğu (padding) küçülttük */
        min-height: auto; /* Gereksiz yüksekliği kaldırdık */
    }

    .faq-question-box h4 {
        font-size: 0.95rem; /* Soru metni çok büyükse bir tık küçülür */
        padding-right: 10px;
    }

    .faq-number {
        font-size: 1rem; /* Numara ikonunu küçülttük */
        margin-right: 10px;
    }

    .faq-answer-box p {
        font-size: 0.9rem; /* Cevap metnini daha okunabilir boyuta çektik */
    }
}


/* Mobil Düzenlemeleri (768px altındaki ekranlar için) */
@media (max-width: 768px) {

    /* İletişim Butonu Konteynırı */
    .faculty-cta-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Butonu ve altındaki yazıyı yatayda ortalar */
        justify-content: center;
        width: 100%;
        padding: 20px 0;
        margin: 0 auto;
    }

    /* Parlayan Kutu (Shine Box) Ayarı */
    .cta-shine-box {
        width: auto; /* Mobilde tam genişlik yerine içeriği kadar yer kaplasın */
        display: inline-block;
        margin-bottom: 10px;
    }

    /* Butonun Kendisi */
    .premium-cta-btn {
        padding: 12px 20px; /* İç boşluğu küçülttük */
        font-size: 0.9rem; /* Yazı boyutunu mobilde biraz daralttık */
        width: 90vw; /* Ekranın %90'ını kaplasın ama taşmasın */
        max-width: 320px; /* Çok fazla büyümesini engelleyelim */
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px; /* Yazı ve ikon arasındaki boşluk */
        height: auto;
    }

    /* Butonun İçindeki İkon Halkası */
    .premium-cta-btn .icon-circle {
        width: 30px; /* İkonu biraz küçülttük */
        height: 30px;
        min-width: 30px;
    }

    /* Butonun Altındaki Yardımcı Yazı */
    .cta-helper-text {
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Logo Konteynırı */
    .logo {
        display: flex;
        align-items: center;
        justify-content: center; /* Mobilde logoyu ortalamak isterseniz */
    }

    /* Logo Görseli */
    .logo img {
        width: 50px;       /* Burayı logonun mobilde ne kadar büyük görünmesini istiyorsanız ona göre ayarlayın */
        height: auto !important; /* Yüksekliği otomatik yaparak ovalliği engeller */
        object-fit: contain;     /* Görselin kutu içine sığmasını sağlar */
        border-radius: 0;        /* Eğer CSS'te yanlışlıkla verilmiş bir ovalleştirme varsa sıfırlar */
    }

    /* Logo Yanındaki Yazı (Varsa) */
    .logo-text, .logo h1 {
        font-size: 1.2rem;
        margin-left: 10px;
    }
}