﻿/* ============================================
   CSS Variables & Foundation
   ============================================ */
:root {
    /* Colors - Clean Professional Theme */
    --primary-white: #ffffff;
    --primary-black: #000000;
    --primary-gray: #f5f5f5;
    --secondary-gray: #e5e5e5;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #999999;
    /* Brand Color - Used Sparingly (10%) */
    --brand-blue: #023173;
    --brand-blue-light: rgba(2, 49, 115, 0.1);
    --brand-blue-medium: rgba(2, 49, 115, 0.2);
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #023173 0%, #034a9e 100%);
    --gradient-gray: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    --gradient-dark: linear-gradient(135deg, #333333 0%, #000000 100%);
    /* Glass Effect */
    --glass-bg: rgba(0, 0, 0, 0.02);
    --glass-border: rgba(0, 0, 0, 0.08);
    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-muted: #999999;
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --gradient-primary-start: #023173;
    --gradient-primary-end: #034a9e;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--primary-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* ❗ space-between KALDIRILDI */
    gap: 90px; /* logo ile menü arası mesafe */
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all var(--transition-fast);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 🔹 Menü sola yaslansın */
    gap: var(--spacing-md);
}


.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color var(--transition-fast);
    position: relative;
}

    .nav-link:hover {
        color: var(--text-primary);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: width var(--transition-normal);
    }

    .nav-link:hover::after {
        width: 100%;
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all var(--transition-normal);
    }

/* ============================================
   Buttons
   ============================================ */
.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--brand-blue);
    color: var(--primary-white);
    box-shadow: 0 4px 12px rgba(2, 49, 115, 0.2);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(2, 49, 115, 0.3);
        background: #034a9e;
    }

.btn-secondary {
    background: var(--primary-white);
    color: var(--text-primary);
    border: 2px solid var(--dark-gray);
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover {
        background: var(--dark-gray);
        color: var(--primary-white);
        transform: translateY(-2px);
    }

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 85%, #ffffff 100%), linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3)), url('/images/hero_abstract_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

@keyframes float {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.1em;
    letter-spacing: 0.02em;
    display: inline-block;
    position: relative;
}

    .hero-highlight::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        border-radius: 2px;
        opacity: 0.3;
    }

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Feature Cards */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features-myk {
    display: flex;
    justify-content: center; /* yatay ortalama */
    align-items: center; /* dikey hizalama (gerekirse) */
    gap: 20px; /* kartlar arası boşluk */
    flex-wrap: wrap; /* küçük ekranlarda alt satıra geçsin */
}

.feature-card-myk {
    width: 255px;
    height: auto;
    min-height: 231px !important;
}

.h6 {
    font-size: 0.9rem;
    color: black;
}

.feature-card {
    background: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }

    .feature-card:hover::before {
        left: 100%;
    }

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

    .feature-icon .material-icons {
        font-size: 32px;
        color: #023173;
    }

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-fast);
}

.feature-card:hover .feature-title {
    color: var(--brand-blue);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}
/* Coming Soon Badge */
.feature-card.coming-soon {
    position: relative;
    opacity: 0.7;
    cursor: not-allowed;
}

    .feature-card.coming-soon:hover {
        transform: none;
        box-shadow: none;
    }

.new-records-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1.09);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}


.coming-soon-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Simple Stats in Hero */
.hero-stats-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-simple {
    text-align: center;
}

.stat-simple-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-simple-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .stat-card:hover {
        transform: translateY(-5px);
        background: var(--primary-white);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border-color: var(--brand-blue);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-right: 5px;
    /* Prevent clipping of wide characters */
    line-height: 1.2;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: var(--spacing-xs);
}
/* ============================================
   Sections
   ============================================ */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}
/* ============================================
   Projects Section
   ============================================ */
.projects {
    background: var(--primary-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
    justify-content: center;
}

.project-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .project-card:hover {
        transform: translateY(-10px);
        background: var(--primary-white);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        border-color: var(--brand-blue);
    }

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    flex-grow: 1;
}

.card-link {
    color: var(--medium-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

    .card-link:hover {
        color: var(--brand-blue);
        transform: translateX(5px);
    }
/* Material Icons */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}
/* Card Images */
.card-image {
    height: 240px;
    /* Increased from 180px */
    /*background: var(--gradient-gray);*/
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

    .card-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--brand-blue-light) 0%, transparent 100%);
        opacity: 0.5;
    }

.card-icon-large {
    font-size: 5rem;
    /* Increased icon size */
    color: var(--brand-blue);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
/* ============================================
   News Section
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 350px));
    gap: var(--spacing-md);
    justify-content: center;
}
/* Desktop: exactly 3 columns, max 350px each */
@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, minmax(280px, 350px));
        justify-content: center;
    }
}


.news-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-normal);
}

    .news-card:hover {
        transform: translateY(-5px);
        background: var(--primary-white);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border-color: var(--brand-blue);
    }

.news-date {
    color: var(--brand-blue);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Kaç satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    color: var(--medium-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

    .news-link:hover {
        color: var(--brand-blue);
    }
/* News Images */
.news-image {
    height: 240px;
    /* Increased from 200px */
    background: var(--gradient-gray);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

    .news-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--brand-blue-light) 0%, transparent 100%);
        opacity: 0.3;
    }

