/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #1a237e;
    --secondary-color: #d32f2f;
    --accent-color: #ff5252;
    --dark-blue: #0d1642;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

/* ===== HEADER & NAVIGATION STYLES ===== */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a237e, #d32f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
}

.logo-image {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-image img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    height: 50px;
    width: auto;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a237e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d32f2f;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-primary {
    background: #1a237e;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0d1642;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #1a237e;
    transition: 0.3s;
}

/* ===== FOOTER STYLES ===== */
footer {
    background: #0d1642;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ff5252;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #d32f2f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ===== SABİT İLETİŞİM BUTONLARI ===== */
.fixed-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.fixed-btn:hover {
    transform: scale(1.1);
}

.fixed-whatsapp {
    background: #25D366;
}

.fixed-phone {
    background: #d32f2f;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(211, 47, 47, 0.6);
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-buttons {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 16px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .fixed-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
/* =========================
   HİKAYEMİZ BÖLÜMÜ
========================= */

.hikaye {
  padding: 80px 0;
  background-color: #ffffff;
}

.hikaye-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* SOL TARAF (METİN) */
.hikaye-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
}

.hikaye-text p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #444;
}

/* İSTATİSTİK KUTULARI */
.hikaye-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #d62828;
}

.stat-label {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
  display: block;
}

/* SAĞ TARAF (GÖRSEL) */
.hikaye-image {
  display: flex;
  justify-content: flex-end;
}

.hikaye-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 18px;
  display: block;

  /* ÇOK ÖNEMLİ — SOLUKLUĞU KESİN ENGELLER */
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  background: none;
}

/* MOBİL */
@media (max-width: 900px) {
  .hikaye-content {
    grid-template-columns: 1fr;
  }

  .hikaye-image {
    justify-content: center;
    margin-top: 30px;
  }

  .hikaye-text h2 {
    text-align: center;
  }
}
/* HİKAYE GÖRSEL DÜZELTME */
.hikaye-image{
  opacity: 1 !important;      /* eski opacity:0.1'i ezer */
  font-size: initial;         /* ikon için yazılmışsa iptal */
  color: initial;             /* ikon rengi iptal */
  text-align: right;          /* sağda dursun */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hikaye-image img{
  width: 100%;
  max-width:520px;           /* istersen 380-520 arası oynat */
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* =========================
   EĞİTİM SÜRECİ (3 ADIM)
========================= */

.surec{
  padding: 80px 0;
  background:  #0B2A4A; /* koyu mavi */
  position: relative;
  overflow: hidden;
}

/* Arka plandaki + deseni */
.surec::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .35;
  pointer-events:none;
}

.surec .container{ position: relative; }

.surec-title{
  text-align:center;
  margin-bottom: 40px;
  color:#fff;
}
.surec-title h2{
  font-size: 44px;
  margin: 0 0 10px 0;
  font-weight: 800;
}
.surec-title p{
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
}

/* Grid */
.surec-steps{
  display: grid;
  grid-template-columns: 1fr 140px 1fr 140px 1fr; /* step + çizgi + step + çizgi + step */
  align-items: center;
  gap: 10px;
}

/* Step kartı */
.step{
  text-align: center;
  color:#fff;
  position: relative;
  padding: 18px 10px 0;
}

/* Üstteki kırmızı numara */
.step-no{
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #e11d2e;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  font-size: 22px;
  margin: 0 auto 14px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.25);
}

/* İkon kutusu */
.step-icon{
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter: blur(6px);
}
.step-icon i{
  font-size: 34px;
  color: #fff;
  opacity: 0.95;
}

.step h3{
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 800;
}
.step p{
  margin: 0;
  max-width: 280px;
  margin-left:auto;
  margin-right:auto;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  font-size: 14.5px;
}

/* Ortadaki step biraz daha büyük dursun (isteğe bağlı) */
.step--center .step-no{ transform: scale(1.05); }
.step--center .step-icon{ transform: scale(1.05); }

/* Çizgi ve oklar */
.step-line{
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  position: relative;
}

.step-line .arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 18px;
}
.step-line .arrow.left{ left: 22px; }
.step-line .arrow.right{ right: 22px; }

/* Responsive */
@media (max-width: 980px){
  .surec-steps{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .step-line{ display:none; }
  .surec-title h2{ font-size: 34px; }
}
.belgeler-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* 5. kart: Okuma Yazma Belgesi → 2. kolon */
.belgeler-grid .belge-item:nth-child(5){
  grid-column: 2;
}

/* 6. kart: İkametgah Belgesi → 3. kolon */
.belgeler-grid .belge-item:nth-child(6){
  grid-column: 3;
}
/* İletişim: iki kolon eşit yükseklik */
.iletisim-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch; /* kritik: kolonlar eşitlensin */
}

