/* ================================================
   ehliyetsinavi.net - Ana Stil Dosyası
   ================================================ */

:root {
    --primary: #1a56db;
    --primary-dark: #1e3a5f;
    --primary-light: #dbeafe;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --success: #16a34a;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.13);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.28s ease;
}

/* ======== GLOBAL ======== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: .5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.section-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: .7rem;
}

/* ======== BUTTONS ======== */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    display: inline-block;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,86,219,.35);
}

.btn-accent-custom {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
    display: inline-block;
}
.btn-accent-custom:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.7);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    display: inline-block;
}
.btn-outline-custom:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--white);
    color: var(--white);
}

/* ======== NAVBAR ======== */
.navbar-custom {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-custom.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.12);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.navbar-brand .logo-text {
    line-height: 1.1;
}

.navbar-brand .logo-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.navbar-brand .logo-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .5px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: .9rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 9px 22px !important;
    font-weight: 700 !important;
    transition: var(--transition);
}

.btn-nav-cta:hover {
    background: var(--accent-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(249,115,22,.4);
}

/* ======== HERO / SLIDER ======== */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 580px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slide-1 {
    background: linear-gradient(135deg, #1e3a5f 0%, #1a56db 60%, #3b82f6 100%);
}
.hero-slide-2 {
    background: linear-gradient(135deg, #14532d 0%, #16a34a 60%, #4ade80 100%);
}
.hero-slide-3 {
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 60%, #fb923c 100%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.3);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.08rem;
    color: rgba(255,255,255,.88);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-img-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-placeholder {
    width: 100%;
    max-width: 440px;
    height: 320px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    gap: 12px;
}

.hero-img-placeholder i {
    font-size: 5rem;
    opacity: .6;
}

.hero-img-placeholder p {
    font-size: .9rem;
    opacity: .7;
    margin: 0;
}

/* Slider Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: .5;
}

.carousel-indicators .active {
    opacity: 1;
    background: white;
}

/* ======== INTRO SECTION ======== */
.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.intro-img-wrap {
    position: relative;
}

.intro-img-card {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--primary-light), #bfdbfe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.intro-img-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    border-radius: 50%;
    opacity: .12;
}

.intro-stat {
    position: absolute;
    background: white;
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-stat.stat-1 { bottom: 30px; left: -20px; }
.intro-stat.stat-2 { top: 30px; right: -20px; }

.intro-stat .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.intro-stat .stat-icon.bg-primary-soft { background: var(--primary-light); color: var(--primary); }
.intro-stat .stat-icon.bg-accent-soft { background: #fff7ed; color: var(--accent); }

.intro-stat .stat-value { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.intro-stat .stat-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; }

/* ======== FEATURE CARDS ======== */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #3b82f6);
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.08);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: .93rem;
    margin: 0;
}

/* ======== TAKVİM ======== */
.calendar-section {
    padding: 80px 0;
    background: var(--white);
}

.month-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.month-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.month-card-header {
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: white;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.month-card-header .month-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.month-card-header h5 {
    color: white;
    font-weight: 700;
    margin: 0;
    font-size: 1.05rem;
}

.month-card-header small {
    color: rgba(255,255,255,.78);
    font-size: .8rem;
}

.month-card-body { padding: 20px; }

.exam-date-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: var(--bg-light);
    transition: var(--transition);
}

.exam-date-item:last-child { margin-bottom: 0; }

.exam-date-item:hover {
    background: var(--primary-light);
}

.exam-date-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
    font-weight: 700;
    flex-direction: column;
    line-height: 1;
}

.exam-date-icon span.day { font-size: 1rem; font-weight: 800; }
.exam-date-icon span.month-short { font-size: .58rem; font-weight: 600; opacity: .85; }

.exam-date-info .date-full { font-size: .92rem; font-weight: 600; color: var(--text-dark); }
.exam-date-info .date-day { font-size: .78rem; color: var(--text-muted); }

/* ======== CTA SECTION ======== */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .cta-content { position: relative; z-index: 2; }

.cta-icon {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255,255,255,.25);
}

.cta-section h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,.85);
    font-size: 1.08rem;
    max-width: 560px;
    margin: 0 auto 2rem;
}

/* ======== BLOG ======== */
.blog-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
}

.blog-card-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.15));
}

.blog-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--primary);
    color: white;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: .3px;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: .8rem;
    font-size: .8rem;
    color: var(--text-muted);
}

.blog-meta i { color: var(--primary); }