.news-placeholder {
    font-size: 4rem;
    color: var(--brand-blue);
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.news-content {
    display: flex;
    flex-direction: column;
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}
/* ============================================
   Members Section
   ============================================ */
.members {
    background: var(--primary-gray);
}

.members-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.member-tag {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    cursor: pointer;
}

    .member-tag:hover {
        background: var(--brand-blue);
        color: var(--primary-white);
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(2, 49, 115, 0.25);
    }
/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--brand-blue);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--primary-white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: var(--primary-white);
}

.cta-subtitle {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-md);
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-white);
}

.cta-section .btn-primary {
    background: var(--primary-white);
    color: var(--brand-blue);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

    .cta-section .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        background: var(--primary-gray);
    }
/* ============================================
   Footer
   ============================================ */
/* =========================
   FOOTER – TOBFED
========================= */

.footer {
    background-color: #1f1f1f;
    color: #ffffff;
    padding: 50px 0 25px;
    font-family: inherit;
}

    .footer .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

/* GRID YAPI */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* KOLON */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* BAŞLIKLAR */
.footer-heading {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

/* LİNK LİSTESİ */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 6px;
        font-size: 14px;
        color: #cfcfcf;
    }

    .footer-links a {
        color: #cfcfcf;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

/* LOGO */
.footer-logo {
    max-width: 160px;
    margin-bottom: 12px;
}

/* ALT KISIM */
.footer-bottom {
    margin-top: 35px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.copyright {
    font-size: 13px;
    color: #bdbdbd;
}

/* MOBİL */
@media (max-width: 768px) {
    .footer {
        padding: 35px 0 20px;
    }

    .footer-grid {
        gap: 25px;
    }

    .footer-heading {
        font-size: 14px;
    }

    .footer-links li {
        font-size: 13px;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
/* Mobile - Tablet (768px - 991px) */


/* Mobile - Standard (481px - 767px) */
@media (max-width: 767px) {
    .hamburger {
        margin-left: auto;
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 70px; /* Navbar yüksekliği kadar boşluk bırak */
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px); /* 🔹 Ekran yüksekliğinin geri kalanı */
        overflow-y: auto; /* 🔹 Scroll aktif */
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-md);
        transition: left 0.3s ease;
        z-index: 999;
    }


        .nav-menu.active {
            left: 0;
        }

    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero-highlight {
        font-size: 1.1em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-large {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .stat-card {
        padding: var(--spacing-sm);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .hero-stats-simple {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .stat-simple-number {
        font-size: 2rem;
    }

    .stat-simple-label {
        font-size: 0.85rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .hero-features-myk {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .feature-card-myk {
        width: 100%;
        max-width: 320px;
        height: 150px;
    }

    .feature-card {
        padding: var(--spacing-md);
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

        .feature-icon .material-icons {
            font-size: 28px;
        }

    .projects-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .project-card,
    .news-card {
        max-width: 380px;
        margin: 0 auto;
    }

    .board-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .associations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto var(--spacing-md);
    }

    .member-image {
        height: 250px;
    }

    .card-image,
    .news-image {
        height: 200px;
    }

    .page-header {
        padding: 5rem 0 2.5rem;
    }

    .page-title {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .page-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .contact-info {
        padding-right: 0;
    }

    .message-card {
        flex-direction: column;
        padding: var(--spacing-md);
    }

    .chairman-photo {
        width: 100%;
        max-width: 300px;
        height: 280px;
    }

    .tobfed-stats-container {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .tobfed-stat-item {
        flex: 1 1 100%;
    }

    .tobfed-partners-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .cookie-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

        .cookie-buttons .btn {
            width: 100%;
        }
}

/* Mobile - Small (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .project-card,
    .news-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 40px;
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

    .hero-title {
        font-size: 1.65rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
    }

    .hero-highlight {
        font-size: 1.05em;
    }

        .hero-highlight::after {
            bottom: -4px;
            height: 3px;
        }

    .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.55;
        padding: 0;
    }

    .hero-buttons {
        max-width: 280px;
    }

    .btn-large {
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: var(--spacing-md);
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: var(--spacing-xs);
    }

    .section-subtitle {
        font-size: 0.875rem;
        padding: 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }

    .stat-card {
        padding: var(--spacing-sm);
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-stats-simple {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding-top: var(--spacing-md);
    }

    .stat-simple-number {
        font-size: 1.75rem;
    }

    .stat-simple-label {
        font-size: 0.8rem;
    }

    .hero-features-myk {
        gap: var(--spacing-xs);
    }

    .feature-card-myk {
        width: 100%;
        height: 150px;
    }

    .feature-card {
        padding: var(--spacing-sm);
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--spacing-sm);
    }

        .feature-icon .material-icons {
            font-size: 24px;
        }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }

    .projects-grid,
    .news-grid {
        gap: var(--spacing-sm);
    }

    .card-title,
    .news-title {
        font-size: 1.15rem;
    }

    .card-description,
    .news-excerpt {
        font-size: 0.875rem;
    }

    .associations-grid {
        grid-template-columns: 1fr;
    }

    .association-card {
        padding: var(--spacing-md);
    }

    .assoc-icon {
        width: 60px;
        height: 60px;
    }

        .assoc-icon .material-icons {
            font-size: 32px;
        }

    .cta-section {
        padding: var(--spacing-lg) 0;
    }

    .cta-title {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .cta-subtitle {
        font-size: 0.875rem;
        padding: 0;
    }

    .member-image {
        height: 220px;
    }

    .member-placeholder {
        font-size: 3.5rem;
    }

    .card-icon-large,
    .news-placeholder {
        font-size: 2.5rem;
    }

    .card-image,
    .news-image {
        height: 180px;
    }

    .page-header {
        padding: 4rem 0 2rem;
    }

    .page-title {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .page-subtitle {
        font-size: 0.875rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }

    .info-card {
        padding: var(--spacing-md);
    }

        .info-card h3 {
            font-size: 1.35rem;
        }

    .chairman-photo {
        max-width: 260px;
        height: 260px;
    }

    .chairman-placeholder {
        font-size: 6rem;
    }

    .tobfed-stat-number {
        font-size: 2rem;
    }

    .tobfed-stat-label {
        font-size: 0.75rem;
    }

    .tobfed-partners-container {
        grid-template-columns: 1fr;
    }

    .tobfed-partner-card {
        min-height: 120px;
        padding: var(--spacing-md);
    }

    #cookie-banner {
        width: calc(100% - 16px);
        bottom: 12px;
    }

    .cookie-content {
        padding: var(--spacing-sm);
    }

    .cookie-text p {
        font-size: 0.8rem;
    }

    .cookie-buttons .btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .modal-box {
        max-width: 96%;
        border-radius: 12px;
    }

    .modal-body {
        padding: 48px 16px 20px;
    }

        .modal-body p {
            font-size: 0.9rem;
        }

    .modal-action {
        padding: 12px 32px;
        font-size: 0.9rem;
    }

    .brand-set img {
        height: 70px !important;
    }
}

/* Mobile - Extra Small (max-width: 359px) */
@media (max-width: 359px) {
    .hero-title {
        font-size: 1.45rem;
    }

    .project-card,
    .news-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .btn-large {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .stat-number,
    .stat-simple-number,
    .tobfed-stat-number {
        font-size: 1.5rem;
    }

    .feature-card-myk {
        max-width: 100%;
        height: 150px;
    }

    .cta-title {
        font-size: 1.2rem;
    }

    .page-title {
        font-size: 1.35rem;
    }
}


.btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

.container {
    padding: 0 var(--spacing-sm);
}

.section {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.75rem;
}

.hero-stats {
    grid-template-columns: 1fr;
}

.stat-number {
    font-size: 2rem;
}

.member-image {
    height: 200px;
}

.member-placeholder {
    font-size: 4rem;
}

.card-icon-large,
.news-placeholder {
    font-size: 3rem;
}

.card-image,
.news-image {
    height: 180px;
}

.cta-title {
    font-size: 1.5rem;
}

.page-header {
    padding: 5rem 0 2rem;
}

.page-title {
    font-size: 1.75rem;
}

}
/* ============================================
   Animations & Utilities
   ============================================ */
/* ============================================
   Animations & Utilities
   ============================================ */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-blue);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #034a9e;
    }
/* ============================================
   Subpages Styles
   ============================================ */
/* Page Header */
.page-header {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 85%, #ffffff 100%), linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3)), url('/images/hero_abstract_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    color: var(--text-secondary);
    font-weight: 500;
}

    .breadcrumb a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color var(--transition-fast);
    }

        .breadcrumb a:hover {
            color: var(--brand-blue);
        }
/* About Intro */
.lead-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.content-block p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}
/* Vision & Mission Cards */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.info-card {
    background: var(--primary-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--secondary-gray);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--brand-blue);
    }

    .info-card .icon-wrapper {
        font-size: 3rem;
        margin-bottom: var(--spacing-md);
    }

    .info-card h3 {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
        color: var(--brand-blue);
    }
/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.principle-item {
    background: var(--primary-gray);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    transition: all var(--transition-normal);
}

    .principle-item:hover {
        background: var(--primary-white);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.principle-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-blue);
    opacity: 0.2;
    line-height: 1;
}

.principle-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.principle-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
/* Chairman Message */
.message-card {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--secondary-gray);
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

.chairman-photo {
    flex: 0 0 300px;
    height: 350px;
    /*background: var(--gradient-gray);*/
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .chairman-photo::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--brand-blue-light) 0%, transparent 100%);
        opacity: 0.3;
    }

.chairman-placeholder {
    font-size: 8rem;
    color: var(--brand-blue);
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .message-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .chairman-photo {
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin-bottom: var(--spacing-md);
    }
}

.message-text p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.chairman-signature {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top: 1px solid var(--secondary-gray);
    padding-top: var(--spacing-sm);
}

    .chairman-signature strong {
        font-size: 1.25rem;
        color: var(--brand-blue);
    }

    .chairman-signature span {
        color: var(--text-secondary);
        font-size: 0.9rem;
    }
/* Board Grid */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 268px);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.board-card {
    background: var(--primary-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--secondary-gray);
    transition: all var(--transition-normal);
    text-align: center;
    padding-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    width: 268px;
}

    .board-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: var(--brand-blue);
    }

    .board-card.president {
        border: 2px solid var(--brand-blue);
        box-shadow: 0 4px 12px rgba(2, 49, 115, 0.15);
    }
