/* HAMZA EROL - TEMEL CSS 
   Renk Paleti: Koyu Lacivert (#0f172a), Petrol Mavisi/Teal (#0891b2), Gri (#64748b)
*/

:root {
    --primary-color: #0f172a;       /* Koyu Lacivert (Ana Renk) */
    --accent-color: #0891b2;        /* Petrol Mavisi/Turkuaz (Vurgu) */
    --accent-hover: #0e7490;        /* Hover Rengi */
    --text-color: #334155;          /* Koyu Gri Metin */
    --light-bg: #f8fafc;            /* Açık Gri Arka Plan */
    --white: #ffffff;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease;
}

/* Genel Ayarlar */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main { flex: 1; /* Footer'ı aşağı iter */ }

/* --- TOP BAR (En Üst İnce Şerit) --- */
.top-bar {
    background-color: var(--primary-color);
    color: #cbd5e1;
    font-size: 13px;
    padding: 8px 0;
}

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

.top-contact a:hover, .top-social a:hover { color: var(--accent-color); }
.top-contact .sep { margin: 0 10px; opacity: 0.5; }
.top-social a { margin-left: 15px; }

/* --- HEADER & MENU --- */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* --- HEADER GÜNCELLEMESİ --- */

/* Header Konteyner Yüksekliğini Artırıyoruz (Logo sığsın diye) */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px; /* Eski değer: 100px idi */
}

/* Header Logo Boyutu */
.logo img {
    height: 100px; /* Eski değer: 80px idi -> Büyütüldü */
    width: auto;
    transition: var(--transition);
}

/* --- FOOTER GÜNCELLEMESİ --- */

/* Footer Logo Boyutu (Header ile eşitlendi) */
.footer-logo {
    height: 100px; /* Eski değer: 40px idi -> Büyütüldü */
    width: auto;     /* Oran bozulmasın */
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Beyaz yapma filtresi */
    opacity: 0.9; /* Biraz daha parlak olsun */
}

/* --- MOBİL UYUMLULUK (Telefonda çok büyük durmaması için) --- */
@media (max-width: 768px) {
    .header-container { height: 90px; }
    .logo img { height: 70px; }
    
    /* Footer logo mobilde ortalansın ve biraz küçülsün */
    .footer-logo { 
        height: 70px; 
        margin: 0 auto 20px; 
    }
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-color);
    position: relative;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--accent-color);
}

/* Aktif link alt çizgi efekti */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