/* Kartlar aynı yükseklikte */
.iletisim-form,
.iletisim-bilgiler{
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Sağ tarafta "Çalışma Saatleri" en alta otursun (daha dengeli görünür) */
.iletisim-bilgiler .calisma-saatleri{
  margin-top: auto;
}
/* ===== FOOTER GALERİ ===== */
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.footer-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.footer-gallery a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 126, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.footer-gallery a:hover::before {
    opacity: 1;
}

.footer-gallery a:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 480px) {
    .footer-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ===== FOOTER GALERİ ===== */
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.footer-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    display: block;
}

.footer-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
    filter: brightness(1.1);
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Şeffaflık ayarlandı */
    backdrop-filter: blur(10px); /* Arka plan bulanıklaştırma */
    -webkit-backdrop-filter: blur(10px); /* Safari için */
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

/* Üst Kısım: Logo */
.lightbox-header {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.lightbox-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #1a237e, #d32f2f);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-logo i {
    font-size: 32px;
}

/* Orta Kısım: Resim Alanı */
.lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 80px;
}

.lightbox-content {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
    transition: opacity 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Önceki/Sonraki Oklar */
.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 32px;
    transition: all 0.3s;
    border-radius: 50%;
    user-select: none;
    background-color: rgba(26, 35, 126, 0.8);
    z-index: 10001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: #d32f2f;
    transform: translateY(-50%) scale(1.1);
}

/* Alt Kısım: Footer */
.lightbox-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(26, 35, 126, 0.3);
    border-radius: 15px;
}

.lightbox-counter {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.lightbox-close {
    background: #d32f2f;
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.lightbox-close:hover {
    background: #b71c1c;
    transform: rotate(90deg) scale(1.1);
}

/* Responsive */
@media (max-width: 968px) {
    .lightbox-logo {
        font-size: 18px;
        padding: 12px 30px;
    }
    
    .lightbox-logo i {
        font-size: 24px;
    }
    
    .lightbox-image-container {
        padding: 20px 60px;
    }
    
    .lightbox-content {
        max-height: 60vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-footer {
        padding: 15px 20px;
    }
    
    .lightbox-counter {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .footer-gallery img {
        height: 70px;
    }
    
    .lightbox-logo {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .lightbox-logo i {
        font-size: 20px;
    }
    
    .lightbox-image-container {
        padding: 10px 50px;
    }
    
    .lightbox-content {
        max-height: 50vh;
        border-radius: 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-footer {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .lightbox-counter {
        font-size: 14px;
    }
    
    .lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
/* ===== FOOTER ===== */
footer {
    background: #0d1642;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 eşit sütun */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ff5252;
    font-size: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-size: 15px;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #ffffff;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #d32f2f;
}

/* ===== GALERİ BÖLÜMÜ (Footer altında tam genişlik) ===== */
.footer-gallery-section {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.footer-gallery-section h3 {
    color: #ff5252;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 sütun */
    gap: 15px;
}

.footer-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    display: block;
}

.footer-gallery img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.5);
    filter: brightness(1.1);
}

/* Footer Links Section */
.footer-links-section {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
}

.footer-links-section h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links-grid a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s;
    text-align: center;
}

.footer-links-grid a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ===== İLGİLİ SAYFALAR BÖLÜMÜ ===== */
.related-pages-section {
    margin-top: 50px;
    padding: 50px 40px;
    background: var(--light-gray);
    border-radius: 15px;
}

.related-pages-section h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 700;
}

.related-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-page-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary-color);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 2px solid transparent;
    min-height: 200px;
}

.related-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.related-page-card i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: block;
    flex-shrink: 0;
}

.related-page-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
    line-height: 1.3;
}

.related-page-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .related-pages-section {
        padding: 30px 20px;
    }
    
    .related-pages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-pages-section h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.90) 0%, rgba(13, 22, 66, 0.85) 100%), 
                url('assets/img/kibris_vizyon_surucukursu.png') center/cover no-repeat;
    color: var(--white);
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.page-hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 25px;
    margin-top: 40px;
    font-weight: 700;
}

.content-wrapper h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 600;
}

.content-wrapper p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 30px;
    margin-bottom: 25px;
}

.content-wrapper li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.content-wrapper a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.content-wrapper a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

/* ===== INFO BOX ===== */
.info-box {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    margin: 30px 0;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box h4 i {
    color: var(--secondary-color);
}

.info-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===== PRICE BOX ===== */
.price-box {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.price-box h4 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.price-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* ===== CLASS CARD ===== */
.class-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-color);
}