@media (max-width: 576px) {
    .board-grid {
        justify-content: center;
    }
}

.member-image {
    height: 300px;
    background: var(--gradient-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    flex-shrink: 0;
}

    .member-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--brand-blue-light) 0%, transparent 100%);
        opacity: 0.3;
    }

.member-placeholder {
    font-size: 6rem;
    color: var(--brand-blue);
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

.member-info {
    padding: 0 var(--spacing-sm);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.member-role {
    color: var(--brand-blue);
    font-weight: 500;
    font-size: 0.9rem;
}
/* Associations Page */
.associations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.association-card {
    background: var(--primary-white);
    border: 1px solid var(--secondary-gray);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    .association-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: var(--brand-blue);
    }

.assoc-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--brand-blue);
}

    .assoc-icon .material-icons {
        font-size: 40px;
    }

.association-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}
/* Mini CTA */
.cta-mini {
    background: var(--primary-gray);
    padding: var(--spacing-sm) 0;
}

.cta-box {
    background: var(--brand-blue);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    color: white;
    background-image: linear-gradient(135deg, var(--brand-blue) 0%, #034a9e 100%);
    position: relative;
    overflow: hidden;
}

    .cta-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .cta-box h2 {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
        color: white;
    }

    .cta-box p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: var(--spacing-lg);
        font-size: 1.1rem;
    }

    .cta-box .btn-primary {
        background: white;
        color: var(--brand-blue);
        border: none;
    }

        .cta-box .btn-primary:hover {
            background: var(--primary-gray);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
/* Contact Page */
/* ================================
   CONTACT PAGE – FULL RESPONSIVE
   Mobile First
================================ */

/* SECTION */
.contact-section {
    padding: var(--spacing-lg) 1rem;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

/* INFO COLUMN */
.contact-info {
    padding: 0;
}

/* INFO ITEMS */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    background: var(--primary-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--secondary-gray);
    transition: all var(--transition-normal);
}

    .info-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
        border-color: var(--brand-blue);
    }

