
/* --- 1. FONTLAR VE RENK DEĞİŞKENLERİ --- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --primary: #FF8E8E;   
    --secondary: #6BCB77; 
    --accent: #FFD93D;    
    --blue: #4D96FF;      
    --bg-body: #F0F4F8;
    --card-bg: #FFFFFF;
    --shadow-light: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
}

/* --- 2. ORTAK HERO (ÜST BAŞLIK) BÖLÜMÜ --- */
.hero-section {
    position: relative;
    background: var(--blue);
    padding: 120px 0 100px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.3);
    margin-bottom: 50px;
}
.hero-title {
    font-family: 'Fredoka', sans-serif;
    color: #fff;
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}
.hero-breadcrumb {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 20px;
    border-radius: 50px;
    margin-top: 10px;
    color: #fff;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}
.hero-breadcrumb a { color: #fff; font-weight: 700; text-decoration: none; }

.floating-shape {
    position: absolute;
    opacity: 0.2;
    animation: floatAnim 6s ease-in-out infinite;
}
.fs-1 { top: -10px; left: -10px; font-size: 140px; color: var(--accent); }
.fs-2 { bottom: 10px; right: -20px; font-size: 120px; color: var(--secondary); animation-delay: 2s; }

@keyframes floatAnim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* --- 3. KART VE İÇERİK YAPILARI --- */
.modern-about { padding: 80px 0; }
.clay-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.8);
    height: 100%;
}
.about-content { font-size: 1.1rem; line-height: 1.8; color: #555; }
.about-text-wrapper { white-space: pre-line; } 

.custom-title { 
    color: var(--blue); 
    font-family: 'Fredoka', sans-serif;
    font-weight: 600; 
    font-size: 1.8rem; 
    display: block; 
    margin-top: 20px;
    margin-bottom: 15px; 
    border-bottom: 2px dashed #eee;
    padding-bottom: 10px;
}
.security-card { 
    background: #FFF0F0; 
    border-left: 5px solid var(--primary); 
    padding: 25px; 
    border-radius: 15px;
    margin-top: 30px;
}
.security-card .custom-title { border-bottom: none; color: var(--primary); margin-top: 0; padding-bottom: 0; }

.content-h2 { font-family: 'Fredoka', sans-serif; font-size: 2.2rem; color: #333; margin-bottom: 20px; padding-bottom: 15px; }
.content-text { font-size: 1.05rem; line-height: 1.8; color: #555; }
.content-text ul { margin-bottom: 20px; padding-left: 20px; }
.content-text ul li { margin-bottom: 10px; }
.content-text img { max-width: 100%; height: auto; border-radius: 15px; margin: 15px 0; }

.image-box-wrapper { position: relative; padding-top: 30px; height: 100%; display: flex; align-items: center; }
.image-box-wrapper .bg-shape { position: absolute; top: 0; right: 0; width: 80%; height: 90%; background: var(--primary); border-radius: 30px; opacity: 0.1; z-index: 0; }
.image-box-wrapper img { width: 100%; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); position: relative; z-index: 1; border: 8px solid #fff; }

.btn-custom {
    background: var(--primary); color: #fff; font-family: 'Fredoka', sans-serif; font-size: 1.2rem;
    padding: 12px 35px; border-radius: 50px; text-decoration: none; display: inline-block;
    transition: all 0.3s; box-shadow: 0 10px 20px rgba(255, 142, 142, 0.3);
}
.btn-custom:hover { transform: translateY(-5px); background: #ff7575; color: #fff; }

/* --- 4. YAN MENÜ (SIDEBAR) BİLEŞENLERİ --- */
.sidebar-sticky { position: -webkit-sticky; position: sticky; top: 100px; z-index: 9; }
.menu-card { background: #fff; border-radius: 25px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 30px; }
.menu-title { font-family: 'Fredoka', sans-serif; font-size: 1.3rem; color: var(--blue); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px dashed #eee; }

.custom-nav { padding: 0; margin: 0; }
.custom-nav li { list-style: none; margin-bottom: 12px; }
.custom-nav li a { display: flex; align-items: center; padding: 12px 15px; background: #F8F9FA; border-radius: 15px; color: #555; font-weight: 700; transition: all 0.2s; text-decoration: none;}
.custom-nav li a i { width: 30px; height: 30px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 10px; font-size: 12px; color: #ccc; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.custom-nav li a:hover, .custom-nav li a.active { background: var(--blue); color: #fff; transform: translateX(5px); }
.custom-nav li a:hover i, .custom-nav li a.active i { color: var(--blue); }

/* --- 5. HİZMET VE ETKİNLİK İÇERİK --- */
.service-image-box { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 30px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.service-image-box img { width: 100%; height: auto; display: block; }

.floating-tag { position: absolute; top: 20px; left: 20px; background: #fff; padding: 8px 20px; border-radius: 15px; font-weight: 800; color: var(--primary); box-shadow: 0 5px 15px rgba(0,0,0,0.1); font-family: 'Fredoka', sans-serif; z-index: 10; }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 30px; }
.f-item { background: #fff; padding: 20px; border-radius: 20px; text-align: center; border: 2px solid #f0f0f0; }
.f-item i { font-size: 24px; margin-bottom: 10px; display: block; }
.c-1 { color: var(--primary); border-color: #FFE5E5; background: #FFF0F0; }
.c-2 { color: var(--secondary); border-color: #E0F5E3; background: #F0FFF2; }
.c-3 { color: var(--accent); border-color: #FFF9D1; background: #FFFEF0; }
.c-4 { color: var(--blue); border-color: #E0ECFF; background: #F0F7FF; }

/* Hizmet Galeri Carousel */
.service-gallery-carousel .owl-nav { position: absolute; top: 50%; width: 100%; transform: translateY(-50%); display: flex; justify-content: space-between; pointer-events: none; }
.service-gallery-carousel .owl-nav button { pointer-events: auto; background: rgba(255,255,255,0.9) !important; width: 45px; height: 45px; border-radius: 50% !important; color: var(--primary) !important; box-shadow: 0 5px 15px rgba(0,0,0,0.15); margin: 0 15px !important; display: flex; align-items: center; justify-content: center; font-size: 20px !important; transition: all 0.3s ease; }
.service-gallery-carousel .owl-nav button:hover { background: var(--primary) !important; color: #fff !important; transform: scale(1.1); }
.service-gallery-carousel .owl-dots { position: absolute; bottom: 15px; width: 100%; text-align: center; }
.service-gallery-carousel .owl-dot span { width: 12px !important; height: 12px !important; background: rgba(255,255,255,0.5) !important; border-radius: 50% !important; margin: 0 5px !important; transition: all 0.3s ease !important; }
.service-gallery-carousel .owl-dot.active span { background: #fff !important; transform: scale(1.3); }

/* --- 6. BLOG / HABERLER SAYFALARI --- */
.blog-page-section { padding-bottom: 80px; }
.blog-card { background: var(--card-bg); border-radius: 25px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.05); border: 2px solid transparent; transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: rgba(77, 150, 255, 0.2); }
.blog-card .image-box { position: relative; overflow: hidden; }
.blog-card .image-box img { width: 100%; height: 250px; object-fit: cover; transition: all 0.5s ease; }
.blog-card:hover .image-box img { transform: scale(1.08); }
.blog-card .date-badge { position: absolute; top: 20px; right: 20px; background: var(--primary); color: #fff; padding: 8px 15px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; box-shadow: 0 5px 15px rgba(255, 142, 142, 0.4); z-index: 2; }
.blog-card .lower-content { padding: 30px 25px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card .lower-content h3 { font-family: 'Fredoka', sans-serif; font-size: 1.4rem; line-height: 1.4; margin-bottom: 15px; }
.blog-card .lower-content h3 a { color: var(--blue); text-decoration: none; transition: 0.3s; }
.blog-card .lower-content h3 a:hover { color: var(--primary); }
.blog-card .lower-content .text { font-size: 1rem; color: #666; line-height: 1.7; margin-bottom: 25px; flex-grow: 1; }
.blog-card .btn-read-more { align-self: flex-start; display: inline-flex; align-items: center; background: #F0F4F8; color: var(--blue); padding: 10px 25px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all 0.3s ease; }
.blog-card .btn-read-more i { margin-left: 8px; font-size: 0.9rem; transition: transform 0.3s; }
.blog-card .btn-read-more:hover { background: var(--blue); color: #fff; box-shadow: 0 5px 15px rgba(77, 150, 255, 0.3); }
.blog-card .btn-read-more:hover i { transform: translateX(5px); }

.blog-detail-image { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 30px; box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.blog-detail-image img { width: 100%; height: auto; display: block; }
.date-badge-large { display: inline-flex; align-items: center; background: #FFF0F0; color: var(--primary); padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; margin-bottom: 20px; }
.date-badge-large i { margin-right: 8px; font-size: 1.1rem; }

.mini-post { display: flex; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #f5f5f5; }
.mini-post:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.mini-post .img-box { width: 80px; height: 80px; flex-shrink: 0; border-radius: 15px; overflow: hidden; margin-right: 15px; }
.mini-post .img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.mini-post:hover .img-box img { transform: scale(1.1); }
.mini-post .post-info h4 { font-size: 1rem; font-family: 'Nunito', sans-serif; font-weight: 700; margin: 0 0 5px 0; line-height: 1.3;}
.mini-post .post-info h4 a { color: #444; text-decoration: none; transition: 0.3s; }
.mini-post .post-info h4 a:hover { color: var(--primary); }
.mini-post .post-info .date { font-size: 0.8rem; color: #999; font-weight: 600; }

.custom-pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 50px; padding: 0; list-style: none; }
.custom-pagination li a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: #fff; color: var(--blue); border-radius: 50%; font-weight: 700; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s; }
.custom-pagination li a:hover, .custom-pagination li a.active { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(255, 142, 142, 0.4); transform: translateY(-3px); }

/* --- 7. MOBİL ALT İLETİŞİM BARI --- */
.mobile-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; padding: 10px 20px; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); z-index: 999; justify-content: space-between; align-items: center; gap: 10px; }
.btn-mobile-call { flex: 1; background: var(--secondary); color: #fff; text-align: center; padding: 12px; border-radius: 12px; font-weight: 700; text-decoration: none; }
.btn-mobile-whatsapp { flex: 1; background: #25D366; color: #fff; text-align: center; padding: 12px; border-radius: 12px; font-weight: 700; text-decoration: none; }

/* --- 8. TALEP VE ÖNERİ SAYFASI --- */
.request-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}
.request-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 8px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}
.form-header { margin-bottom: 40px; text-align: center; }
.form-header h3 { color: #333; font-weight: 700; margin-bottom: 10px; }
.custom-input {
    background-color: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 12px;
    height: 55px;
    padding-left: 20px;
    font-size: 15px;
    color: #555;
    width: 100%;
}
.custom-input:focus {
    background-color: #fff;
    border-color: #4facfe;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.1);
}
select.custom-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    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='currentColor' 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;
}
textarea.custom-input { height: 120px; padding-top: 15px; resize: none; }

.submit-btn-blue {
    width: 100%;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border: none;
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}
.submit-btn-blue:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3); }

/* --- 9. ÖĞRENCİ KAYIT SAYFASI --- */
.registration-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.registration-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 8px;
    background: linear-gradient(90deg, #FF9A8B 0%, #FF6A88 55%, #FF99AC 100%);
}

.registration-card .form-group label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    font-size: 14px;
    margin-left: 5px;
}

.registration-card .custom-input:focus {
    background-color: #fff;
    border-color: #FF6A88;
    box-shadow: 0 5px 15px rgba(255, 106, 136, 0.1);
    color: #333;
}

.submit-btn-custom {
    width: 100%;
    background: linear-gradient(45deg, #FF6A88, #FF99AC);
    border: none;
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.submit-btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 106, 136, 0.3);
    background: linear-gradient(45deg, #ff5e7d, #ff8ba0);
}

/* --- 10. MENÜ İÇİ ŞIK BUTONLAR (KUSURSUZ ASANSÖR HİZALAMASI) --- */
.main-menu .navigation > li.nav-special-btn > a::before { display: none !important; } 

.btn-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 700;
    line-height: normal !important;
    
    /* İŞTE ASANSÖR KODU: Eksi değer butonları yukarı çeker. 
       Eğer hala biraz aşağıdaysa -15px, çok yukarı çıktıysa -8px yapabilirsiniz. */
    transform: translateY(-14px); 
    transition: all 0.3s ease;
}

.btn-pill i { margin-right: 6px; font-size: 14px; }

/* Mavi Buton */
.btn-pill-blue { background-color: #4D96FF; box-shadow: 0 4px 10px rgba(77,150,255,0.3); }
.btn-pill-blue:hover { background-color: #2b7af0; transform: translateY(-17px); } /* Üzerine gelince -14'ten -17'ye zıplar */

/* Yeşil Buton */
.btn-pill-green { background-color: #6BCB77; box-shadow: 0 4px 10px rgba(107,203,119,0.3); }
.btn-pill-green:hover { background-color: #4ea85a; transform: translateY(-17px); }

/* Sayfayı aşağı kaydırınca üstten inen ince menü (Sticky Header) için ayar */
.sticky-header .main-menu .navigation > li.nav-special-btn .btn-pill {
    transform: translateY(0px); /* İnce menüde yukarı çekmeye gerek kalmayabilir, gerekirse burayı da -3px yapabilirsiniz */
}
.sticky-header .main-menu .navigation > li.nav-special-btn .btn-pill:hover {
    transform: translateY(-3px);
}

/* Mobil Menü İçin Düzeltme */
@media (max-width: 991px) {
    .btn-pill { width: 100%; justify-content: center; padding: 12px !important; transform: translateY(0) !important; margin-top: 10px; }
    .btn-pill:hover { transform: translateY(-2px) !important; }
}

/* --- 11. MOBİL VE TABLET UYUMLULUK --- */
@media (max-width: 991px) {
    .hero-title { font-size: 2rem; }
    .clay-card { padding: 25px; border-radius: 20px; }
    .sidebar-sticky { position: static; margin-top: 40px; }
    .features-grid { grid-template-columns: 1fr 1fr; } 
    .mobile-bottom-bar { display: flex; } 
    footer { margin-bottom: 70px; } 
    .image-box-wrapper { padding-top: 0; }
    .request-card { padding: 30px; }
    .registration-card { padding: 30px; }
    
    .main-menu .navigation > li.nav-special-btn { margin: 10px 20px; float: none; }
    .main-menu .navigation > li.nav-special-btn > a { width: auto; justify-content: center; padding: 15px !important; margin-top: 0 !important; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .content-h2 { font-size: 1.6rem; }
    .floating-shape { display: none; }
}

/* --- 12. HEADER & FOOTER EK CSS (PHP DOSYALARINDAN TAŞINDI) --- */

/* Mobil/Masaüstü Göster-Gizle Yardımcı Sınıfları */
@media (max-width: 767px) { .mo { display: none !important; } }
@media (min-width: 767px) { .ma { display: none !important; } }

/* Menü Butonları ve Hizalamalar */
@media (min-width: 992px) {
    .main-menu .navigation > li { margin-right: 2px !important; }
    .main-menu .navigation > li > a { padding-left: 8px !important; padding-right: 8px !important; font-size: 15px !important; }
}

.main-menu .navigation > li.nav-special-btn { float: left !important; margin-left: 8px !important; }
.main-menu .navigation > li.nav-special-btn > a {
    background-color: #4D96FF !important;
    color: #ffffff !important;
    padding: 11px 22px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-top: 31px !important;
    display: inline-flex !important;
    align-items: center !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
}

.main-menu .navigation > li.nav-special-btn.btn-yesil > a { background-color: #6BCB77 !important; }
.main-menu .navigation > li.nav-special-btn > a:hover { transform: translateY(-3px) !important; box-shadow: 0 6px 15px rgba(0,0,0,0.2) !important; color: #ffffff !important; }
.main-menu .navigation > li.nav-special-btn > a::before { display: none !important; }

/* Sticky Header Ayarı */
.sticky-header .main-menu .navigation > li.nav-special-btn > a { margin-top: 14px !important; padding: 8px 18px !important; }

/* Partner (İştirak) Bölümü */
.partner-row { padding: 10px 0; background: #f0efe8; margin-bottom: 0; }
.partner-row-inner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; row-gap: 6px; }
.partner-text { font-size: 11px; color: rgba(0,0,0,0.4); white-space: nowrap; }
.p-logo { height: 22px; width: auto; object-fit: contain; filter: opacity(0.55); transition: filter 0.2s; }
.p-logo:hover { filter: opacity(0.9); }
.p-logo.osb-logo { height: 42px; }
.p-sep { color: rgba(0,0,0,0.2); font-size: 13px; }

/* Mobil Düzenlemeler */
@media (max-width: 991px) {
    .main-menu .navigation > li.nav-special-btn { margin: 10px 20px !important; float: none !important; }
    .main-menu .navigation > li.nav-special-btn > a { width: auto !important; justify-content: center !important; margin-top: 0 !important; padding: 12px 25px !important; }
}

@media (max-width: 767px) {
    .partner-row { padding: 8px 0; }
    .partner-text { font-size: 10px; }
    .p-sep { display: none; }
    .main-footer { margin-bottom: 0 !important; padding-bottom: 0 !important; }
}


/* --- 13. ANA SAYFA ÖZEL İÇERİK AYARLARI --- */

/* Hakkımızda ve Genel Metin Alanları (Taşmayı Önleme) */
.about-section .content-box .text {
    width: 100%;
    display: block;
}

/* Editörden gelen içeriklerin (yazı, resim, tablo) duyarlılık kuralları */
.about-section .content-box .text * {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: anywhere !important;
}

/* İçerik içi Resimler */
.about-section .content-box .text img {
    max-width: 100% !important;
    height: auto !important;
    display: block; 
}

/* İçerik içi Tablolar (Mobilde kaydırma/sığdırma sağlar) */
.about-section .content-box .text table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
}

/* İçerik içi Videolar/Iframe */
.about-section .content-box .text iframe {
    max-width: 100% !important;
}

/* Ekibimiz (Öğretmenler) Carousel Navigasyonunu Gizle */
.teachers-carousel .owl-nav {
    display: none !important;
}


/* ==========================================================================
   14. HAKKIMIZDA SAYFASI - YENİ BÖLÜMLER
   ========================================================================== */

/* --- 14a. HERO: mevcut .hero-section üzerine ek animasyonlu bloblar --- */
.hero-section .hk-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: floatAnim 6s ease-in-out infinite alternate;
}
.hero-section .hk-blob-1 { width: 280px; height: 280px; background: #fff;    top: -60px; right: -40px; animation-delay: 0s;   }
.hero-section .hk-blob-2 { width: 160px; height: 160px; background: var(--accent);  bottom: -40px; left: 8%;  animation-delay: 2s;   }
.hero-section .hk-blob-3 { width: 100px; height: 100px; background: var(--secondary); top: 20px;  left: 42%; animation-delay: 3.5s; }

/* hero rozet */
.hk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

/* --- 14b. ANA İÇERİK ALANI --- */
.hk-about { padding: 70px 0 50px; }

.hk-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

/* metin kartı – mevcut .clay-card mantığında ama sol kenarda çizgi var */
.hk-text-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 44px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    animation: hkFadeUp 0.7s 0.15s ease both;
}
.hk-text-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: linear-gradient(180deg, #253b70, #4D96FF);
    border-radius: 4px 0 0 4px;
}

/* küçük etiket */
.hk-section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #FFF0F0;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.hk-text-card h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.25;
    margin-bottom: 22px;
}
.hk-text-card h2 em {
    font-style: normal;
    color: var(--primary);
}

.hk-body-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555;
}
.hk-body-text p { margin-bottom: 14px; }
.hk-body-text p:last-child { margin-bottom: 0; }

/* CTA butonu – mevcut .btn-custom ile aynı dil */
.hk-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    background: var(--primary);
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.15rem;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255,142,142,0.3);
    transition: all 0.3s;
}
.hk-cta:hover { transform: translateY(-4px); background: #ff7575; color: #fff; }
.hk-cta i { transition: transform 0.25s; }
.hk-cta:hover i { transform: translateX(4px); }

/* --- 14c. SAĞ: görsel + istatistikler --- */
.hk-right { animation: hkFadeUp 0.7s 0.3s ease both; }

/* görsel – kutu kaldırıldı, serbest tam genişlik */
.hk-img-wrap {
    position: relative;
}
.hk-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* görsel üstündeki küçük etiket – mevcut .floating-tag stili */
.hk-img-sticker {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--accent);
    color: #333;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

/* istatistik kutuları */
.hk-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}
.hk-stat {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.8);
    transition: transform 0.25s;
}
.hk-stat:hover { transform: translateY(-4px); }
.hk-stat-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    margin: 0 auto 10px;
}
.hk-stat-num {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    color: #333;
}
.hk-stat-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    color: #999;
    margin-top: 4px;
}

/* renk yardımcıları istatistik ikonları için */
.hk-ic-red    { background: #FFF0F0; color: var(--primary);   }
.hk-ic-yellow { background: #FFFBE0; color: #c98d00;          }
.hk-ic-green  { background: #F0FFF2; color: var(--secondary); }
.hk-ic-blue   { background: #F0F7FF; color: var(--blue);      }

/* --- 14d. DEĞERLER BÖLÜMÜ --- */
.hk-values { padding: 0 0 70px; }

.hk-section-head {
    text-align: center;
    margin-bottom: 44px;
}
.hk-section-head h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}
.hk-section-head p {
    color: #777;
    margin-top: 8px;
    font-size: 1rem;
}
/* etiketin ortaya alınması */
.hk-section-head .hk-section-label {
    margin: 0 auto 14px;
    display: inline-flex;
}


.hk-values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
/* dar kart – daha kompakt */
.hk-val-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 24px 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    animation: hkFadeUp 0.6s ease both;
    text-align: center;
}
.hk-val-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.09);
    border-color: rgba(77,150,255,0.15);
}
.hk-val-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 14px;
}
.hk-val-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.hk-val-card p {
    font-size: 0.82rem;
    line-height: 1.6;
    color: #666;
}
 
/* --- 14e. GÜVENLİK BANNER --- */
/* mevcut .security-card'ın tam sayfalık versiyonu */
.hk-security-section {
    background: #253b70;
    color: #fff;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.hk-security-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 65% 50%, rgba(77,150,255,0.12), transparent 60%);
    pointer-events: none;
}
.hk-security-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 44px;
}
.hk-shield-icon {
    flex-shrink: 0;
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--blue), #7c4dff);
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 12px 35px rgba(77,150,255,0.35);
}
.hk-security-section h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.hk-security-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0; margin: 0;
}
.hk-security-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
}
.hk-security-list li i { color: var(--secondary); }
 
/* --- 14f. ANİMASYON --- */
@keyframes hkFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0);    }
}
 
/* --- 14g. MOBİL UYUMLULUK --- */
@media (max-width: 900px) {
    .hk-grid { grid-template-columns: 1fr; }
    .hk-right { order: -1; }
    .hk-img-wrap { aspect-ratio: 16/9; }
    .hk-text-card { padding: 28px; }
    .hk-security-inner { flex-direction: column; text-align: center; }
    .hk-security-list { justify-content: center; }
    .hk-values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
    .hk-stats { grid-template-columns: 1fr 1fr; }
    .hk-stats .hk-stat:last-child { grid-column: span 2; }
    .hk-values-grid { grid-template-columns: 1fr 1fr; }
    .hk-text-card h2 { font-size: 1.6rem; }
}

 15. TALEP & KAYIT SAYFALARI
   ========================================================================== */

/* --- 15a. ORTAK LAYOUT --- */
.tp-section {
    background: var(--bg-body);
    padding: 50px 0 90px;
}
.tp-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 32px;
    align-items: start;
}

/* --- 15b. SOL SIDEBAR --- */
.tp-sidebar {
    position: sticky;
    top: 28px;
}
.tp-sidebar-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.3;
}
.tp-sidebar-desc {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.75;
    margin: 0 0 24px;
}

/* tip/adım kartları */
.tp-item-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tp-item-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    background: var(--card-bg);
    border-radius: 18px;
    border: 2px solid #f0f0f0;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.tp-item-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(77,150,255,0.1);
    transform: translateX(4px);
}
.tp-item-icon {
    width: 40px; height: 40px;
    background: #F0F7FF;
    color: var(--blue);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
/* numara versiyonu (kayıt adımları) */
.tp-item-num {
    width: 40px; height: 40px;
    background: #F0F7FF;
    color: var(--blue);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    flex-shrink: 0;
}
.tp-item-label strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}
.tp-item-label span {
    font-size: 0.78rem;
    color: #999;
}

/* --- 15c. FORM KARTI --- */
.tp-card {
    background: var(--card-bg);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.8);
    overflow: hidden;
}
.tp-card-header {
    background: var(--blue);
    padding: 26px 32px;
    position: relative;
    overflow: hidden;
}
.tp-card-header::before {
    content: '';
    position: absolute;
    right: -40px; top: -40px;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
}
.tp-card-header::after {
    content: '';
    position: absolute;
    left: -20px; bottom: -30px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.tp-card-header h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
    position: relative; z-index: 1;
}
.tp-card-header p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    margin: 0;
    position: relative; z-index: 1;
}
/* kayıt başlığı – primary rengi */
.tp-card-header.tp-header-red { background: var(--primary); }

.tp-card-body { padding: 32px; }

/* --- 15d. FORM ELEMANLARI --- */
.tp-group { margin-bottom: 18px; }
.tp-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 7px;
}
.tp-group label .req { color: var(--primary); margin-left: 2px; }

.tp-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-body);
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #444;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.tp-input:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(77,150,255,0.1);
}
.tp-input::placeholder { color: #bbb; }
textarea.tp-input { min-height: 120px; resize: vertical; }
select.tp-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.tp-row { display: grid; gap: 14px; }
.tp-row-2 { grid-template-columns: 1fr 1fr; }
.tp-row-3 { grid-template-columns: 2fr 1fr; }

/* ayraç */
.tp-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 20px;
}
.tp-divider span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aaa;
    white-space: nowrap;
}
.tp-divider::before,
.tp-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

/* gönder butonu */
.tp-submit {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(77,150,255,0.3);
    margin-top: 6px;
}
.tp-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(77,150,255,0.4);
    background: #2b7af0;
}
.tp-submit:active { transform: translateY(0); }
/* kayıt butonu – primary */
.tp-submit.tp-submit-red {
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(255,142,142,0.3);
}
.tp-submit.tp-submit-red:hover {
    background: #ff7575;
    box-shadow: 0 12px 28px rgba(255,142,142,0.4);
}

.tp-note {
    font-size: 0.78rem;
    color: #aaa;
    text-align: center;
    margin-top: 12px;
}

/* --- 15e. MOBİL --- */
@media (max-width: 991px) {
    .tp-layout { grid-template-columns: 1fr; }
    .tp-sidebar { position: static; }
    .tp-item-list { flex-direction: row; flex-wrap: wrap; }
    .tp-item-card { flex: 1 1 calc(50% - 5px); }
}
@media (max-width: 576px) {
    .tp-card-body { padding: 22px 18px; }
    .tp-card-header { padding: 20px 18px; }
    .tp-row-2, .tp-row-3 { grid-template-columns: 1fr; }
    .tp-item-card { flex: 1 1 100%; }
}
