:root {
    --primary: #1B3358;
    --primary-light: #2d4a7c;
    --primary-soft: rgba(27, 51, 88, 0.08);
    --accent: #D62828;
    --accent-soft: rgba(214, 40, 40, 0.1);
    --bg-light: #F5F7FA;
    --bg-page: #f0f4f8;
    --text-dark: #1e293b;
    --text-body: #334155;
    --text-muted: #64748b;
    --border-soft: #e2e8f0;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --transition: 0.2s ease;
}

body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--bg-light); }

.btn-primary, .bg-primary { background-color: var(--primary) !important; border-color: var(--primary) !important; }
.btn-primary:hover { background-color: var(--primary-light) !important; border-color: var(--primary-light) !important; }
.btn-outline-primary { color: var(--primary) !important; border-color: var(--primary) !important; }
.btn-outline-primary:hover { background-color: var(--primary) !important; color: #fff !important; }
.text-primary { color: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }
.badge-warning { background-color: var(--accent) !important; color: #fff !important; border-color: var(--accent) !important; }
.badge-danger, .bg-danger { background-color: var(--accent) !important; border-color: var(--accent) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.border { border-color: var(--border-soft) !important; }

.topbar-duyuru {
    background: var(--primary);
    color: #fff;
    padding: 8px 15px;
    text-align: center;
    font-size: 0.9rem;
}
.topbar-duyuru a { color: #fff; text-decoration: none; }
.topbar-duyuru-link { display: flex; align-items: center; justify-content: center; gap: 8px; }
.topbar-duyuru-static { display: flex; align-items: center; justify-content: center; gap: 8px; }
.topbar-duyuru-text { max-width: 900px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    margin-bottom: 0;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.header-main { padding: 0; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 0;
    min-height: 64px;
}
.header-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    transition: opacity 0.2s ease;
}
.header-logo:hover { color: var(--primary) !important; opacity: 0.9; }
.header-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(27,51,88,0.25);
}
.header-logo-text { white-space: nowrap; }
.header-nav { flex: 1; display: flex; justify-content: center; max-width: 480px; margin: 0 auto; }
.header-menu {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.header-menu li a {
    display: inline-block;
    padding: 10px 16px;
    color: var(--text-body) !important;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}
.header-menu li a:hover { background: var(--primary-soft); color: var(--primary) !important; }

.header-actions { display: flex; flex-wrap: nowrap; align-items: center; gap: 10px; }
.header-actions > * { white-space: nowrap; }
.header-toggle {
    width: 44px; height: 44px;
    border: none;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease;
}
.header-toggle:hover { background: rgba(27,51,88,0.15); }
.header-cart {
    position: relative;
    color: var(--text-dark);
    font-size: 1.2rem;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease;
}
.header-cart:hover { background: var(--primary-soft); color: var(--primary) !important; }
.header-cart-count {
    position: absolute; top: 4px; right: 4px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-btn {
    padding: 9px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.header-btn--outline { border: 1.5px solid var(--primary); color: var(--primary) !important; }
.header-btn--outline:hover { background: var(--primary); color: #fff !important; }
.header-btn--register { background: #059669; color: #fff !important; }
.header-btn--register:hover { background: #047857; color: #fff !important; }
.header-btn--login { background: var(--primary); color: #fff !important; }
.header-btn--login:hover { background: var(--primary-light); color: #fff !important; }

.header-mobile { background: #f8fafc; border-top: 1px solid var(--border-soft); }
.header-mobile-inner { padding: 12px 0; }
.header-mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 1rem;
    color: var(--text-dark) !important;
    font-weight: 500;
    text-decoration: none !important;
    transition: background 0.15s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
}
.header-mobile-link i { width: 22px; color: var(--text-muted); }
.header-mobile-link:hover { background: rgba(27,51,88,0.06); }
.header-mobile-link--danger:hover { color: var(--accent) !important; }
.header-mobile-link--danger:hover i { color: var(--accent); }
.header-mobile-logout { margin: 0; padding: 0; }
@media (max-width: 991px) {
    .header-inner { gap: 12px; min-height: 56px; }
    .header-logo-text { font-size: 1.05rem; }
    .header-logo-icon { width: 38px; height: 38px; font-size: 1rem; }
}

.site-main { min-height: 60vh; width: 100%; max-width: 100%; margin: 0; padding: 0; }
.site-main--inner { padding-top: 5rem; }
.site-main--home { padding-top: 0; }
.site-main--inner .container { margin-left: auto; margin-right: auto; }

.hero-boens { position: relative; padding: 10rem 0 2rem; background: #f8fafc; overflow: visible; }
.hero-bg.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: stretch; min-height: 520px; }
.hero-left { display: flex; flex-direction: column; justify-content: center; min-height: 500px; }
.hero-left-title { font-size: 2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.hero-left-intro-text { font-size: 1.35rem; font-weight: 600; color: var(--text-dark); margin: 0 0 0.5rem 0; min-height: 2em; }
.typewriter-cursor { animation: typewriterBlink 0.8s step-end infinite; color: var(--primary); }
@keyframes typewriterBlink { 50% { opacity: 0; } }
.hero-left-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.hero-left-btn { display: inline-block; align-self: flex-start; padding: 8px 14px; font-size: 0.85rem; font-weight: 600; color: #fff; background: var(--primary); border-radius: 8px; text-decoration: none !important; }
.hero-left-btn:hover { background: var(--primary-light); color: #fff !important; }

.hero-slider-wrap { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.hero-slide-default { background: linear-gradient(135deg, var(--bg-light) 0%, #e8ecf0 50%, var(--bg-light) 100%); }
.hero-slider-placeholder { min-height: 500px; }
.hero-slider { position: relative; height: 100%; min-height: 500px; overflow: hidden; }
.hero-slider-track { position: relative; width: 100%; height: 100%; min-height: 500px; }
.hero-slider .hero-slide { position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; visibility: hidden; transition: opacity 0.28s ease-out, visibility 0.28s; z-index: 0; }
.hero-slider .hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; }
.hero-slide-link { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 2; }
.hero-slider-btn { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border: none; border-radius: 50%; background: rgba(0,0,0,0.35); color: #fff; cursor: pointer; opacity: 0; transition: opacity 0.2s ease, background 0.2s ease; display: flex; align-items: center; justify-content: center; }
.hero-slider-wrap:hover .hero-slider-btn { opacity: 1; }
.hero-slider-prev { left: 12px; }
.hero-slider-next { right: 12px; }
.hero-slider-btn span { width: 10px; height: 10px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; }
.hero-slider-prev span { transform: rotate(45deg); margin-left: 4px; }
.hero-slider-next span { transform: rotate(-135deg); margin-right: 4px; }
.hero-slider-dots { position: absolute; z-index: 3; bottom: 16px; left: 50%; transform: translateX(-50%); list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; }
.hero-slider-dots button { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.85); background: rgba(255,255,255,0.5); padding: 0; cursor: pointer; transition: transform 0.2s ease, background 0.2s ease; }
.hero-slider-dots button.is-active { background: #fff; transform: scale(1.2); }

.hero-features-section .row { flex-wrap: nowrap; }
.hero-feature-item { flex: 1 1 0; min-width: 0; text-align: center; padding: 0.5rem; }
.hero-feature-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.5rem; }
.hero-feature-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.hero-feature-desc { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.4; }

.packages-section .card { transition: transform 0.3s ease; }
.packages-section .card:hover { transform: translateY(-4px); }

.testimonial-card { border: 1px solid rgba(0,0,0,.08); border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important; }
.testimonial-stars { font-size: 1rem; letter-spacing: 2px; }
.testimonial-author { color: var(--text-muted); font-size: 0.9rem; }

.site-footer { background: var(--primary); color: rgba(255,255,255,0.8); margin-top: 5rem; }
.footer-main { padding: 3rem 0 2rem; }
.footer-logo { display: inline-block; font-size: 1.25rem; font-weight: 700; color: #fff !important; text-decoration: none; margin-bottom: 8px; }
.footer-tagline { font-size: 0.9rem; opacity: 0.8; margin: 0; }
.footer-title { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary-light); }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8) !important; text-decoration: none; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--accent); color: #fff !important; }
.footer-payment-logos { display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center; margin-top: 1.25rem; }
.footer-payment-logo { display: inline-flex; align-items: center; color: rgba(255,255,255,0.85); font-size: 0.72rem; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px 24px; justify-content: center; margin-bottom: 1rem; }
.footer-legal a { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-decoration: none; }
.footer-copy { color: rgba(255,255,255,0.6); font-size: 0.9rem; text-align: center; margin: 0; }

@media (max-width: 991px) {
    .site-header { margin-bottom: 0; }
    .hero-grid { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { order: 2; min-height: auto; padding: 2rem 0; }
    .hero-left-title { font-size: 1.6rem; }
    .hero-slider-wrap { order: 1; }
    .hero-slider, .hero-slider-track, .hero-slider .hero-slide { min-height: 380px; }
    .hero-slider-placeholder { min-height: 380px; }
    .hero-features-section .row { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .hero-feature-item { flex: 0 0 140px; min-width: 140px; }
    .hero-feature-desc { font-size: 0.7rem; }
}
@media (min-width: 992px) {
    .site-main--inner { padding-top: 5.5rem; }
}

/* ========== UI/UX Design System ========== */
body { background: var(--bg-page); color: var(--text-body); }
.site-main .container { max-width: 1200px; }

/* Page structure */
.page-header { margin-bottom: 1.75rem; }
.page-title { font-size: 1.75rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; letter-spacing: -0.02em; }
.page-subtitle { color: var(--text-muted); font-size: 1rem; margin: 0; }

/* Cards */
.card { border: 1px solid var(--border-soft); border-radius: var(--radius); box-shadow: var(--shadow); transition: box-shadow var(--transition), transform var(--transition); }
.card:hover { box-shadow: var(--shadow-md); }
.card-header { background: #fff; border-bottom: 1px solid var(--border-soft); font-weight: 600; color: var(--text-dark); padding: 0.9rem 1.25rem; border-radius: var(--radius) var(--radius) 0 0; }
.card-body { padding: 1.25rem; }
.card--elevated { box-shadow: var(--shadow-md); }
.card--elevated:hover { box-shadow: var(--shadow-lg); }
.card--clickable { cursor: pointer; }
.card--clickable:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

/* Buttons */
.btn { border-radius: var(--radius-sm); font-weight: 500; padding: 0.5rem 1rem; transition: all var(--transition); }
.btn-lg { padding: 0.65rem 1.35rem; border-radius: var(--radius); }
.btn-sm { padding: 0.35rem 0.75rem; font-size: 0.875rem; }
.btn-primary { box-shadow: 0 1px 2px rgba(27,51,88,0.2); }
.btn-primary:hover { box-shadow: 0 4px 12px rgba(27,51,88,0.3); transform: translateY(-1px); }
.btn-outline-primary:hover { transform: translateY(-1px); }

/* Forms */
.form-control, select.form-control { border-radius: var(--radius-sm); border-color: var(--border-soft); padding: 0.5rem 0.75rem; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.form-group label { font-weight: 500; color: var(--text-dark); margin-bottom: 0.35rem; }
.form-check-label { font-weight: 400; }

/* Alerts */
.alert { border: none; border-radius: var(--radius); padding: 1rem 1.25rem; }
.alert-success { background: #ecfdf5; color: #065f46; }
.alert-danger { background: #fef2f2; color: #991b1b; }
.alert-info { background: #eff6ff; color: #1e40af; }

/* Breadcrumb */
.breadcrumb { background: transparent; padding: 0; font-size: 0.9rem; }
.breadcrumb-item a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-dark); font-weight: 500; }

/* Tables */
.table { color: var(--text-body); }
.table thead th { border-bottom: 2px solid var(--border-soft); font-weight: 600; color: var(--text-dark); padding: 0.75rem 1rem; }
.table td { padding: 0.75rem 1rem; vertical-align: middle; }
.table-bordered { border-radius: var(--radius); overflow: hidden; }
.table-bordered thead th { background: var(--bg-light); }
.table-hover tbody tr:hover { background: var(--primary-soft); }

/* List groups */
.list-group-item { border-color: var(--border-soft); padding: 0.65rem 1rem; }
.list-group-item-action:hover { background: var(--primary-soft); }
.list-group-item.active { background: var(--primary); border-color: var(--primary); }

/* Badges */
.badge { font-weight: 500; padding: 0.35em 0.65em; border-radius: 6px; }

/* Nav tabs */
.nav-tabs { border-bottom: 2px solid var(--border-soft); }
.nav-tabs .nav-link { border: none; border-bottom: 3px solid transparent; color: var(--text-muted); font-weight: 500; padding: 0.75rem 1rem; margin-bottom: -2px; border-radius: 0; }
.nav-tabs .nav-link:hover { color: var(--primary); }
.nav-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); background: transparent; }

/* Section spacing */
.section-py { padding-top: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .section-py { padding-top: 3.5rem; padding-bottom: 3.5rem; } }

/* Çalışma paketleri listesi: seçilen renk sadece kart çerçevesinde (border-top) */
.package-list-card .package-rozet {
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ========== GYS Adalet Ana Sayfa Tasarımı (görsele uygun) ========== */

/* Header: GYSAdalet logo — G ve S kırmızı, YAdalet siyah */
.site-header--gys .header-logo--gys {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-decoration: none !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.header-logo-gs { color: #D62828 !important; }
.header-logo-rest { color: #1a1a1a !important; }
.site-header--gys .header-logo--gys:hover .header-logo-gs { color: #b91c1c !important; }
.site-header--gys .header-logo--gys:hover .header-logo-rest { color: #000 !important; }
.header-menu--gys li a.active { color: var(--primary) !important; border-bottom: 2px solid var(--primary); }
.header-search-wrap { margin-right: 8px; }
.header-search-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    text-decoration: none !important;
    background: #f8fafc;
}
.header-search-link:hover { border-color: var(--primary); color: var(--primary) !important; background: #fff; }
.header-search-link i { color: var(--text-muted); }
.header-btn--cta {
    background: var(--accent) !important;
    color: #fff !important;
    border: none;
}
.header-btn--cta:hover { background: #b91c1c !important; color: #fff !important; }

/* Hero GYS: blur arka plan, beyaz metin, 2 buton */
.hero-gys {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}
.hero-gys-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a2d4a;
}
/* Sol tarafta yazı alanı için koyu mavi yarı saydam overlay, sağda görsel net kalır */
.hero-gys-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(26, 45, 74, 0.88) 0%, rgba(26, 45, 74, 0.5) 50%, transparent 75%);
    z-index: 1;
}
.hero-gys-inner { position: relative; z-index: 2; }
.hero-gys-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}
.hero-gys-title br { display: block; }
@media (min-width: 768px) { .hero-gys-title { font-size: 2.5rem; line-height: 1.3; } }
.hero-gys-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    max-width: 480px;
}
.hero-gys-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-gys-btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}
.hero-gys-btn:hover { transform: translateY(-2px); color: #fff !important; }
.hero-gys-btn--red { background: var(--accent) !important; color: #fff !important; }
.hero-gys-btn--red:hover { box-shadow: 0 6px 20px rgba(214,40,40,0.4); }
.hero-gys-btn--blue { background: var(--primary) !important; color: #fff !important; }
.hero-gys-btn--blue:hover { box-shadow: 0 6px 20px rgba(27,51,88,0.4); }

/* Bölüm başlıkları */
.section-gys { padding-top: 3rem; padding-bottom: 3rem; }
.section-gys-title { font-size: 1.75rem; font-weight: 700; color: var(--text-dark); }
.section-gys-title--dark { color: #1a2d4a; }
.section-gys-lead { font-size: 1.05rem; color: var(--text-body); margin-bottom: 1.25rem; }

/* 4 özellik kartı */
.feature-card-gys {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
.feature-card-gys:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
.feature-card-gys-top {
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 140px;
    overflow: hidden;
    background: #f1f5f9;
}
.feature-card-gys-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.feature-card-gys-body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.feature-card-gys-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.feature-card-gys-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; flex: 1; }
.feature-card-gys-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary) !important;
    text-decoration: none !important;
}
.feature-card-gys-link:hover { color: var(--primary-light) !important; }
.feature-card-gys-link i { font-size: 0.75em; margin-left: 4px; }

/* Sınava Dair Her Şey */
.sinava-dair-item {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    height: 100%;
}
.sinava-dair-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.sinava-dair-item-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; }
.sinava-dair-item-desc { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.4; }

/* Mini Deneme görsel */
.mini-deneme-visual {
    background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(45,90,135,0.08) 100%);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 2rem;
    display: inline-block;
}
.mini-deneme-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.mini-deneme-visual-title { font-size: 1.25rem; font-weight: 700; color: var(--accent); margin-bottom: 0.5rem; }
.mini-deneme-visual-desc { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* İstatistikler */
.section-stats { background: #fff; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.stat-gys-number { font-size: 1.75rem; font-weight: 700; color: var(--primary); }
@media (min-width: 768px) { .stat-gys-number { font-size: 2.25rem; } }
.stat-gys-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }

/* SSS accordion */
.faq-accordion-gys .card { border: 1px solid var(--border-soft); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-card-gys-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.2s;
}
.faq-card-gys-header:hover { background: #f8fafc; }
.faq-card-gys-header[aria-expanded="false"] .faq-card-gys-chevron { transform: rotate(-90deg); }
.faq-card-gys-chevron { transition: transform 0.25s; color: var(--text-muted); font-size: 0.85rem; }
.faq-card-gys .card-body { padding: 1rem 1.25rem; color: var(--text-body); font-size: 0.95rem; line-height: 1.6; border-top: 1px solid var(--border-soft); }

/* Müşteri Memnuniyeti: baloncuk animasyonu + yorum kartları */
.section-testimonials {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #e8eef5 0%, #dde5f0 35%, #f0f4fa 100%);
}
.testimonials-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.testimonials-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(27, 51, 88, 0.06);
    animation: testimonial-bubble-float 18s ease-in-out infinite;
}
.testimonials-bubble--1 { width: 120px; height: 120px; left: 5%; top: 10%; animation-delay: 0s; animation-duration: 20s; }
.testimonials-bubble--2 { width: 80px; height: 80px; left: 18%; top: 60%; animation-delay: -4s; animation-duration: 16s; background: rgba(214, 40, 40, 0.05); }
.testimonials-bubble--3 { width: 160px; height: 160px; right: 8%; top: 15%; animation-delay: -8s; animation-duration: 22s; }
.testimonials-bubble--4 { width: 60px; height: 60px; right: 25%; top: 55%; animation-delay: -2s; animation-duration: 14s; background: rgba(214, 40, 40, 0.06); }
.testimonials-bubble--5 { width: 100px; height: 100px; left: 40%; top: 5%; animation-delay: -6s; animation-duration: 19s; }
.testimonials-bubble--6 { width: 70px; height: 70px; right: 12%; bottom: 20%; animation-delay: -10s; animation-duration: 17s; }
.testimonials-bubble--7 { width: 90px; height: 90px; left: 8%; bottom: 15%; animation-delay: -3s; animation-duration: 21s; background: rgba(27, 51, 88, 0.05); }
.testimonials-bubble--8 { width: 50px; height: 50px; left: 55%; bottom: 25%; animation-delay: -7s; animation-duration: 15s; }
.testimonials-bubble--9 { width: 130px; height: 130px; right: 35%; top: 35%; animation-delay: -5s; animation-duration: 24s; opacity: 0.7; }
.testimonials-bubble--10 { width: 45px; height: 45px; left: 30%; top: 75%; animation-delay: -12s; animation-duration: 13s; background: rgba(214, 40, 40, 0.04); }
@keyframes testimonial-bubble-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(15px, -20px) scale(1.05); }
    50% { transform: translate(-10px, 15px) scale(0.98); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}
.testimonials-static,
.testimonials-user-section { position: relative; z-index: 1; }
.testimonial-card-gys {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.2s;
}
.testimonial-card-gys:hover {
    box-shadow: 0 8px 28px rgba(27, 51, 88, 0.1);
    transform: translateY(-3px);
    border-color: rgba(27, 51, 88, 0.15);
}
.testimonial-card-gys-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}
.testimonial-card-gys-stars i { margin-right: 1px; }
.testimonial-card-gys-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}
.testimonial-card-gys-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.testimonial-card-gys-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-card-gys-author strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-card-gys-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-card-gys--user .testimonial-card-gys-text { margin-bottom: 1rem; }

/* Footer GYS: E-Bülten, sosyal ikonlar */
.site-footer--gys .footer-main { padding: 2.5rem 0 2rem; }
.footer-links--contact li { display: flex; align-items: center; gap: 8px; }
.footer-links--contact i { width: 18px; color: rgba(255,255,255,0.7); }
.footer-social--gys { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social--gys a {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.footer-social--gys a:hover { transform: scale(1.1); opacity: 0.9; }
.footer-social--gys a:nth-child(1) { background: #1877f2; }
.footer-social--gys a:nth-child(2) { background: #1da1f2; }
.footer-social--gys a:nth-child(3) { background: #ff0000; }
.footer-social--gys a:nth-child(4) { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-newsletter { display: flex; gap: 8px; max-width: 320px; }
.footer-newsletter-input { flex: 1; border-radius: 8px; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: #fff; }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.footer-newsletter-input:focus { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: #fff; }
.footer-newsletter-btn { background: var(--accent) !important; color: #fff !important; border: none; border-radius: 8px; font-weight: 600; white-space: nowrap; }
.footer-newsletter-btn:hover { background: #b91c1c !important; color: #fff !important; }
.footer-logo--gys { display: inline-flex; align-items: baseline; font-size: 1.35rem; font-weight: 700; text-decoration: none; letter-spacing: -0.02em; }
.site-footer--gys .footer-logo-gs { color: #D62828 !important; }
.site-footer--gys .footer-logo-rest { color: #fff !important; }
.site-footer--gys .footer-logo--gys:hover .footer-logo-gs { color: #b91c1c !important; }
.site-footer--gys .footer-logo--gys:hover .footer-logo-rest { color: rgba(255,255,255,0.95) !important; }
.footer-tagline { font-size: 0.85rem; line-height: 1.4; max-width: 220px; }
.site-footer--gys .footer-about { color: rgba(255,255,255,0.88); font-size: 0.875rem; line-height: 1.55; margin: 0; max-width: 100%; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.footer-webrek { color: rgba(255,255,255,0.7); text-decoration: none; margin-left: 0.25rem; }
.footer-webrek:hover { color: #fff; text-decoration: underline; }