/* ICON */
.icon-box {
    width: 42px;
    height: 42px;
    background: var(--brand-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    flex-shrink: 0;
}

    .icon-box span {
        font-size: 22px;
    }

/* CONTENT */
.info-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
}

.info-content a {
    color: var(--text-secondary);
    text-decoration: none;
}

    .info-content a:hover {
        color: var(--brand-blue);
    }

/* SOCIAL */
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--primary-white);
    border: 1px solid var(--secondary-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    transition: all var(--transition-fast);
}

    .social-link:hover {
        background: var(--brand-blue);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
        border-color: var(--brand-blue);
    }

/* FORM */
.contact-form-wrapper {
    background: var(--primary-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--secondary-gray);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var(--text-primary);
    }

.form-control,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--secondary-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--primary-white);
    transition: all var(--transition-fast);
}

    .form-control:focus,
    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: var(--brand-blue);
        box-shadow: 0 0 0 3px rgba(2, 49, 115, 0.1);
    }

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    display: block;
    text-align: center;
}

/* ================================
   TABLET (≥ 576px)
================================ */
@media (min-width: 576px) {

    .contact-section {
        padding: var(--spacing-xl) 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    .icon-box {
        width: 48px;
        height: 48px;
    }

    .info-content h3 {
        font-size: 1.05rem;
    }

    .info-content p {
        font-size: 0.95rem;
    }
}

/* ================================
   LAPTOP (≥ 992px)
================================ */
@media (min-width: 992px) {

    .contact-grid {
        gap: var(--spacing-xl);
    }

    .contact-info {
        padding-right: var(--spacing-lg);
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }
}

/* ================================
   LARGE SCREENS (≥ 1200px)
================================ */
@media (min-width: 1200px) {

    .contact-section {
        padding: var(--spacing-xl) 0;
    }

    .contact-grid {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/*SLİDER*/

.brand-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brand-slider-track {
    display: flex;
    width: 200%;
    animation: brandSlide 30s linear infinite;
}

.brand-slider-wrapper:hover .brand-slider-track {
    animation-play-state: paused;
}

.brand-set {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
}

    .brand-set img {
        height: 100px !important;
        width: auto;
        opacity: 0.6;
        filter: grayscale(100%);
        transition: all 0.3s ease;
    }

@media (min-width: 640px) {
    .brand-set img {
        height: 96px;
    }
}

@media (min-width: 768px) {
    .brand-set img {
        height: 100px;
    }
}

.brand-set img:hover {
    opacity: 1;
    filter: grayscale(0);
}

@keyframes brandSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 32px);
    max-width: 1100px;
}

.cookie-content {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-text p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
}

.cookie-link {
    margin-top: 6px;
}

    .cookie-link a {
        color: #0b4da2; /* TOBFED mavisi */
        text-decoration: none;
        font-weight: 500;
    }

        .cookie-link a:hover {
            text-decoration: underline;
        }

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

    .cookie-buttons .btn {
        padding: 10px 18px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        border: none;
        transition: all 0.25s ease;
    }
    /* Reddet */
    .cookie-buttons .reject {
        background: #f1f3f6;
        color: #333;
    }

        .cookie-buttons .reject:hover {
            background: #e4e7ec;
        }
    /* Kabul Et */
    .cookie-buttons .accept {
        background: #0b4da2;
        color: #fff;
    }

        .cookie-buttons .accept:hover {
            background: #083d82;
        }


@media (max-width: 600px) {
    #cookie-banner {
        font-size: 10px !important;
    }
}

hr {
    margin: 15px 0;
    border-width: 0;
    border-top: 1px solid currentColor;
    opacity: 0.1
}

.mb-2 {
    margin-bottom: 1.3rem !important;
}

.font-size-13 {
    font-size: 13px !important;
}

.no-border-table {
    width: 100%;
    border-collapse: collapse;
}

    .no-border-table td, .no-border-table th {
        padding: 12px;
        text-align: left;
        border: none;
        line-height: 1.6;
    }

    .no-border-table th {
        font-weight: bold;
        text-align: center;
    }

