:root {
    /* Modern Renk Paleti */
    --primary: #3f51b5;      /* Koyu Mavi */
    --primary-dark: #303f9f; /* Daha Koyu Mavi */
    --secondary: #ff4081;    /* Pembe */
    --success: #4caf50;      /* Yeşil */
    --danger: #f44336;       /* Kırmızı */
    --warning: #ff9800;      /* Turuncu */
    --info: #00bcd4;         /* Turkuaz */
    --dark: #263238;         /* Neredeyse Siyah */
    --light: #f5f7fa;        /* Açık Gri */
    --gray: #607d8b;         /* Nötr Gri */
    --white: #ffffff;        /* Beyaz */
    --shadow: rgba(0,0,0,0.1); /* Gölge */
    --gradient: linear-gradient(135deg, #3f51b5, #5c6bc0); /* Mavi Gradyan */
    --gradient-sec: linear-gradient(135deg, #ff4081, #f06292); /* Pembe Gradyan */
}

/* Temel Stiller */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: #333;
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Header & Navbar */
.navbar {
    background: var(--primary) !important;
    box-shadow: 0 2px 10px var(--shadow);
    padding: 0.75rem 0;
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.75rem 1rem !important;
    border-radius: 4px;
}

.nav-link:hover {
    color: white !important;
    background: rgba(255,255,255,0.1);
}

.nav-link.active {
    color: white !important;
    background: rgba(255,255,255,0.15);
}

/* Hero Section */
.hero-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

.hero-title {
    color: white;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-right: 1rem;
}

.hero-stats {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
    text-align: center;
}

.stat-value {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search Box */
.search-box {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 15px 30px var(--shadow);
    padding: 2rem;
    transform: translateY(-50%);
    margin-bottom: -50px;
}

.search-main {
    border: 2px solid var(--light);
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 3px 15px var(--shadow);
}

.search-main .form-control {
    border: none;
    height: 60px;
    font-size: 1.1rem;
}

.search-main .input-group-text {
    background: white;
    border: none;
    font-size: 1.25rem;
    color: var(--gray);
    padding-left: 1.5rem;
}

.search-main .btn-link {
    border: none;
    color: var(--gray);
    font-size: 1.2rem;
    padding: 0 1.5rem;
}

.search-main .form-control:focus {
    box-shadow: none;
    border-color: var(--light);
}

.quick-results {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px var(--shadow);
    margin-top: 1rem;
    overflow: hidden;
}

.quick-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.quick-result-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    cursor: pointer;
}

.quick-result-item:hover {
    background: rgba(0,0,0,0.02);
}

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

.quick-result-title {
    font-weight: 500;
}

.quick-result-tag {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Section Headers */
.section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: rgba(63, 81, 181, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* School Categories */
.category-link {
    display: block;
    height: 100%;
    color: unset;
}

.category-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    padding: 2.5rem 1.5rem;
}

.category-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px var(--shadow);
}

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

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(63, 81, 181, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.category-title {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.category-count {
    color: var(--gray);
    font-size: 0.9rem;
}

/* School Cards */
.school-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
}

.school-card-header {
    padding: 1rem;
    border-bottom: 1px solid var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.school-card-type {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(63, 81, 181, 0.3);
}

.school-card-location {
    color: var(--gray);
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.school-card-location i {
    margin-right: 0.3rem;
}

.school-card-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.school-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.school-card-title a {
    color: #333;
}

.school-card-title a:hover {
    color: var(--primary);
}

.school-card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: auto;
}

.school-card-metric {
    background: var(--light);
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
}

.school-card-metric-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.school-card-metric-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.school-card-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.school-card-btn {
    border: none;
    background: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    transition: all 0.2s;
}

.btn-details {
    color: var(--primary);
}

.btn-details:hover {
    background: rgba(63, 81, 181, 0.1);
    color: var(--primary);
}

.btn-compare {
    color: var(--gray);
    background: var(--light);
    padding: 0.4rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.btn-compare:hover {
    background: var(--primary);
    color: white;
}

/* Karşılaştırma butonları için ek stiller */
.btn-compare-added {
    background-color: var(--success);
    color: white;
}

.btn-compare-added:hover {
    background-color: var(--danger);
    color: white;
}

/* Features Section */
.features-section {
    background: white;
    padding: 5rem 0;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 7px 15px rgba(63, 81, 181, 0.3);
}

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

.feature-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 7px 15px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Footer Styling */
.footer {
    background: var(--dark);
    color: white;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* Karşılaştırma çubuğu */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.compare-schools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.compare-school-item {
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 5px 12px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    max-width: 200px;
    overflow: hidden;
    transition: all 0.2s;
}

.compare-school-item:hover {
    background: rgba(255,255,255,0.3);
}

.compare-school-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 5px;
}

.remove-school {
    color: rgba(255,255,255,0.8);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.remove-school:hover {
    color: white;
    transform: scale(1.2);
}

.compare-count {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Filtre Bölümü */
.filter-section {
    background: var(--surface);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.filter-group {
    padding: 15px;
    border-bottom: 1px solid var(--secondary);
}

.filter-scroll {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Tablo Stilleri */
.schools-table th {
    background-color: var(--background);
    font-weight: 600;
    padding: 12px;
}

.schools-table td {
    padding: 15px 12px;
    vertical-align: middle;
}

/* Karşılaştırma Butonu */
.compare-btn {
    transition: all 0.2s ease;
    font-size: var(--font-size-sm);
}

/* Kart Stilleri */
.card {
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

/* Modern Kart Tasarımı */
.school-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
}

.school-card-header {
    padding: 1rem;
    border-bottom: 1px solid var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.school-card-type {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(63, 81, 181, 0.3);
}

.school-card-location {
    color: var(--gray);
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.school-card-location i {
    margin-right: 0.3rem;
}

.school-card-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.school-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.school-card-title a {
    color: #333;
}

.school-card-title a:hover {
    color: var(--primary);
}

.school-card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: auto;
}

.school-card-metric {
    background: var(--light);
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
}

.school-card-metric-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.school-card-metric-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.school-card-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.school-card-btn {
    border: none;
    background: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    transition: all 0.2s;
}

.btn-details {
    color: var(--primary);
}

.btn-details:hover {
    background: rgba(63, 81, 181, 0.1);
    color: var(--primary);
}

.btn-compare {
    color: var(--gray);
    background: var(--light);
    padding: 0.4rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.btn-compare:hover {
    background: var(--primary);
    color: white;
}

/* Modern Tablo Tasarımı */
.modern-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: var(--surface);
    border-radius: 1rem;
    overflow: hidden;
}

.modern-table th {
    background: var(--background);
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--font-size-sm);
    letter-spacing: 0.05em;
}

/* Filtre Bileşenleri */
.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--background);
    border-radius: 2rem;
    font-size: var(--font-size-sm);
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip:hover {
    background: var(--primary);
    color: white;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease forwards;
}

/* Özel Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .filter-section {
        margin-bottom: 20px;
    }
    
    .schools-table {
        font-size: var(--font-size-sm);
    }
    
    .container {
        padding: 1rem;
    }
    
    .school-card {
        margin-bottom: 1rem;
    }
    
    .modern-table {
        font-size: var(--font-size-sm);
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .nav-link {
        margin: 0.2rem;
        padding: 0.5rem 0.75rem !important;
    }
    
    .school-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .school-card-location {
        margin-top: 0.5rem;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 8px;
        font-size: 0.85rem;
    }
}

/* Footer Styling */
.footer {
    background: var(--dark);
    color: white;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* Liste Animasyonları */
.school-list-item {
    transition: all 0.3s ease;
}

.school-list-item:hover {
    background: var(--surface);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

/* Gelişmiş Kart Stilleri */
.stat-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    overflow: hidden;
    position: relative;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    pointer-events: none;
}

/* Tablo Geliştirmeleri */
.modern-table tbody tr {
    transition: all 0.2s ease;
}

.modern-table tbody tr:hover {
    background-color: var(--background);
    transform: scale(1.01);
}

/* Loading Animasyonu */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--background);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Karşılaştırma Çubuğu */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.compare-schools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.compare-school-item {
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    margin-bottom: 5px;
}

.compare-school-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-school {
    color: rgba(255,255,255,0.8);
    margin-left: 6px;
    display: inline-flex;
}

.remove-school:hover {
    color: white;
}

/* Karşılaştırma Tablosu */
.comparison-table-wrapper {
    overflow-x: auto;
    width: 100%;
    position: relative;
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th, 
.comparison-table td {
    padding: 12px;
    text-align: center;
}

.comparison-table .category-column {
    background: #f8f9fa;
    text-align: left;
    font-weight: 600;
    position: sticky;
    left: 0;
    z-index: 1;
}

.comparison-table .category-header {
    background-color: var(--primary);
    color: white;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.comparison-table .highlight-value {
    font-weight: bold;
    color: var(--primary);
}

/* Responsive ayarlamalar */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .search-box {
        padding: 1.5rem;
    }
    
    .search-main .form-control {
        height: 50px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-tag {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .search-box {
        padding: 1rem;
        transform: translateY(-30%);
        margin-bottom: -30px;
    }
    
    .search-main .form-control {
        height: 45px;
        font-size: 0.9rem;
    }
    
    .search-main .input-group-text {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Okul Listesi Görünümü */
.school-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.school-list-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    padding: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.school-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.school-list-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.school-list-title a {
    color: var(--dark);
    text-decoration: none;
}

.school-list-title a:hover {
    color: var(--primary);
}

.school-list-content {
    padding-right: 1rem;
}

.school-list-data {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.75rem;
}

.school-list-data-item {
    display: flex;
    align-items: center;
}

.school-list-data-item .label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-right: 0.5rem;
}

.school-list-data-item .value {
    font-weight: 600;
    color: var(--primary);
}

.school-list-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

@media (max-width: 768px) {
    .school-list-item {
        padding: 1rem;
    }

    .school-list-actions {
        margin-top: 1rem;
        align-items: stretch;
    }
}

/* Kontenjan Bilgisi */
.school-card-kontenjan {
    background-color: rgba(0,0,0,0.03);
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.school-card-kontenjan strong {
    color: var(--primary);
    font-weight: 600;
}