/* İletişim Butonu (Menüdeki) */
.btn-contact {
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-contact::after { display: none; } /* Alt çizgiyi kaldır */
.btn-contact:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- FOOTER --- */
.main-footer {
    background-color: #1e293b; /* Header'dan biraz daha açık lacivert */
    color: #94a3b8;
    padding-top: 60px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Sol taraf biraz daha geniş */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    /* Eğer logonuz koyu renkse, bunu beyaza çevirir: */
    filter: brightness(0) invert(1); 
    opacity: 0.8;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links li, .footer-contact-list li {
    margin-bottom: 12px;
}

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

.footer-links a.active {
    font-weight: 600;
    text-decoration: underline;
    color: #1d4ed8; /* canlı koyu mavi */
}


.footer-contact-list i {
    width: 20px;
    color: var(--accent-color);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-social-bottom a {
    color: #94a3b8;
    margin-left: 15px;
    font-size: 18px;
}

.footer-social-bottom a:hover { color: var(--accent-color); }

/* --- RESPONSIVE (MOBİL) --- */
@media (max-width: 768px) {
    .top-bar { display: none; } /* Mobilde üst barı gizle */
    
    .mobile-menu-btn { display: block; }

    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none; /* Varsayılan gizli */
        flex-direction: column;
        padding: 20px;
    }

    .main-nav.active { display: flex; }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 10px 0;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav a::after { display: none; } /* Mobilde alt çizgi yok */

    .footer-grid {
        grid-template-columns: 1fr; /* Tek kolon */
        text-align: center;
    }
    
    .footer-logo { margin: 0 auto 20px; }
    .footer-desc { margin: 0 auto; }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- ANA SAYFA STİLLERİ (style.css'in en altına ekleyin) --- */

/* Ortak Bölüm Ayarları */
.section { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }
.text-center { text-align: center; }

.section-title { margin-bottom: 50px; display: flex; justify-content: space-between; align-items: end; }
.section-title.text-center { display: block; }
.section-title h2 { font-size: 32px; color: var(--primary-color); position: relative; margin-bottom: 15px; }
.section-title p { color: #64748b; font-size: 18px; max-width: 600px; margin: 0 auto; }
.view-all { color: var(--accent-color); font-weight: 600; font-size: 14px; }
.view-all:hover { color: var(--primary-color); }

/* HERO ALANI */
/* --- HERO SECTION GÜNCELLEMESİ --- */
.hero-section {
    /* Mevcut padding ve diğer ayarlarınız burada kalmalı, örneğin: */
    padding: 150px 0; 
    display: flex;
    align-items: center;
    text-align: left;
    color: #fff; /* Yazıların beyaz olması için */
    position: relative; /* Overlay için gerekli */

    /* --- ARKA PLAN RESMİ AYARLARI --- */
    
    /* 1. Katman: %60 Siyah Karartma, 2. Katman: Sizin Resminiz */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/anasayfaresmi.png');
    
    /* Resmi tüm alana yay ve orantısını bozma (kırp gerekirse) */
    background-size: cover; 
    
    /* Resmi merkeze odakla */
    background-position: center center;
    
    /* Resim tekrar etmesin */
    background-repeat: no-repeat;
}

/* Arka plana hafif desen eklemek isterseniz burayı açabilirsiniz
.hero-section::before {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background-image: url('assets/img/pattern.png'); opacity: 0.05;
} */

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .highlight { color: var(--accent-color); }

.hero-content p {
    font-size: 20px;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Butonlar */
.btn { display: inline-block; padding: 15px 35px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: var(--transition); }
.btn-primary { background-color: var(--accent-color); color: var(--white); border: 2px solid var(--accent-color); }
.btn-primary:hover { background-color: transparent; color: var(--accent-color); }

.btn-outline { background-color: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); margin-left: 15px; }
.btn-outline:hover { border-color: var(--white); background-color: var(--white); color: var(--primary-color); }

.btn-white { background-color: var(--white); color: var(--primary-color); }
.btn-white:hover { background-color: #e2e8f0; }

/* HİZMET KARTLARI */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card:hover { transform: translateY(-10px); border-top-color: var(--accent-color); }

.service-card .icon {
    width: 70px; height: 70px;
    background-color: rgba(8, 145, 178, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.service-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--primary-color); }
.service-card p { color: #64748b; font-size: 15px; }

/* PROJE KARTLARI */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }

.project-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); }
.project-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

.project-img { position: relative; height: 250px; overflow: hidden; background: #eee; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-img img { transform: scale(1.1); }

.project-img .overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.project-card:hover .project-img .overlay { opacity: 1; }

.btn-icon { width: 50px; height: 50px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 20px; }
.btn-icon:hover { background: var(--accent-color); color: var(--white); }

.project-info { padding: 25px; }
.project-info .category { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-color); font-weight: 700; }
.project-info h3 { font-size: 20px; margin: 10px 0; color: var(--primary-color); }
.project-info p { color: #64748b; font-size: 14px; }

/* CTA (Hakkımda Banner) */
/* --- CTA (Kısa Hakkımda) BÖLÜMÜ ARKAPLANI --- */
.cta-section {
    /* Mevcut padding ayarlarınız burada kalmalı, örneğin: */
    padding: 100px 0;
    position: relative;
    
    /* İçerideki yazıların beyaz olması için */
    color: #ffffff;
    
    /* ARKA PLAN RESMİ AYARLARI */
    /* 1. Katman: %70 Siyah Karartma, 2. Katman: Yeni Resminiz */
    /* NOT: 'assets/cta-bg.png' kısmını kaydettiğiniz dosya adıyla değiştirin */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/anasayfaresmi2.png');
    
    /* Resmi tüm alana yay */
    background-size: cover;
    
    /* Resmi merkeze odakla */
    background-position: center center;
    
    /* Resim tekrar etmesin */
    background-repeat: no-repeat;
}

/* İçerideki başlık ve paragrafın rengini garantiye almak için */
.cta-text h2,
.cta-text p {
    color: #ffffff;
}

/* Butonun beyaz kenarlıklı (outline) kalmasını sağlamak için */
.cta-btn .btn-white {
    border-color: #ffffff;
    color: #ffffff;
}
.cta-btn .btn-white:hover {
    background-color: #ffffff;
    color: #000000; /* Hover olunca yazı siyah olsun */
}
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-text h2 { font-size: 32px; margin-bottom: 15px; }
.cta-text p { font-size: 18px; opacity: 0.9; max-width: 800px; }

/* BLOG KARTLARI */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-color); transition: var(--transition); }
.blog-card:hover { border-color: var(--accent-color); }

.blog-img { height: 200px; background: #eee; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-content { padding: 25px; }
.blog-content .meta { font-size: 13px; color: #94a3b8; margin-bottom: 10px; }
.blog-content h3 { font-size: 18px; margin-bottom: 10px; }
.blog-content h3 a { color: var(--primary-color); }
.blog-content h3 a:hover { color: var(--accent-color); }
.blog-content p { color: #64748b; font-size: 14px; margin-bottom: 20px; }
.read-more { color: var(--accent-color); font-weight: 600; font-size: 14px; text-decoration: underline; }

/* RESPONSIVE DÜZELTMELER */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 32px; }
    .hero-buttons { display: flex; flex-direction: column; gap: 15px; }
    .btn-outline { margin-left: 0; }
    .section-title { text-align: center; display: block; }
    .view-all { display: block; margin-top: 10px; }
    .cta-content { flex-direction: column; text-align: center; }
}

/* --- PORTFÖY VE ALT SAYFA STİLLERİ --- */

/* Sayfa Başlık Alanı (Hero'nun küçüğü) */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Portföy Filtreleri */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.filter-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

/* Boş İçerik Uyarısı */
.no-content {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    background: #f8fafc;
    border-radius: 10px;
    color: #94a3b8;
    font-size: 18px;
}

/* --- BLOG DETAY SAYFASI STİLLERİ --- */

/* İçerik Ortalama ve Genişlik */
.blog-detail-wrapper {
    max-width: 800px; /* Okuma kolaylığı için çok geniş olmamalı */
    margin: 0 auto;
    background: var(--white);
    padding: 0; 
}

/* Başlık Alanı */
.blog-header { text-align: center; margin-bottom: 40px; }
.blog-header h1 { font-size: 36px; color: var(--primary-color); margin: 15px 0; line-height: 1.3; }
.blog-meta { color: #94a3b8; font-size: 14px; }
.blog-meta span { margin: 0 10px; }

/* Geri Dön Linki */
.back-link { display: inline-block; color: var(--accent-color); font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.back-link:hover { text-decoration: underline; }

/* Detay Görseli */
.blog-detail-img { margin-bottom: 40px; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.blog-detail-img img { width: 100%; height: auto; display: block; }

/* Yazı İçeriği (Typography) */
.blog-detail-content { 
    font-size: 18px; 
    line-height: 1.8; 
    color: #334155; 
}

.blog-detail-content p { margin-bottom: 25px; }
.blog-detail-content h2 { font-size: 28px; color: var(--primary-color); margin: 40px 0 20px; }
.blog-detail-content h3 { font-size: 24px; color: var(--primary-color); margin: 30px 0 15px; }
.blog-detail-content ul, .blog-detail-content ol { margin-bottom: 25px; padding-left: 20px; }
.blog-detail-content li { margin-bottom: 10px; }
.blog-detail-content a { color: var(--accent-color); text-decoration: underline; }
.blog-detail-content blockquote {
    border-left: 5px solid var(--accent-color);
    background: #f8fafc;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--primary-color);
}
.blog-detail-content img { max-width: 100%; height: auto; border-radius: 5px; margin: 20px 0; }

/* Paylaşım Butonları */
.blog-share { 
    margin-top: 50px; 
    padding-top: 30px; 
    border-top: 1px solid var(--border-color); 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    font-weight: 600; 
    color: var(--primary-color);
}

.blog-share a {
    width: 40px; height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #64748b;
    transition: var(--transition);
}

.blog-share a:hover { background: var(--accent-color); color: var(--white); }

/* Mobil Uyum */
@media (max-width: 768px) {
    .blog-header h1 { font-size: 28px; }
    .blog-detail-content { font-size: 16px; }
}

/* --- HAKKIMDA SAYFASI --- */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: center; }
.about-img img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-text h2 { font-size: 32px; color: var(--primary-color); margin-bottom: 20px; }
.about-text .lead { font-size: 20px; color: var(--accent-color); margin-bottom: 20px; font-weight: 500; }
.about-text p { margin-bottom: 15px; color: #475569; }

.features-list { margin-top: 30px; }
.feature-item { display: flex; align-items: center; margin-bottom: 15px; }
.feature-item i { color: var(--accent-color); margin-right: 15px; font-size: 20px; }

/* İstatistikler */
.stats-grid { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.stat-item .number { font-size: 48px; font-weight: 800; color: var(--accent-color); }
.stat-item .label { font-size: 16px; color: var(--primary-color); font-weight: 600; text-transform: uppercase; }

/* --- İLETİŞİM & FORM SAYFALARI --- */
.contact-wrapper, .staj-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-info h3 { font-size: 24px; margin-bottom: 20px; color: var(--primary-color); }
.info-item { display: flex; margin-bottom: 30px; }
.info-item i { width: 50px; height: 50px; background: rgba(8, 145, 178, 0.1); color: var(--accent-color); display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 20px; font-size: 20px; }
.info-item strong { display: block; margin-bottom: 5px; color: var(--primary-color); }

/* Form Stilleri */
.contact-form { background: var(--white); padding: 40px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid var(--border-color); }
.contact-form h3 { margin-bottom: 25px; color: var(--primary-color); }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #cbd5e1; border-radius: 5px; font-family: inherit; font-size: 15px; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1); }
textarea.form-control { resize: vertical; }

/* Alert Mesajları */
.alert { padding: 15px; border-radius: 5px; margin-bottom: 20px; font-weight: 500; }
.alert.success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert.error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* Mobil Uyum */
@media (max-width: 768px) {
    .about-grid, .contact-wrapper, .staj-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info { order: 2; } /* Mobilde formu yukarı al */
    .contact-form { order: 1; }
}

/* --- STAJ BAŞVURU SAYFASI (staj.php) STİLLERİ --- */

/* Genel Izgara Yapısı (İletişim sayfasıyla aynı yapıyı kullanır ama özel ayarlar gerekebilir) */
.staj-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Bilgi kısmı dar, form geniş */
    gap: 50px;
    align-items: start;
}

/* Sol Taraf: Bilgilendirme Kutusu */
.staj-info {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.staj-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
}

.staj-info p {
    color: #475569;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

/* Staj Avantajları Listesi */
.staj-list {
    list-style: none;
    margin-top: 20px;
}

.staj-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
}

.staj-list li i {
    color: var(--white);
    background-color: var(--accent-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
}

/* Sağ Taraf: Başvuru Formu Özelleştirmeleri */
.staj-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.staj-form h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 24px;
}

/* Dosya Yükleme Alanı Güzelleştirme */
input[type="file"] {
    padding: 10px;
    background-color: #f1f5f9;
    border: 1px dashed #cbd5e1;
    cursor: pointer;
}

input[type="file"]:hover {
    background-color: #e2e8f0;
    border-color: var(--accent-color);
}

/* Select Kutusu Oku (Görsel Düzeltme) */
select.form-control {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    appearance: none; /* Varsayılan oku gizle */
    -webkit-appearance: none;
}

/* Mobil Uyum (Staj Sayfası İçin) */
@media (max-width: 900px) {
    .staj-wrapper {
        grid-template-columns: 1fr; /* Tek kolon */
    }
    
    .staj-info {
        margin-bottom: 30px;
        padding: 30px;
    }
    
    .staj-form {
        padding: 30px;
    }
}

/* --- ADMİN BUTONU --- */
.btn-admin {
    background-color: #dc3545; /* Kırmızı uyarı rengi */
    color: #fff !important;
    padding: 8px 15px !important;
    border-radius: 5px;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #dc3545;
}

.btn-admin:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
    transform: translateY(-2px);
}

/* Mobilde Admin Butonu */
@media (max-width: 768px) {
    .btn-admin {
        background-color: #dc3545 !important;
        margin-top: 10px;
        justify-content: center;
    }
}

/* =========================================
   CTA BÖLÜMÜ BUTON DÜZELTMESİ (SON VE TEMİZ HALİ)
   ========================================= */

/* 1. ÖNCE: Eğer resim yüklenmezse zemin beyaz kalmasın diye güvenlik rengi */
.cta-section {
    background-color: #0f172a; /* Koyu Lacivert (Resim yoksa bu görünür) */
}

/* 2. BUTONUN NORMAL HALİ */
/* Şeffaf zemin, Beyaz Yazı, Beyaz Çerçeve */
.cta-section .btn-white {
    background-color: transparent !important; 
    color: #ffffff !important;
    border: 2px solid #ffffff !important; /* Çerçeve kalınlığı */
    opacity: 1 !important; /* Görünürlüğü zorla */
    transition: all 0.3s ease;
}

/* 3. BUTONUN ÜZERİNE GELİNCE (HOVER) */
/* Beyaz Zemin, Koyu Yazı */
.cta-section .btn-white:hover {
    background-color: #ffffff !important;
    color: #0f172a !important; /* Markanızın koyu rengi */
    border-color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Hafif gölge ekleyelim */
}