.tobfed-stats-wrapper {
    background-color: #073b7c; /* Lacivert */
    padding: 80px 0;
}

.tobfed-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.tobfed-stat-item {
    flex: 1;
}

.tobfed-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.tobfed-stat-divider {
    display: inline-block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    margin: 12px 0;
}

.tobfed-stat-label {
    font-size: 13px;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
}
/* Responsive */
@media (max-width: 992px) {
    .tobfed-stats-container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .tobfed-stat-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .tobfed-stat-item {
        flex: 0 0 100%;
    }

    .tobfed-stat-number {
        font-size: 40px;
    }
}

.mb-5 {
    margin-bottom: 3rem;
}

.ml-20 {
    margin-left: 20px;
}

.padding-top-0 {
    padding-top: 0px !important;
}

.margin-bottom-0 {
    margin-bottom: 0px !important;
}
/* TOBFED Kart Yapısı */
.tobfed-card {
    background: transparent;
    border-radius: 0;
    padding: 24px 0;
    margin-bottom: 20px;
    box-shadow: none;
}


.tobfed-card-title {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
    color: #1f2a44;
}

.tobfed-card-content {
    font-size: 15px;
    line-height: 1.6;
}

/* Tablo */
.tobfed-table-wrapper {
    overflow-x: auto;
}

.tobfed-table {
    width: 100%;
    border-collapse: collapse;
}

    .tobfed-table thead {
        background-color: #1f2a44;
        color: #ffffff;
    }

    .tobfed-table th,
    .tobfed-table td {
        padding: 14px;
        text-align: left;
        font-size: 14px;
    }

    .tobfed-table tbody tr {
        border-bottom: 1px solid #eaeaea;
    }

        .tobfed-table tbody tr:hover {
            background-color: #f9f9f9;
        }

/* Butonlar */
.tobfed-btn {
    display: inline-block;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    margin-right: 6px;
}

.tobfed-btn-word {
    background-color: #2b579a;
}

.tobfed-btn-pdf {
    background-color: #c4161c;
}

.tobfed-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (max-width: 768px) {
    .tobfed-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tobfed-table {
        min-width: 720px;
    }

        .tobfed-table th,
        .tobfed-table td {
            white-space: nowrap;
            font-size: 13px;
            padding: 10px;
        }
}

.tobfed-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #023173, #034a9e );
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(31, 79, 216, 0.25);
    white-space: nowrap;
    margin-bottom: 10px;
}

    /* Hover */
    .tobfed-btn-primary:hover {
        background: linear-gradient(135deg, #034a9e, #023173);
        box-shadow: 0 6px 18px rgba(31, 79, 216, 0.35);
        transform: translateY(-1px);
        text-decoration: none;
    }

    /* Active */
    .tobfed-btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 3px 8px rgba(31, 79, 216, 0.25);
    }

    /* Focus (erişilebilirlik) */
    .tobfed-btn-primary:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(31, 79, 216, 0.35);
    }

@media (max-width: 768px) {
    .tobfed-btn-primary {
        transform: scale(0.8);
        transform-origin: right center;
        padding: 8px 14px;
        font-size: 13px;
        box-shadow: 0 2px 6px rgba(31, 79, 216, 0.25);
    }
}
/* Genel alan */
.col-inner {
    font-size: 14.5px;
    line-height: 1.7;
    color: #2b2b2b;
}

    /* Her firma bloğu */
    .col-inner p {
        margin-bottom: 18px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

        /* Son elemanda çizgi olmasın */
        .col-inner p:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        /* Firma adı */
        .col-inner p strong {
            display: block;
            font-size: 15.5px;
            font-weight: 600;
            color: #023173;
            margin-bottom: 4px;
        }

        /* Telefon vurgusu */
        .col-inner p span,
        .col-inner p {
            letter-spacing: 0.2px;
        }

    .col-inner h2 {
        font-size: 22px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 18px;
        letter-spacing: 0.3px;
    }

/* Mobil düzen */
@media (max-width: 768px) {
    .col-inner {
        font-size: 14px;
    }

        .col-inner p {
            margin-bottom: 16px;
            padding-bottom: 12px;
        }

            .col-inner p strong {
                font-size: 15px;
            }
}

.mt-5 {
    margin-top: 4rem !important;
}

.padding-bottom-0 {
    padding-bottom: 0px !important;
}

.margin-top-0 {
    margin-top: 0px !important;
}

/*Paydaşlar*/
.tobfed-partners-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f4f6f8 0%, #eef1f4 100%);
}

.tobfed-partners-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.tobfed-partner-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
}

    .tobfed-partner-card img {
        max-width: 100%;
        max-height: 120px;
        object-fit: contain;
        opacity: 1;
        transition: all 0.35s ease;
    }

    .tobfed-partner-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 36px rgba(0, 52, 120, 0.15);
    }



/* =========================
   ISTIHDAM MODAL
========================= */

.istihdam-trigger {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal Box */
.modal-box {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 860px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    animation: modalFadeIn 0.35s ease;
}

/* Absolute Close */
/* Absolute Close - TOP RIGHT */
.modal-close-absolute {
    position: absolute;
    top: 14px;
    right: 14px; /* 🔴 BURASI ÖNEMLİ */
    left: auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.05);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    transition: background 0.2s ease;
    z-index: 10;
}

    .modal-close-absolute:hover {
        background: rgba(0,0,0,0.12);
    }

/* Body */
.modal-body {
    padding: 64px 32px 32px;
    text-align: center;
}

    .modal-body p {
        font-size: 16px;
        color: #444;
        margin-bottom: 28px;
        font-weight: 500;
    }