.blog-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .6rem;
    line-height: 1.4;
    flex: 1;
}

.blog-card-body h4 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-card-body h4 a:hover { color: var(--primary); }

.blog-card-body p {
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: 1rem;
}

.btn-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-read-more:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ======== FAQ ======== */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: .97rem;
    color: var(--text-dark) !important;
    background: var(--white) !important;
    padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
    background: var(--primary-light) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: none;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(33%) sepia(90%) saturate(500%) hue-rotate(200deg);
}

.accordion-body {
    padding: 18px 22px;
    color: var(--text-muted);
    font-size: .95rem;
    border-top: 1px solid var(--border);
}

/* ======== FOOTER ======== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.8);
    padding: 70px 0 0;
}

.footer-logo-wrap .logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-logo-wrap .site-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: .3rem;
}

.footer-logo-wrap p {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
}

.footer-heading {
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.2rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-links a i { color: var(--primary); font-size: .7rem; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-contact-item .icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    flex-shrink: 0;
    font-size: .9rem;
}

.footer-contact-item .text {
    font-size: .88rem;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
}

.footer-contact-item .label {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    display: block;
}

.footer-divider {
    border-color: rgba(255,255,255,.1);
    margin: 40px 0 0;
}

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

.footer-bottom p {
    margin: 0;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    transition: var(--transition);
    font-size: .9rem;
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ======== PAGE BANNER ======== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: white; font-size: 2rem; font-weight: 800; }
.page-banner .breadcrumb { margin: 0; }
.page-banner .breadcrumb-item { font-size: .88rem; }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ======== SİNAV TAKVİMİ SAYFASI ======== */
.takvim-section { padding: 60px 0; background: var(--bg-light); }

.month-filter-bar {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.month-filter-bar .filter-label {
    font-weight: 700;
    font-size: .88rem;
    color: var(--text-muted);
    margin-right: 6px;
}

.month-btn {
    padding: 7px 16px;
    border-radius: 50px;
    font-size: .83rem;
    font-weight: 600;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.month-btn:hover,
.month-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.takvim-month-group { margin-bottom: 40px; }

.takvim-month-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.takvim-month-title .month-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

.takvim-month-title h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 0;
}

.takvim-table {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.takvim-table table { margin: 0; }

.takvim-table thead th {
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: .88rem;
    padding: 14px 20px;
    border: none;
}

.takvim-table tbody td {
    padding: 14px 20px;
    font-size: .92rem;
    border-color: var(--border);
    vertical-align: middle;
}

.takvim-table tbody tr:hover { background: var(--bg-light); }

.sinav-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
}

/* ======== DENEME SINAVI SAYFASI ======== */
.sinav-section { padding: 60px 0; background: var(--bg-light); }

.sinav-info-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
}

.sinav-stat-box {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.sinav-stat-box:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.sinav-stat-box .stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.sinav-stat-box .stat-text {
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.category-sinav-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
}

.category-sinav-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.category-sinav-card .cat-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.category-sinav-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.category-sinav-card p {
    font-size: .83rem;
    color: var(--text-muted);
    margin: 0;
}

/* ======== BLOG SAYFASI ======== */
.blog-page-section { padding: 60px 0; background: var(--bg-light); }

.blog-sidebar-widget {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.blog-sidebar-widget h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: .8rem;
    border-bottom: 2px solid var(--primary-light);
    color: var(--primary-dark);
}

.recent-post-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.recent-post-item:last-child { border-bottom: none; }

.recent-post-img {
    width: 70px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.recent-post-info h6 {
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .2rem;
    line-height: 1.3;
}

.recent-post-info h6 a { color: var(--text-dark); }
.recent-post-info h6 a:hover { color: var(--primary); }

.recent-post-info span {
    font-size: .75rem;
    color: var(--text-muted);
}

.cat-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
}

.cat-list-item:last-child { border-bottom: none; }
.cat-list-item a { color: var(--text-dark); }
.cat-list-item a:hover { color: var(--primary); }
.cat-list-item .count {
    background: var(--primary-light);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 50px;
}

/* ======== BLOG DETAY ======== */
.blog-detail-section { padding: 60px 0; background: var(--bg-light); }

.blog-detail-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.blog-detail-header-img {
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
}

.blog-detail-content { padding: 40px; }

.blog-detail-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-detail-content .blog-meta-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: .85rem;
    color: var(--text-muted);
}

.blog-detail-content .blog-meta-detail i { color: var(--primary); }

.blog-detail-content .article-body {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.85;
}

