/* ==========================================================================
   Premium Sürücü Kursu - Ana Stil Dosyası
   Renk sistemi ve component tabanlı yapı
   ========================================================================== */

:root {
    --primary: #0F3D91;
    --primary-dark: #0A2C6B;
    --primary-light: #1a56c4;
    --secondary: #FF8A00;
    --secondary-dark: #e67a00;
    --success: #28A745;
    --danger: #DC3545;
    --bg: #F7F9FC;
    --text: #1a2233;
    --text-muted: #64748b;
    --border: #e6ebf4;
    --white: #ffffff;
    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 26px;
    --shadow-sm: 0 2px 10px rgba(15, 61, 145, .05);
    --shadow: 0 8px 30px rgba(15, 61, 145, .08);
    --shadow-lg: 0 20px 55px rgba(15, 61, 145, .14);
    --shadow-secondary: 0 12px 30px rgba(255, 138, 0, .28);
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
    --font-display: 'Poppins', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-display { font-family: var(--font-display); font-weight: 700; }

a { text-decoration: none; transition: color var(--transition); }

img { max-width: 100%; height: auto; }

.container-xl { max-width: 1280px; }

/* --- Section helpers --- */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--secondary); font-weight: 600; font-size: .8rem;
    text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem;
}
.section-eyebrow::before {
    content: ''; width: 28px; height: 2px; background: var(--secondary); display: inline-block;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2; margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 640px; }
.text-primary-c { color: var(--primary) !important; }
.text-secondary-c { color: var(--secondary) !important; }
.bg-soft { background: var(--white); }

/* --- Buttons --- */
.btn-c {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .85rem 1.75rem; border-radius: var(--radius-sm); font-weight: 600;
    font-family: var(--font-display); border: none; cursor: pointer;
    transition: all var(--transition); font-size: .95rem; text-align: center;
}
.btn-c-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(15,61,145,.25); }
.btn-c-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-c-secondary { background: var(--secondary); color: #fff; box-shadow: var(--shadow-secondary); }
.btn-c-secondary:hover { background: var(--secondary-dark); color: #fff; transform: translateY(-2px); }
.btn-c-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-c-outline:hover { background: var(--primary); color: #fff; }
.btn-c-ghost { background: rgba(255,255,255,.15); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25); }
.btn-c-ghost:hover { background: rgba(255,255,255,.28); color: #fff; }
.btn-c-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* --- Glass card --- */
.glass {
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: var(--radius);
}

/* --- Cards --- */
.card-c {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}
.card-c:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
    background: var(--primary-dark); color: rgba(255,255,255,.85);
    font-size: .84rem; padding: .5rem 0;
}
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--secondary); }
.topbar .divider { width: 1px; height: 16px; background: rgba(255,255,255,.2); }
.topbar-rating { color: var(--secondary); font-weight: 600; }

.site-header {
    position: sticky; top: 0; z-index: 1000; background: var(--white);
    box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.navbar-c { padding: 1rem 0; transition: padding var(--transition); gap: 1.5rem; }
.site-header.scrolled .navbar-c { padding: .6rem 0; }
.brand-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--primary); display: flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.brand-logo i { color: var(--secondary); }
.brand-logo span small { display: block; font-size: .62rem; font-weight: 500; color: var(--text-muted); letter-spacing: .04em; }

.nav-c { display: flex; align-items: center; gap: .1rem; margin: 0 auto; }
.nav-c > li { position: relative; }
.nav-c > li > a {
    color: var(--text); font-weight: 500; padding: .6rem .75rem; border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; gap: .3rem; white-space: nowrap; font-size: .93rem;
}
.nav-c > li > a:hover, .nav-c > li.active > a { color: var(--primary); background: rgba(15,61,145,.06); }