/* Action Button */
.modal-action {
    padding: 14px 40px;
    border-radius: 30px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s ease;
}

    .modal-action:hover {
        background: #1e4ed8;
    }

/* Iframe */
.modal-body iframe {
    width: 100%;
    height: 70vh;
    border: none;
    border-radius: 14px;
}

/* Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .modal-box {
        max-width: 94%;
        border-radius: 14px;
    }

    .modal-body {
        padding: 56px 20px 24px;
    }
}

html.modal-open,
body.modal-open {
    overflow: hidden;
    height: 100%;
}

.mt-2 {
    margin-top: 1rem;
}

/* ===============================
   DROPDOWN GENEL
================================ */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

    .dropdown a {
        display: block;
        padding: 10px 20px;
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 14px;
    }

        .dropdown a:hover {
            background: rgba(0,0,0,0.04);
            color: var(--text-primary);
        }

.dropdown-title {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 6px;
}

/* Desktop hover */
@media (min-width: 768px) {
    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ===============================
   MOBİL MENÜ SCROLL + AKORDEON
================================ */
@media (max-width: 767px) {

    /* Menü scroll */
    .nav-menu {
        position: fixed;
        top: 70px; /* Navbar yüksekliği kadar boşluk bırak */
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px); /* 🔹 Ekran yüksekliğinin geri kalanı */
        overflow-y: auto; /* 🔹 Scroll aktif */
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-md);
        transition: left 0.3s ease;
        z-index: 999;
    }


        .nav-menu.active {
            left: 0;
        }

    /* Dropdown mobil ayar */
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        margin-left: 12px;
    }

    .nav-item.open .dropdown {
        max-height: 1000px;
    }

    .dropdown a {
        padding: 8px 0;
        font-size: 14px;
    }

    .dropdown-title {
        padding: 8px 0;
        border: none;
        margin-top: 10px;
    }

    /* Ok ikonu */
    .nav-item > .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


        .nav-item > .nav-link::after {
            display: none;
        }

    .nav-item.open > .nav-link::after {
        transform: rotate(180deg);
    }
}
/* Mobil & desktop tüm liste noktalarını kaldır */
.nav-menu ul,
.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* ===============================
   TOBFED ALT DROPDOWN (NO SPACE)
================================ */
.dropdown-group {
    padding: 0; /* 🔴 soldan/üstten boşluk yok */
    margin: 0;
}

.dropdown-parent {
    padding: 10px 20px; /* diğer linklerle aynı hizaya gelsin */
    cursor: pointer;
    display: block;
}

/* Alt menü */
.dropdown-sub {
    margin: 0; /* 🔴 boşluk yok */
    padding: 0;
}

    /* Alt linkler */
    .dropdown-sub a {
        padding: 10px 20px 10px 36px; /* ana dropdown ile aynı */
    }

/* Desktop hover */
@media (min-width: 768px) {
    .dropdown-sub {
        display: none;
    }

    .dropdown-group:hover .dropdown-sub {
        display: block;
    }
}

/* Mobil akordeon */
@media (max-width: 767px) {
    .dropdown-sub {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-group.open .dropdown-sub {
        max-height: 600px;
    }
}


.newsletter-section {
    display: flex;
    justify-content: center;
    padding: 40px 15px;
    background: var(--brand-blue);
}

.newsletter-box {
    width: 100%;
    max-width: 420px;
}

    .newsletter-box h2 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
    }

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .newsletter-form input {
        border: none;
        border-bottom: 2px solid #999;
        padding: 10px 10px;
        font-size: 14px;
        border-radius: 10px;
        outline: none;
        margin-bottom: 5px;
    }

        .newsletter-form input::placeholder {
            color: #777;
        }

    .newsletter-form button {
        background-color: #fff;
        color: black;
        border: none;
        padding: 14px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 10px;
    }

        .newsletter-form button:hover {
            /*background-color: #b23f5d;*/
            transform: translateY(-2px);
        }

.text-white {
    color: white;
}

/*//Etik Kurallarımız*/
/* GENEL ALAN */
.etik-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.7;
    color: #333;
}

    /* BAŞLIKLAR */
    .etik-wrapper h2 {
        font-size: 26px;
        margin: 32px 0 16px;
        font-weight: 700;
        color: #1a1a1a;
        border-left: 5px solid #034a9e;
        padding-left: 12px;
    }

    .etik-wrapper h3 {
        font-size: 20px;
        margin: 28px 0 12px;
        font-weight: 600;
        color: #034a9e;
    }

    /* PARAGRAFLAR */
    .etik-wrapper p {
        font-size: 16px;
        margin-bottom: 14px;
    }

    /* LİSTELER */
    .etik-wrapper ol {
        padding-left: 22px;
        margin-bottom: 20px;
    }

    .etik-wrapper li {
        font-size: 15.5px;
        margin-bottom: 10px;
    }

    /* HR */
    .etik-wrapper hr {
        margin: 40px 0;
        border: none;
        border-top: 1px solid #ddd;
    }

/* MOBİL UYUMLU */
@media (max-width: 768px) {
    .etik-wrapper {
        padding: 16px;
    }

        .etik-wrapper h2 {
            font-size: 22px;
        }

        .etik-wrapper h3 {
            font-size: 18px;
        }

        .etik-wrapper p,
        .etik-wrapper li {
            font-size: 15px;
        }
}

