/* ============================================
   RAD-R SOFT - Kurumsal Web Sitesi
   Ana Stil Dosyası
   ============================================ */

/* ---------- CSS Değişkenler ---------- */
:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #e8f0fe;
    --secondary: #5f6368;
    --accent: #0d47a1;
    --success: #34a853;
    --warning: #fbbc04;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #f1f3f4;
    --text-dark: #202124;
    --text-medium: #5f6368;
    --text-light: #80868b;
    --border-color: #e8eaed;
    --shadow-sm: 0 1px 3px rgba(60,64,67,0.08);
    --shadow-md: 0 4px 12px rgba(60,64,67,0.1);
    --shadow-lg: 0 8px 24px rgba(60,64,67,0.12);
    --shadow-xl: 0 12px 40px rgba(60,64,67,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --transition: all 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--primary-dark);
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-medium);
    line-height: 1.8;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* ---------- Navbar ---------- */
.navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    transition: var(--transition);
    z-index: 1050;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}
.navbar-brand img {
    height: 36px;
    width: auto;
}
.navbar-brand .brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    line-height: 1;
}
.navbar-brand .brand-name span {
    color: var(--primary);
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-medium);
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

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

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.btn-nav-demo {
    background: var(--primary);
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    transition: var(--transition);
}

.btn-nav-demo:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26,115,232,0.3);
}

.language-switcher {
    position: relative;
}

.language-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    min-width: 72px;
    height: 38px;
    padding: 8px 12px !important;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text-dark) !important;
    font-size: 0.86rem !important;
    font-weight: 700 !important;
}

.language-toggle::after {
    margin-left: auto;
    color: var(--text-light);
}

.language-toggle:hover,
.language-toggle.show {
    border-color: rgba(26,115,232,0.28);
    background: var(--primary-light);
    color: var(--primary) !important;
}

.language-toggle i {
    font-size: 0.95rem;
    color: var(--primary);
}

.language-menu {
    min-width: 168px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 600;
}

.language-option:hover,
.language-option.active {
    background: var(--primary-light);
    color: var(--primary);
}

.language-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 24px;
    border-radius: 5px;
    background: var(--bg-section);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 800;
}

.language-option.active .language-code,
.language-option:hover .language-code {
    background: #fff;
    color: var(--primary);
}

/* ---------- Hero ---------- */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 50%, #f0f4ff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,115,232,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,115,232,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 560px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ---------- Butonlar ---------- */
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,115,232,0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,115,232,0.3);
}

.btn-white-custom {
    background: #fff;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white-custom:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ---------- Bölüm Aralıkları ---------- */
.section-padding {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-section);
}

.section-bg-white {
    background-color: var(--bg-white);
}

/* ---------- Özellik Kartları ---------- */
.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    background: var(--primary-light);
    color: var(--primary);
}

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

.feature-card p {
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- İstatistik Kartları ---------- */
.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* ---------- Süreç / Akış ---------- */
.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1.25rem;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
}

.process-connector {
    position: absolute;
    top: 3.5rem;
    right: -15%;
    width: 30%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
}

/* ---------- Dashboard Önizleme ---------- */
.dashboard-preview {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.dashboard-preview img {
    width: 100%;
    display: block;
}

.dashboard-placeholder {
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 100%);
    padding: 60px 40px;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border-color);
}

.dashboard-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.dashboard-placeholder p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---------- Rapor Kartları ---------- */
.report-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

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

.report-card-img {
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 100%);
    padding: 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-card-img i {
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.7;
}

.report-card-body {
    padding: 1.5rem;
}

.report-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.report-card-body p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---------- KVKK Güven Alanı ---------- */
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.trust-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #e6f4ea;
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.trust-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---------- CTA Bölümü ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-section h2 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ---------- İletişim Formu ---------- */
.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.contact-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-info-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-info-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---------- Blog Kartları ---------- */
.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

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

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

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

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

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

.blog-card-body p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ---------- Blog Detay ---------- */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-content .blog-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-content .blog-body p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.blog-content .blog-body h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-content .blog-body h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-content .blog-body img {
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.blog-content .blog-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--primary-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-content .blog-body blockquote p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-style: italic;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #1a1d23;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.site-footer h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.site-footer p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    margin-right: 0.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* ---------- Page Header ---------- */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 50%, #f0f4ff 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.88rem;
}

.breadcrumb-custom a {
    color: var(--text-medium);
}

.breadcrumb-custom span {
    color: var(--text-light);
}

.breadcrumb-custom .current {
    color: var(--primary);
    font-weight: 500;
}

/* ---------- Hakkımızda ---------- */
.about-value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

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

.about-value-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
    background: var(--primary-light);
    color: var(--primary);
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 2rem;
    border-left: 2px solid var(--border-color);
}

.timeline-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timeline-item .year {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-item p {
    font-size: 0.9rem;
}

/* ---------- Harita Placeholder ---------- */
.map-placeholder {
    background: var(--bg-section);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---------- Animasyonlar ---------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ---------- Çizgi Ayrımı ---------- */
.divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

/* ---------- Hakkımızda Sayı Alanı ---------- */
.about-stats {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: #fff;
}

.about-stats .stat-number {
    color: #fff;
}

.about-stats .stat-label {
    color: rgba(255,255,255,0.8);
}

/* ---------- Responsif ---------- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .section-padding {
        padding: 60px 0;
    }

    .process-connector {
        display: none;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .language-switcher {
        margin: 0.25rem 0;
    }

    .language-toggle {
        width: 100%;
        justify-content: flex-start;
    }

    .language-menu {
        width: 100%;
        margin-top: 6px;
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 20px;
        font-size: 0.88rem;
    }
}

/* ---------- Yardımcı Sınıflar ---------- */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-light { background: var(--primary-light) !important; }
.fw-800 { font-weight: 800 !important; }
.letter-spacing-1 { letter-spacing: 1px; }
.border-primary-custom { border-color: var(--primary) !important; }