.class-card h4 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.class-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ===== RESPONSIVE FOR PAGE HERO ===== */
@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 50px;
    }
    
    .page-hero-content h1 {
        font-size: 28px;
    }
    
    .page-hero-content p {
        font-size: 16px;
    }
    
    .content-wrapper h2 {
        font-size: 24px;
    }
    
    .content-wrapper h3 {
        font-size: 20px;
    }
    
    .info-box,
    .price-box {
        padding: 20px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
    }
    
    .footer-gallery {
        grid-template-columns: repeat(3, 1fr); /* 3 sütun */
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .footer-links-grid a {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .footer-content {
        grid-template-columns: 1fr; /* 1 sütun */
    }
    
    .footer-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
    }
    
    .footer-gallery img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .footer-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .footer-gallery img {
        height: 80px;
    }
}

/* ===== LIGHTBOX (Önceki kodları koruyun) ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.3s;
}

/* ... (Önceki lightbox CSS'lerini koruyun) ... */
/* Misyon & Vizyon - Mobil uyum */
@media (max-width: 768px) {

  /* Kartların durduğu ana kapsayıcı (grid / flex fark etmez) */
  .misyon-vizyon-grid,
  .misyon-vizyon,
  .mv-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Kartlar */
  .misyon-kart,
  .vizyon-kart,
  .mv-card,
  .misyon-box,
  .vizyon-box {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* İç boşlukları mobilde biraz küçült */
  .misyon-kart,
  .vizyon-kart,
  .mv-card {
    padding: 20px !important;
  }

  /* Başlıkları biraz küçült */
  .misyon-kart h3,
  .vizyon-kart h3,
  .mv-card h3 {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }

  /* Metinleri mobilde okunur yap */
  .misyon-kart p,
  .vizyon-kart p,
  .mv-card p {
    font-size: 15px !important;
    line-height: 1.8 !important;
  }
}
/* ===== KURSLAR (paket-detay) MOBİL DÜZELTME ===== */
@media (max-width: 768px) {

  /* Kartın paddingi mobilde çok büyüktü -> küçült */
  .paket-detay{
    padding: 22px !important;
    border-radius: 18px;
  }

  /* Üst başlık (ikon + başlık + badge) mobilde alt alta gelsin */
  .paket-header{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* 2 kolon grid -> 1 kolon */
  .paket-content{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  /* Başlık boyutları mobilde daha rahat */
  .paket-title-area h3{
    font-size: 20px;
    line-height: 1.25;
  }

  .paket-info h4{
    font-size: 18px;
  }

  /* Sağ kutu (Kimler için) mobilde taşmasın */
  .kimler-icin{
    padding: 18px !important;
  }

  /* Liste satırları taşarsa kır */
  .paket-info ul li{
    gap: 10px;
    word-break: break-word;
  }
}

/* Daha küçük ekranlar için ekstra sıkılaştırma */
@media (max-width: 420px) {
  .paket-detay{ padding: 18px !important; }
  .paket-title-area h3{ font-size: 18px; }
}
/* ================================
   GEREKLİ BELGELER - MOBİLDE 2x3 (KESİN)
   ================================ */

@media (max-width: 768px) {

  .belgeler-grid{
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 16px !important;
  }

  /* 2 sütun: her kart %50 - boşluk payı */
  .belgeler-grid .belge-item{
    flex: 0 0 calc(50% - 16px) !important;
    max-width: calc(50% - 16px) !important;

    min-height: 140px;
    padding: 18px 14px !important;
    border-radius: 16px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .belgeler-grid .belge-item i{
    font-size: 34px;
    margin-bottom: 10px;
  }

  .belgeler-grid .belge-item h4{
    font-size: 15px;
    line-height: 1.4;

    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    white-space: normal;
    text-align: center;
  }
}

/* Çok dar ekranlarda taşmasın diye (isteğe bağlı ama iyi) */
@media (max-width: 380px) {
  .belgeler-grid .belge-item{
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
/* =========================
   İLETİŞİM SAYFASI - MOBİLDE ALT ALTA
   ========================= */
@media (max-width: 768px) {
  .iletisim-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    align-items: stretch !important;
  }

  .iletisim-form,
  .iletisim-bilgiler{
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* =========================
   İLETİŞİM - MOBİL TAŞMA FIX
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (max-width: 768px) {

  /* sayfa sağa sola kaymasın */
  html, body {
    overflow-x: hidden;
  }

  /* container mobilde nefes alsın */
  .iletisim-icerik .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* iki kart mobilde tam sığsın */
  .iletisim-form,
  .iletisim-bilgiler {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 18px !important; /* çok şişkinse 14px yap */
  }

  /* içerideki elemanlar taşmasın */
  .iletisim-form input,
  .iletisim-form textarea,
  .iletisim-form button {
    width: 100% !important;
  }

  /* uzun link/numara taşmasın */
  .bilgi-detay a,
  .bilgi-detay p {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Çalışma saatleri kartı da taşmasın */
  .calisma-saatleri {
    width: 100% !important;
  }
}