/* KÜÇÜK EKRAN (TELEFON) */
@media (max-width: 480px) {
    .etik-wrapper h2 {
        font-size: 20px;
    }

    .etik-wrapper h3 {
        font-size: 17px;
    }

    .etik-wrapper p,
    .etik-wrapper li {
        font-size: 14.5px;
    }
}


/* ANA WRAPPER Akademi Eğitim */
.egitim-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    gap: 24px;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* KOLON */
.egitim-col {
    flex: 1;
}

/* İÇ KUTU */
.egitim-inner {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    height: 100%;
}

    /* BAŞLIKLAR */
    .egitim-inner h2 {
        font-size: 24px;
        margin-bottom: 16px;
        font-weight: 700;
        color: #1a1a1a;
        border-left: 5px solid #034a9e;
        padding-left: 12px;
    }

    /* LİSTE GİBİ PARAGRAFLAR */
    .egitim-inner p {
        font-size: 15.5px;
        margin-bottom: 10px;
        padding-left: 10px;
        position: relative;
    }

        /* SOL NOKTA */
        .egitim-inner p::before {
            content: "•";
            position: absolute;
            left: -2px;
            color: #034a9e;
            font-size: 18px;
        }

/* TABLET */
@media (max-width: 768px) {
    .egitim-wrapper {
        flex-direction: column;
        padding: 16px;
    }

    .egitim-inner h2 {
        font-size: 22px;
    }

    .egitim-inner p {
        font-size: 15px;
    }
}

/* TELEFON */
@media (max-width: 480px) {
    .egitim-inner {
        padding: 18px;
    }

        .egitim-inner h2 {
            font-size: 20px;
        }

        .egitim-inner p {
            font-size: 14.5px;
        }
}
/*AKADEMİ*/
.tobfed-container {
    max-width: 1000px;
    margin: auto;
    padding: 24px;
}

.tobfed-title {
    text-align: center;
    margin-bottom: 8px;
}

.tobfed-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 32px;
}

/* Card */
.tobfed-form-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
}

.tobfed-card-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
}

/* Radio */
.tobfed-radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.tobfed-radio-item {
    display: flex;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

/* Form */
.tobfed-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tobfed-input-group {
    display: flex;
    flex-direction: column;
}

.tobfed-input-full {
    grid-column: 1 / -1;
}

.tobfed-label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
}


.tobfed-input,
.tobfed-textarea {
    padding: 14px;
    border-radius: 8px;
    border: 2px solid #d1d5db; /* DAHA BELİRGİN */
    background-color: #ffffff; /* NET BEYAZ */
    font-size: 14px;
    color: #111827;
    transition: all 0.2s ease;
}

    .tobfed-input::placeholder,
    .tobfed-textarea::placeholder {
        color: #9ca3af; /* placeholder görünür */
    }

    .tobfed-input:focus,
    .tobfed-textarea:focus {
        outline: none;
        border-color: var(--tobfed-primary);
        box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.15);
    }


/* Checkbox */
.tobfed-checkbox {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.tobfed-submit-wrapper {
    margin-top: 32px;
}

.tobfed-submit-button {
    width: 100%;
    padding: 16px;
    background: #023173;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .tobfed-submit-button:hover {
        background: #094bb5;
    }

    .tobfed-submit-button:active {
        transform: scale(0.98);
    }


/* Responsive */
@media (max-width: 768px) {
    .tobfed-form-grid {
        grid-template-columns: 1fr;
    }
}

.photos-title {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}


/*VIDEO*/
.tobfed-partners-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.tobfed-partners-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3-3-3 */
    gap: 40px;
}

.tobfed-partner-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .tobfed-partner-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    }

/* Video responsive */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
}

    .video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

@media (max-width: 1024px) {
    .tobfed-partners-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .tobfed-partners-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.cursor-pointer {
    cursor: pointer;
}
/*Galeri*/
.tobfed-partner-card-photo {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
    cursor: pointer;
}

    .tobfed-partner-card-photo img {
        width: 350px !important;
        height: 234px !important;
        object-fit: contain;
        opacity: 1;
        transition: all 0.35s ease;
    }

    .tobfed-partner-card-photo:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 36px rgba(0, 52, 120, 0.15);
    }

.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

/* KAPATMA BUTONU */
.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 42px;
    color: #fff;
    cursor: pointer;
}