/* Mega menu */
.mega-menu {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px);
    width: 640px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 1.5rem; opacity: 0; visibility: hidden; transition: all var(--transition);
    border: 1px solid var(--border); z-index: 1001;
}
.nav-c > li:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.mega-item { display: flex; gap: .75rem; padding: .7rem; border-radius: var(--radius-sm); transition: background var(--transition); }
.mega-item:hover { background: var(--bg); }
.mega-item i { width: 40px; height: 40px; border-radius: 10px; background: rgba(15,61,145,.08); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mega-item .t { font-weight: 600; color: var(--text); font-size: .92rem; }
.mega-item .d { font-size: .78rem; color: var(--text-muted); }

/* Mobile nav */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary); }
.mobile-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw); background: #fff; z-index: 1100; transform: translateX(100%); transition: transform var(--transition); box-shadow: var(--shadow-lg); overflow-y: auto; padding: 1.5rem; }
.mobile-nav.open { transform: translateX(0); }
.mobile-backdrop { position: fixed; inset: 0; background: rgba(10,20,40,.5); z-index: 1099; opacity: 0; visibility: hidden; transition: all var(--transition); }
.mobile-backdrop.open { opacity: 1; visibility: visible; }
.mobile-nav a { display: block; padding: .85rem 0; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }

@media (max-width: 991px) {
    .nav-c, .header-cta-desktop { display: none; }
    .mobile-toggle { display: block; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative; min-height: 92vh; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
    color: #fff; overflow: hidden; padding: 3rem 0;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,138,0,.22), transparent 45%),
                radial-gradient(circle at 10% 90%, rgba(255,255,255,.08), transparent 40%);
}
.hero-shape {
    position: absolute; top: -120px; right: -120px; width: 480px; height: 480px;
    background: rgba(255,138,0,.12); border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%;
    filter: blur(10px); animation: morph 14s ease-in-out infinite;
}
@keyframes morph {
    0%,100% { border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%; }
    50% { border-radius: 58% 42% 40% 60% / 55% 55% 45% 45%; }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2); padding: .5rem 1rem; border-radius: 100px;
    font-size: .82rem; margin-bottom: 1.5rem; backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--secondary); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.12; margin-bottom: 1.25rem; font-weight: 800; }
.hero h1 .accent { color: var(--secondary); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.88); margin-bottom: 2rem; max-width: 540px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero stats card */
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-stat {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius); padding: 1.5rem; backdrop-filter: blur(12px); text-align: center;
}
.hero-stat .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .num .suf { color: var(--secondary); }
.hero-stat .lbl { font-size: .85rem; color: rgba(255,255,255,.82); margin-top: .35rem; }
.hero-stat i { font-size: 1.3rem; color: var(--secondary); margin-bottom: .5rem; }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1; }
.hero-wave svg { width: 100%; height: 70px; }

/* ==========================================================================
   SERVICES (Ehliyet Türleri)
   ========================================================================== */
.service-card { padding: 1.75rem; height: 100%; text-align: center; }
.service-icon {
    width: 68px; height: 68px; margin: 0 auto 1.15rem; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(15,61,145,.1), rgba(255,138,0,.1));
    color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
    transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: #fff; transform: rotate(-6deg); }