.blog-detail-content .article-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: .8rem;
}

.blog-detail-content .article-body p { margin-bottom: 1.3rem; }

.blog-detail-content .article-body ul,
.blog-detail-content .article-body ol {
    margin-bottom: 1.3rem;
    padding-left: 1.5rem;
}

.blog-detail-content .article-body li { margin-bottom: .4rem; }

.tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.tag-badge {
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: .78rem;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.tag-badge:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ======== İLETİŞİM ======== */
.contact-section { padding: 60px 0; background: var(--bg-light); }

.contact-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.contact-info-item .c-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item .c-text h6 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .3rem;
}

.contact-info-item .c-text p {
    margin: 0;
    font-size: .95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-label {
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .4rem;
}

.form-control, .form-select {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: .93rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,86,219,.1);
}

/* ======== HERO GERÇEK GÖRSEL ======== */
.hero-img-real img {
    width: 100%;
    max-width: 460px;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.32);
    border: 3px solid rgba(255,255,255,.22);
    display: block;
    margin: 0 auto;
}

/* ======== TANITIM GERÇEK GÖRSEL ======== */
.intro-real-img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: block;
}

/* ======== BLOG KART GÖRSEL ======== */
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

/* ======== GEÇMİŞ SINAVLAR ======== */
.past-exams-section {
    padding: 80px 0;
    background: var(--white);
}

.past-month-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.past-month-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.past-month-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.past-month-header .pm-icon {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.past-month-header h5 {
    color: white;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
}

.past-month-header small {
    color: rgba(255,255,255,.72);
    font-size: .78rem;
}

.past-month-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.past-exam-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 11px;
    border-radius: 8px;
    background: var(--bg-light);
    text-decoration: none;
    transition: var(--transition);
    color: var(--text-dark);
}

.past-exam-item:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateX(3px);
}

.past-exam-date-box {
    background: var(--primary);
    color: white;
    border-radius: 7px;
    padding: 5px 7px;
    text-align: center;
    flex-shrink: 0;
    min-width: 44px;
    line-height: 1;
}

.past-exam-date-box .ed-day {
    font-size: .95rem;
    font-weight: 800;
    display: block;
}

.past-exam-date-box .ed-mon {
    font-size: .56rem;
    font-weight: 600;
    opacity: .82;
    display: block;
    margin-top: 2px;
}

.past-exam-info {
    flex: 1;
    min-width: 0;
}

.past-exam-info .ei-title {
    font-size: .86rem;
    font-weight: 600;
    color: inherit;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.past-exam-info .ei-meta {
    font-size: .74rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.past-exam-item .ei-arrow {
    color: var(--primary);
    font-size: .72rem;
    flex-shrink: 0;
    opacity: 0;
    transition: var(--transition);
}

.past-exam-item:hover .ei-arrow { opacity: 1; }

.exam-month-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 1px dashed #bfdbfe;
    margin-top: 2px;
}

.exam-month-more:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.exam-month-more i {
    font-size: .78rem;
    transition: var(--transition);
}

.exam-month-more:hover i { transform: translateX(3px); }

/* ======== RESPONSIVE ======== */
@media (max-width: 991.98px) {
    .hero-img-wrap { margin-top: 30px; }
    .intro-stat.stat-1 { left: 10px; }
    .intro-stat.stat-2 { right: 10px; }
    .section-title { font-size: 1.7rem; }
    .cta-section h2 { font-size: 1.8rem; }
}

@media (max-width: 767.98px) {
    .hero-slide { min-height: auto; }
    .hero-content { padding: 50px 0 30px; }
    .hero-title { font-size: 1.7rem; }
    .intro-section, .features-section, .calendar-section, .past-exams-section,
    .cta-section, .blog-section, .faq-section { padding: 60px 0; }
    .footer { padding: 50px 0 0; }
    .section-title { font-size: 1.5rem; }
    .intro-stat { display: none; }
    .page-banner { padding: 44px 0; }
    .page-banner h1 { font-size: 1.5rem; }
    .blog-detail-header-img { height: 220px; }
    .blog-detail-content { padding: 24px; }
    .blog-detail-content h1 { font-size: 1.4rem; }
    .month-filter-bar { padding: 14px; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 1.5rem; }
    .hero-desc { font-size: .95rem; }
    .btn-primary-custom, .btn-accent-custom, .btn-outline-custom {
        padding: 10px 22px;
        font-size: .88rem;
    }
    .sinav-info-card { padding: 24px; }
}