/* BÜYÜK RESİM */
.gallery-big-img {
    max-width: 90%;
    max-height: 70vh;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ALT KÜÇÜK RESİMLER */
.gallery-thumbs {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    max-width: 90%;
}

.gallery-thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

    .gallery-thumb:hover {
        opacity: 1;
        transform: scale(1.05);
    }


/* ===============================
   TABLET (≤1024px)
================================ */
@media (max-width: 1024px) {

    .tobfed-partner-card-photo {
        padding: 24px;
        min-height: 120px;
    }

        .tobfed-partner-card-photo img {
            width: 280px !important;
        }

    .gallery-big-img {
        max-height: 65vh;
    }

    .gallery-thumb {
        width: 100px;
        height: 70px;
    }
}

/* ===============================
   MOBILE (≤768px)
================================ */
@media (max-width: 768px) {

    .tobfed-partner-card-photo {
        padding: 10px;
        min-height: auto;
    }

        .tobfed-partner-card-photo img {
            width: 100% !important;
            max-width: 260px !important;
        }

    .gallery-modal {
        padding: 20px;
    }

    .gallery-big-img {
        max-width: 100%;
        max-height: 60vh;
        margin-bottom: 20px;
    }

    .gallery-thumbs {
        gap: 12px;
    }

    .gallery-thumb {
        width: 90px;
        height: 60px;
    }

    .gallery-close {
        top: 20px;
        right: 25px;
        font-size: 36px;
    }
}

/* ===============================
   SMALL MOBILE (≤480px)
================================ */
@media (max-width: 480px) {

    .tobfed-partner-card-photo {
        padding: 16px;
    }

        .tobfed-partner-card-photo img {
            max-width: 220px;
        }

    .gallery-big-img {
        max-height: 55vh;
        border-radius: 12px;
    }

    .gallery-thumb {
        width: 75px;
        height: 55px;
    }

    .gallery-close {
        font-size: 32px;
        top: 15px;
        right: 20px;
    }
}

.toast-card {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 99999;
}

    .toast-card.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

/* Sol ikon */
.toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .toast-icon.success {
        background: #eafaf1;
        color: #22c55e;
    }

    .toast-icon.warning {
        background: #fff7ed;
        color: #f59e0b;
    }

    .toast-icon.error {
        background: #fee2e2;
        color: #ef4444;
    }

    .toast-icon .material-icons {
        font-size: 22px;
    }

/* Metin alanı */
.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.toast-text {
    font-size: 0.85rem;
    color: #6b7280;
}

.nav-link-item {
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: color var(--transition-fast);
    position: relative;
}

@media (max-width: 768px) {
    .nav-link-item {
        font-weight: 500 !important;
        font-size: 14px !important;
        color: var(--text-secondary) !important;
    }
}

.nav-link-item,
.nav-link-item:visited,
.nav-link-item:hover,
.nav-link-item:active,
.nav-link-item:focus {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
}




.feature-card.tobfed {
    background: linear-gradient(135deg, #023173, #0348a8);
    border-radius: 22px;
    padding: 32px 28px;
    min-width: 240px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(2, 49, 115, 0.35), inset 0 0 0 1px rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

    .feature-card.tobfed:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(2, 49, 115, 0.45);
    }

    /* Başlık */
    .feature-card.tobfed .feature-title {
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.4px;
        text-align: center;
        margin: 0;
    }

/* Badge'lere dokunmadık – sadece konumlandırma */
.new-records-badge,
.coming-soon-badge {
    margin-bottom: 14px;
}

/* Yakında kartı biraz daha soft */
.feature-card.coming-soon {
    opacity: 0.85;
}


@media (min-width: 1200px) {
    .feature-card.tobfed {
        min-height: 160px;
    }
}

@media (max-width: 1199px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.tobfed {
        min-height: 150px;
        padding: 28px 24px;
    }
}

@media (max-width: 767px) {
    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card.tobfed {
        width: 100%;
        min-height: 130px;
        padding: 24px 20px;
        border-radius: 18px;
    }

        .feature-card.tobfed .feature-title {
            font-size: 16px;
        }

    .new-records-badge,
    .coming-soon-badge {
        font-size: 12px;
    }
}
/* Mobilde hover iptal (dokunmatik için) */
@media (hover: none) {
    .feature-card.tobfed:hover {
        transform: none;
        box-shadow: 0 12px 30px rgba(2, 49, 115, 0.35);
    }
}

.hero-features-myk {
    display: flex;
    justify-content: center; /* yatay ortala */
}

.hero-features-yum {
    display: flex;
    justify-content: center; /* 3 kartı ortala */
}

@media (max-width: 768px) {
    .hero-features-yum {
        flex-direction: column;
        align-items: center;
    }
}

.custom-tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    position: absolute;
    bottom: 125%; /* ⬆️ YUKARIDA */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

    .tooltip-text.show {
        visibility: visible;
        opacity: 1;
    }

    /* 🔺 ok (yukarı tooltip için aşağı bakan ok) */
    .tooltip-text::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: #2c2c2c transparent transparent transparent;
    }

.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card {
    cursor: pointer;
    height: 560px !important;
}

.news-card-link:hover .news-card {
    transform: translateY(-3px);
    transition: 0.2s ease;
}

.news-detail-hero {
    height: 400px;
    margin-top: 90px; /* navbar yüksekliği */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 768px) {
    .share-section {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }

        .share-section h3 {
            text-align: center;
            font-size: 1.1rem;
        }

    .share-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
}




.board-type-select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 14px;
    margin-right: 12px;
    cursor: pointer;
}

    .board-type-select:focus {
        outline: none;
        border-color: #023173;
        box-shadow: 0 0 0 2px rgba(99,102,241,.15);
    }


.ml-3 {
    margin-left: 1rem;
}

.dropdown-container {
    display: flex;
    gap: 16px;
    max-width: 500px;
}

.modern-dropdown {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d0d5dd;
    background-color: #fff;
    font-size: 14px;
    color: #344054;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .modern-dropdown:hover {
        border-color: #667085;
    }

    .modern-dropdown:focus {
        outline: none;
        border-color: #4f46e5;
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    }


/*Banner*/
.full-banner {
    width: 100vw;
    height: clamp(200px, 30vw, 420px);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

    .full-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }




.city-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.yum-card {
    padding: 18px 0;
    border-bottom: 1px solid #eaeaea;
}

.yum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yum-title {
    color: #0a3aa3;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.detail-btn {
    background: #0a3aa3;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

    .detail-btn:hover {
        background: #062a78;
    }

.yum-address {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.yum-phone {
    margin-top: 5px;
    font-size: 14px;
    color: #000;
}