.service-card .code {
    display: inline-block; background: var(--secondary); color: #fff; font-weight: 700;
    font-size: .72rem; padding: .2rem .6rem; border-radius: 6px; margin-bottom: .5rem;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.service-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.service-link { color: var(--primary); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: .35rem; }
.service-link:hover { gap: .6rem; color: var(--secondary); }

/* ==========================================================================
   FEATURES (Neden Biz)
   ========================================================================== */
.feature-card { padding: 1.75rem; display: flex; gap: 1.1rem; height: 100%; }
.feature-ic {
    width: 54px; height: 54px; flex-shrink: 0; border-radius: var(--radius-sm);
    background: rgba(255,138,0,.12); color: var(--secondary);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.feature-card p { color: var(--text-muted); font-size: .89rem; margin: 0; }

/* Counter section */
.counter-section { background: var(--primary); color: #fff; }
.counter-box { text-align: center; padding: 1rem; }
.counter-box i { font-size: 2rem; color: var(--secondary); margin-bottom: .6rem; }
.counter-box .cnum { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; line-height: 1; }
.counter-box .clbl { color: rgba(255,255,255,.8); margin-top: .4rem; }

/* ==========================================================================
   TIMELINE (Eğitim Süreci)
   ========================================================================== */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(var(--primary), var(--secondary)); transform: translateX(-50%);
}
.timeline-item { position: relative; width: 50%; padding: 1rem 2.5rem; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-dot {
    position: absolute; top: 1.6rem; width: 46px; height: 46px; border-radius: 50%;
    background: #fff; border: 3px solid var(--primary); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; z-index: 2;
    box-shadow: var(--shadow-sm);
}
.timeline-item:nth-child(odd) .timeline-dot { right: -23px; }
.timeline-item:nth-child(even) .timeline-dot { left: -23px; }
.timeline-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm); }
.timeline-card .step-no { color: var(--secondary); font-weight: 700; font-size: .8rem; }
.timeline-card h3 { font-size: 1.1rem; margin: .2rem 0 .4rem; }
.timeline-card p { color: var(--text-muted); font-size: .88rem; margin: 0; }

@media (max-width: 767px) {
    .timeline::before { left: 22px; }
    .timeline-item, .timeline-item:nth-child(even) { width: 100%; left: 0; text-align: left; padding-left: 3.5rem; padding-right: 0; }
    .timeline-item:nth-child(odd) { text-align: left; }
    .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 0; right: auto; }
}

/* ==========================================================================
   VEHICLES / INSTRUCTORS / CAMPAIGNS / REVIEWS
   ========================================================================== */
.vehicle-card img, .instructor-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.vehicle-body { padding: 1.25rem; }
.vehicle-body h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.vehicle-specs { display: flex; flex-wrap: wrap; gap: .5rem; }
.vehicle-spec { font-size: .78rem; background: var(--bg); padding: .3rem .7rem; border-radius: 8px; color: var(--text-muted); display: inline-flex; align-items: center; gap: .3rem; }

.instructor-card { text-align: center; }
.instructor-photo { aspect-ratio: 1; border-radius: 50%; width: 130px; height: 130px; margin: 1.5rem auto .5rem; border: 4px solid var(--bg); }
.instructor-card h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.instructor-card .role { color: var(--secondary); font-size: .85rem; font-weight: 600; }
.instructor-card .exp { color: var(--text-muted); font-size: .82rem; margin: .3rem 0 .75rem; }
.instructor-social { display: flex; justify-content: center; gap: .5rem; padding-bottom: 1.5rem; }
.instructor-social a { width: 34px; height: 34px; border-radius: 50%; background: var(--bg); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.instructor-social a:hover { background: var(--primary); color: #fff; }

.campaign-card { position: relative; padding: 1.75rem; height: 100%; }
.campaign-badge { position: absolute; top: 1rem; right: 1rem; background: var(--danger); color: #fff; font-weight: 700; font-size: .78rem; padding: .3rem .75rem; border-radius: 8px; }
.campaign-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.campaign-price { display: flex; align-items: baseline; gap: .6rem; margin: .75rem 0; }
.campaign-price .new { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--primary); }
.campaign-price .old { text-decoration: line-through; color: var(--text-muted); }

.review-card { padding: 1.5rem; height: 100%; }
.review-stars { color: var(--secondary); margin-bottom: .75rem; }
.review-text { color: var(--text); font-size: .92rem; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.review-author .name { font-weight: 600; font-size: .9rem; }
.review-author .time { font-size: .78rem; color: var(--text-muted); }

/* ==========================================================================
   FAQ / CONTACT / FOOTER
   ========================================================================== */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: .75rem; overflow: hidden; }
.faq-q { padding: 1.15rem 1.4rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--text); }
.faq-q i { transition: transform var(--transition); color: var(--primary); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-a-inner { padding: 0 1.4rem 1.15rem; color: var(--text-muted); font-size: .92rem; }
.faq-search { position: relative; margin-bottom: 1.5rem; }
.faq-search input { width: 100%; padding: .9rem 1rem .9rem 2.75rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); }
.faq-search i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

.form-c label { font-weight: 500; font-size: .88rem; margin-bottom: .35rem; display: block; }
.form-c .form-control, .form-c .form-select { border-radius: var(--radius-sm); padding: .75rem 1rem; border: 1px solid var(--border); }
.form-c .form-control:focus, .form-c .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(15,61,145,.12); }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.contact-info-item i { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(255,138,0,.12); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }

.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.25rem; }
.site-footer a { color: rgba(255,255,255,.72); font-size: .9rem; }
.site-footer a:hover { color: var(--secondary); }
.footer-links li { margin-bottom: .6rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1); display: inline-flex; align-items: center; justify-content: center; margin-right: .5rem; }
.footer-social a:hover { background: var(--secondary); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding: 1.5rem 0; font-size: .85rem; }

/* Floating WhatsApp */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 8px 24px rgba(37,211,102,.4); z-index: 999; animation: wapulse 2s infinite; }
@keyframes wapulse { 0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); } 50% { box-shadow: 0 8px 24px rgba(37,211,102,.7); } }

/* AOS-like reveal fallback */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .6s, transform .6s; }
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   PAGE HERO (iç sayfalar)
   ========================================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff; padding: 3.5rem 0 3rem; position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; top: -80px; right: -60px; width: 300px; height: 300px;
    background: rgba(255,138,0,.14); border-radius: 50%; filter: blur(8px);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .5rem; position: relative; }
.breadcrumb-c { display: flex; gap: .5rem; align-items: center; font-size: .88rem; color: rgba(255,255,255,.8); position: relative; }
.breadcrumb-c a { color: rgba(255,255,255,.8); }
.breadcrumb-c a:hover { color: var(--secondary); }
.breadcrumb-c .sep { opacity: .5; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-card { height: 100%; display: flex; flex-direction: column; }
.blog-card-img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.blog-card-body { padding: 1.25rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-cat { color: var(--secondary); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.blog-card h3 { font-size: 1.12rem; margin: .4rem 0 .5rem; line-height: 1.35; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card .excerpt { color: var(--text-muted); font-size: .9rem; flex-grow: 1; }
.blog-meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--text-muted); margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.blog-meta i { color: var(--primary); }

.blog-sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.blog-sidebar-card h4 { font-size: 1rem; margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--secondary); display: inline-block; }
.cat-list a { display: flex; justify-content: space-between; padding: .55rem 0; color: var(--text); border-bottom: 1px solid var(--border); font-size: .92rem; }
.cat-list a:hover { color: var(--primary); padding-left: .35rem; }
.cat-list a .count { background: var(--bg); color: var(--text-muted); font-size: .75rem; padding: .1rem .55rem; border-radius: 20px; }

/* Blog single */
.article-cover { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; }
.article-body { font-size: 1.05rem; line-height: 1.85; color: #2a3448; }
.article-body h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.article-body h3 { font-size: 1.3rem; margin: 1.5rem 0 .75rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body img { border-radius: var(--radius-sm); margin: 1.5rem 0; }
.article-body ul, .article-body ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.article-body a { color: var(--primary); text-decoration: underline; }
.article-body blockquote { border-left: 4px solid var(--secondary); padding: .5rem 1.25rem; background: var(--bg); border-radius: 0 8px 8px 0; margin: 1.5rem 0; color: var(--text-muted); }

.tag-chip { display: inline-block; background: var(--bg); color: var(--text-muted); font-size: .82rem; padding: .35rem .85rem; border-radius: 20px; margin: .2rem; }
.tag-chip:hover { background: var(--primary); color: #fff; }

.share-btns { display: flex; gap: .5rem; flex-wrap: wrap; }
.share-btns a { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; transition: transform var(--transition); }
.share-btns a:hover { transform: translateY(-3px); color: #fff; }
.share-fb { background: #1877f2; }
.share-tw { background: #000; }
.share-wa { background: #25D366; }
.share-li { background: #0a66c2; }

/* Comments */
.comment { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.comment-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.comment .c-name { font-weight: 600; font-size: .95rem; }
.comment .c-date { font-size: .78rem; color: var(--text-muted); }
.comment .c-text { margin-top: .35rem; color: var(--text); font-size: .92rem; }
.comment-reply { margin-left: 3.5rem; }

/* ==========================================================================
   CALCULATORS (Hesaplama)
   ========================================================================== */
.calc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.calc-tabs { display: flex; gap: .5rem; margin-bottom: 2rem; background: var(--bg); padding: .35rem; border-radius: var(--radius-sm); }
.calc-tab { flex: 1; text-align: center; padding: .75rem; border-radius: 10px; font-weight: 600; cursor: pointer; color: var(--text-muted); border: none; background: transparent; transition: all var(--transition); }
.calc-tab.active { background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }
.calc-result { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; border-radius: var(--radius); padding: 1.75rem; text-align: center; margin-top: 1.5rem; }
.calc-result .amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; }
.calc-result .label { color: rgba(255,255,255,.85); font-size: .9rem; }
.calc-breakdown { margin-top: 1rem; }
.calc-breakdown .row-item { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .92rem; }
.calc-pane { display: none; }
.calc-pane.active { display: block; }

/* ==========================================================================
   FAZ 5 - PREMIUM İYİLEŞTİRMELER
   ========================================================================== */

/* Logo görsel */
.brand-logo-img { max-height: 52px; width: auto; object-fit: contain; }
@media (max-width: 575px) { .brand-logo-img { max-height: 42px; } }

/* Hero Slider */
.hero-slider-wrap { padding: 0; min-height: 88vh; }
.hero-swiper { width: 100%; min-height: 88vh; }
.hero-swiper .swiper-slide { position: relative; display: flex; align-items: center; min-height: 88vh; overflow: hidden; }
.hero-slide-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transform: scale(1.1); transition: transform 7s ease;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(10,28,75,.82) 0%, rgba(15,61,145,.55) 45%, rgba(15,61,145,.15) 100%);
}
.hero-slider-wrap .hero-content { position: relative; z-index: 3; width: 100%; padding: 2rem 0; }
.hero-slider-wrap h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.1; margin-bottom: 1.25rem; font-weight: 800; }
.hero-slider-wrap .hero-badge { animation: fadeInUp .6s .1s both; }
.hero-slider-wrap h1 { animation: fadeInUp .6s .25s both; }
.hero-slider-wrap .hero-sub { animation: fadeInUp .6s .4s both; }
.hero-slider-wrap .hero-actions { animation: fadeInUp .6s .55s both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

.hero-swiper-pagination { position: absolute; bottom: 90px; left: 0; right: 0; z-index: 4; display: flex; justify-content: center; gap: .5rem; }
.hero-swiper-pagination .swiper-pagination-bullet { width: 32px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.4); opacity: 1; transition: all .3s; }
.hero-swiper-pagination .swiper-pagination-bullet-active { background: var(--secondary); width: 48px; }
.hero-swiper-prev, .hero-swiper-next {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
    width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem;
    cursor: pointer; transition: all var(--transition);
}
.hero-swiper-prev { left: 24px; } .hero-swiper-next { right: 24px; }
.hero-swiper-prev:hover, .hero-swiper-next:hover { background: var(--secondary); border-color: var(--secondary); }
@media (max-width: 767px) { .hero-swiper-prev, .hero-swiper-next { display: none; } }

/* Success Story Cards */
.story-card { padding: 1.75rem; position: relative; }
.story-card::before {
    content: '\201C'; position: absolute; top: .5rem; right: 1.25rem;
    font-size: 4rem; color: var(--secondary); opacity: .18; font-family: Georgia, serif; line-height: 1;
}
.story-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.story-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--bg); }
.story-name { font-weight: 700; font-size: 1.05rem; }
.story-badge { display: inline-block; background: rgba(15,61,145,.1); color: var(--primary); font-size: .72rem; font-weight: 600; padding: .2rem .6rem; border-radius: 6px; margin-top: .25rem; }
.story-stars { color: var(--secondary); margin-bottom: .75rem; font-size: .9rem; }
.story-text { color: var(--text); font-size: .93rem; line-height: 1.65; font-style: italic; margin-bottom: 1rem; }
.story-date { font-size: .8rem; color: var(--text-muted); padding-top: .75rem; border-top: 1px solid var(--border); }

/* Map embed responsive */
.map-embed iframe { width: 100% !important; height: 100% !important; border: 0 !important; display: block; }

/* Premium hover geliştirmeleri */
.service-card, .feature-card, .story-card { transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s; }
.card-c:hover { box-shadow: 0 24px 60px rgba(15,61,145,.16); }

/* Buton parlama efekti */
.btn-c-secondary { position: relative; overflow: hidden; }
.btn-c-secondary::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    transition: left .6s;
}
.btn-c-secondary:hover::after { left: 130%; }

/* Bölüm geçiş yumuşatma */
.section { position: relative; }

/* Scroll-to-top */
.scroll-top {
    position: fixed; bottom: 24px; left: 24px; width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; z-index: 998; opacity: 0; visibility: hidden; transition: all var(--transition);
    cursor: pointer; border: none; box-shadow: var(--shadow);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ==========================================================================
   FAZ 6 - SOL SABİT SOSYAL BAR + PREMIUM
   ========================================================================== */
.social-sidebar {
    position: fixed; left: 0; top: 50%; transform: translateY(-50%);
    z-index: 997; display: flex; flex-direction: column; gap: 2px;
}
.social-sidebar a {
    width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.25rem; transition: all var(--transition); position: relative;
}
.social-sidebar a span {
    position: absolute; left: 46px; white-space: nowrap; background: inherit;
    padding: 0 1rem; height: 46px; display: flex; align-items: center;
    opacity: 0; visibility: hidden; transition: all var(--transition); font-size: .85rem; font-weight: 600;
}
.social-sidebar a:hover span { opacity: 1; visibility: visible; }
.social-sidebar .s-wa { background: #25D366; }
.social-sidebar .s-ig { background: #E4405F; }
.social-sidebar .s-fb { background: #1877F2; }
.social-sidebar .s-yt { background: #FF0000; }
.social-sidebar .s-tel { background: var(--primary); }
.social-sidebar a:first-child { border-top-right-radius: 10px; }
.social-sidebar a:last-child { border-bottom-right-radius: 10px; }
@media (max-width: 767px) { .social-sidebar { display: none; } }

/* Eğitim Süreci video/gif arka plan */
.process-bg-section { position: relative; overflow: hidden; }
.process-bg-media {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .12;
}
.process-bg-section .container-xl { position: relative; z-index: 2; }
.process-bg-section .timeline-card { background: rgba(255,255,255,.95); backdrop-filter: blur(4px); }

/* Başarı bölümü zemin ayrımı (gradient) */
#basari { background: linear-gradient(135deg, #eef3fc 0%, #f7f9fc 100%); }
#on-kayit { background: #ffffff; }

/* Header CTA buton kompakt */
.header-cta-desktop .btn-c { padding: .7rem 1.25rem; font-size: .9rem; white-space: nowrap; }
