/* Admin login icon reveal on hover */
.admin-login {
	opacity: 0;
	transition: opacity 0.2s ease, color 0.2s ease, filter 0.2s ease;
	color: inherit; /* zeminle aynı renk görünür olmasın */
}
.admin-login:hover,
.admin-login:focus {
	opacity: 1;
	color: #1a5276; /* görünür renk */
	outline: none;
}
/* 
 * İstanbul İl Milli Eğitim Müdürlüğü Mesleki Eğitim Portalı
 * Ana CSS Dosyası
 */

:root {
    --primary-color: #1a5276;
    --secondary-color: #2980b9;
    --accent-color: #3498db;
    --text-color: #fff;
    --light-gray: #f5f5f5;
    --border-color: #eee;
    --shadow: 0 2px 5px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Anasayfa Splash Video */
body.no-scroll {
    overflow: hidden;
}

.splash-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.splash-overlay.visible {
    display: flex;
}

.splash-video-wrapper {
    position: relative;
    max-width: 960px;
    width: 90vw;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-video-wrapper video {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.splash-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

.splash-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.container {
    width: 1200px;
    max-width: 95%;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #1a5276;
    transition: color 0.3s;
}

a:hover {
    color: #2980b9;
}

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

.section-title {
    font-size: 24px;
    color: #1a5276;
    margin: 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.no-content {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 5px;
    color: #777;
    font-style: italic;
}

/* Üst Bar */
.top-bar {
    background-color: #1a5276;
    color: white;
    padding: 5px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.social-icons a.admin-login {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.social-icons a.admin-login:hover {
    background-color: var(--secondary-color);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-align: center; /* İçeriği yatayda ortalar */
}

.logo img {
    display: block;
    margin: 0 auto 10px auto; /* Ortalar ve altta boşluk bırakır */
    width: 80px; /* Logoyu büyütmek için */
    height: auto; /* Oranını korur */
}

.logo-text {
    text-align: center; /* Yazıları ortalar */
    font-size: 12px;
    line-height: 1.5;
    color: #004080; /* İsteğe bağlı yazı rengi */
}

.logo-text small {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    color: #006699; /* İsteğe bağlı alt yazı rengi */
}



/* Header menüsü için düzenli ve tek satırda görünüm */
header nav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    overflow-x: auto;
    background: #fff;
    white-space: nowrap;
    scrollbar-width: thin;
}
header nav ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}
header nav ul li a {
    display: block;
    padding: 7px 10px;
    color: #1a5276;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    font-size: 16px;
}
header nav ul li a.active,
header nav ul li a:hover {
    background: #1a5276;
    color: #fff;
}

/* Competitions forms */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-weight: 600; color: #244c66; }
.form-row input, .form-row textarea { border: 1px solid #e1e8ef; border-radius: 8px; padding: 10px 12px; background: #fff; outline: 0; }
.form-row input:focus, .form-row textarea:focus { border-color: #1a5276; box-shadow: 0 0 0 3px rgba(26,82,118,.08); }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }

/* Ana Bölüm */
.main-section {
    padding: 20px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Manşet Slider */
.featured-slider {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    aspect-ratio: 16 / 10;
    max-height: 70vh;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s;
}

.slider-item.active {
    opacity: 1;
    z-index: 1;
}

.slider-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000; /* Boş alanlarda siyah arka plan */
}

.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.78);
    padding: 24px 28px;
    color: #fff;
    z-index: 2;
    backdrop-filter: blur(2px);
}

.slider-content h2 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0,0,0,0.8);
}

.slider-content p {
    display: none;
}

.slider-content span {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.85);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    z-index: 3;
}

.slider-nav-item {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-nav-item.active {
    background-color: white;
}

/* Haber Kartları */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-card {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

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

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-card-content {
    padding: 15px;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-card h3 a {
    color: #1a5276;
    transition: color 0.3s;
}

.news-card h3 a:hover {
    color: #2980b9;
}

.news-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

/* Yan Bölüm */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px;
}

.sidebar-widget h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #1a5276;
}

/* Anket Widget */
.poll-question {
    margin-bottom: 10px;
    font-weight: 500;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.poll-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.poll-submit {
    background-color: #1a5276;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.poll-submit:hover {
    background-color: #2980b9;
}

/* Anket Sonuçları */
.poll-results {
    margin-top: 15px;
}

.poll-result-item {
    margin-bottom: 10px;
}

.poll-result-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

.poll-result-bar {
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.poll-result-progress {
    height: 100%;
    background-color: #1a5276;
}

.poll-total {
    text-align: right;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Hızlı Linkler */
.quick-links ul {
    list-style: none;
}

.quick-links ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.quick-links ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.quick-links ul li a {
    display: block;
    transition: all 0.3s;
}

.quick-links ul li a:hover {
    padding-left: 5px;
}

/* Hava Durumu Widget */
.weather-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.weather-icon {
    font-size: 36px;
    color: #f39c12;
}

.weather-details {
    flex-grow: 1;
}

.weather-temp {
    font-size: 24px;
    font-weight: bold;
}

.weather-desc {
    color: #666;
}

.weather-forecast {
    display: flex;
    justify-content: space-between;
}

.forecast-day {
    text-align: center;
    font-size: 12px;
}

.forecast-day span {
    display: block;
    margin-top: 5px;
}

/* Döviz Tablosu */
.exchange-table {
    width: 100%;
    border-collapse: collapse;
}

.exchange-table th,
.exchange-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.exchange-table th {
    font-weight: 500;
    color: #1a5276;
}

.exchange-value.up {
    color: #27ae60;
}

.exchange-value.down {
    color: #e74c3c;
}

/* Galeri Bölümü */
.galleries-section {
    padding: 40px 0;
    background-color: white;
}

.galleries-heading {
    text-align: center;
    margin-bottom: 30px;
}

.galleries-heading h2 {
    color: #1a5276;
    font-size: 28px;
}

.galleries-heading p {
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-btn {
    background-color: #f5f5f5;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.tab-btn.active {
    background-color: #1a5276;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.galleries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 200px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 15px;
    color: white;
}

.gallery-item-overlay h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.video-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(26, 82, 118, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-indicator:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

/* Yazarlar Bölümü */
.authors-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.authors-heading {
    text-align: center;
    margin-bottom: 30px;
}

.authors-heading h2 {
    color: #1a5276;
    font-size: 28px;
}

.authors-heading p {
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.author-card {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

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

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a5276;
}

.author-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.author-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.author-link {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f0f0f0;
    border-radius: 3px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.author-link:hover {
    background-color: #e0e0e0;
}

/* Alt Bilgi */
footer {
    background-color: #1a5276;
    color: white;
    padding: 40px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-widget h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-widget p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-widget ul li a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.8);
}

.contact-item i {
    margin-top: 3px;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0,0,0,0.2);
    font-size: 14px;
}

/* İçerik Sayfaları */
.page-header {
    background-color: #1a5276;
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
}

.page-title {
    text-align: center;
}

.page-title h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.page-title p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.breadcrumbs {
    background-color: #f5f5f5;
    padding: 10px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

.breadcrumbs ul li:after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

.breadcrumbs ul li:last-child:after {
    content: '';
}

.breadcrumbs ul li a {
    color: #666;
}

.page-content {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

/* Duyarlı Tasarım */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .galleries-grid,
    .authors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .galleries-grid,
    .authors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-text {
        font-size: 11px;
        max-width: 80px;
    }
    
    header nav ul li a {
        font-size: 13px;
        padding: 5px 5px;
    }
}

@media (max-width: 576px) {
    .galleries-grid,
    .authors-grid {
        grid-template-columns: 1fr;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .featured-slider {
        height: 300px;
    }
}

@media (max-width: 1100px) {
    .logo-text {
        font-size: 14px;
        max-width: 120px;
    }
    header nav ul li a {
        font-size: 14px;
        padding: 6px 7px;
    }
}

@media (max-width: 900px) {
    header nav ul {
        gap: 6px;
    }
    .logo-text {
        font-size: 12px;
        max-width: 90px;
    }
}

/* Haber Detay Sayfası */
.news-detail {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.news-detail-header {
    margin-bottom: 25px;
}

.news-detail-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.news-detail-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-detail-meta i {
    color: #007bff;
}

.news-detail-image {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.news-detail-share h4 {
    margin-bottom: 15px;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-buttons a:hover {
    background: #007bff;
    color: #fff;
}

/* Yorumlar Bölümü */
.comments-section {
    margin-top: 40px;
}

.comments-section h3 {
    margin-bottom: 20px;
    color: #333;
}

.comment-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.comment-form .form-group {
    margin-bottom: 15px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.comment-form textarea {
    height: 120px;
    resize: vertical;
}

.comment-form button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.comment-form button:hover {
    background: #0056b3;
}

/* Yan Bölüm */
.news-sidebar {
    margin-top: 30px;
}

.sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

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

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: #007bff;
    color: #fff;
}

.category-list .count {
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.category-list a:hover .count {
    background: rgba(255,255,255,0.2);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .news-detail {
        padding: 20px;
    }
    
    .news-detail-header h1 {
        font-size: 24px;
    }
    
    .news-detail-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* Alert Stilleri */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.alert li {
    margin-bottom: 5px;
}

.alert li:last-child {
    margin-bottom: 0;
}

/* İletişim Formu için Ek CSS */
.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-info {
    flex: 1;
    padding-right: 30px;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2e86de;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #2e86de;
}

.btn-primary:hover {
    background-color: #1c6ac7;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    background: #2e86de;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    min-width: 40px;
    min-height: 40px;
    box-sizing: border-box;
}

.contact-item .text h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #333;
}

.contact-item .text p {
    margin: 0;
    color: #666;
}

.social-contact {
    margin-top: 30px;
}

.social-contact h4 {
    color: #333;
}

.social-links {
    display: flex;
    margin-top: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #2e86de;
    color: #fff;
}

.map-container {
    margin-top: 30px;
}

.map-container h2 {
    margin-bottom: 20px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

/* Fotoğraf Galerisi Sayfası için Ek CSS */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-img img {
    transform: scale(1.1);
}

.gallery-card-content {
    padding: 20px;
}

.gallery-card-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
    line-height: 1.4;
}

.gallery-card-meta {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.gallery-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery-card-meta i {
    color: #007bff;
}

.gallery-header {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.gallery-header h1 {
    margin: 0 0 15px;
    color: #333;
    font-size: 32px;
    line-height: 1.3;
}

.gallery-meta {
    color: #666;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-meta i {
    color: #007bff;
}

.gallery-description {
    margin: 20px 0;
    line-height: 1.8;
    color: #444;
}

.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.lb-data .lb-number {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

.gallery-share {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.gallery-share h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.share-buttons a:hover {
    transform: scale(1.1);
}

.share-buttons .facebook {
    background: #1877f2;
}

.share-buttons .x {
    background: #000;
}

.share-buttons .whatsapp {
    background: #25d366;
}

.share-buttons .email {
    background: #ea4335;
}

.related-galleries {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.related-galleries h3 {
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    .gallery-header h1 {
        font-size: 24px;
    }
    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-card-img {
        height: 180px;
    }
}

/* Video Galerisi için Ek CSS */
.video-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: #000;
}

.video-container iframe,
.video-container video {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    background: #000;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(26, 82, 118, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    pointer-events: none;
}

.video-title {
    padding: 10px 0 0 0;
    font-size: 15px;
    color: #333;
    text-align: center;
    font-weight: 500;
}

/* Projelerimiz Modern Grid ve Kart Stilleri */
.modern-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.modern-project-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.modern-project-card .icon {
    font-size: 2.5rem;
    color: #1a5276;
    margin-bottom: 18px;
}

.modern-project-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1a5276;
}

.modern-project-card p {
    color: #444;
    font-size: 1rem;
}

.modern-project-card:hover {
    box-shadow: 0 8px 32px rgba(26,82,118,0.13);
    transform: translateY(-4px) scale(1.03);
}

.modern-featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.modern-featured-project-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

.modern-featured-project-card:hover {
    box-shadow: 0 12px 36px rgba(26,82,118,0.15);
    transform: translateY(-6px) scale(1.03);
}

.modern-featured-project-card .project-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.modern-featured-project-card .project-card-content {
    padding: 24px 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modern-featured-project-card h3 {
    font-size: 1.2rem;
    color: #1a5276;
    margin-bottom: 10px;
}

.modern-featured-project-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 18px;
}

.modern-featured-project-card .project-card-meta {
    display: flex;
    gap: 16px;
    font-size: 1rem;
    color: #1a5276;
    align-items: center;
    background: #f3f8fc;
    border-radius: 8px;
    padding: 8px 16px;
    margin-top: 18px;
    justify-content: center;
    font-weight: 500;
}

.modern-featured-project-card .project-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #eaf6fb;
    border-radius: 6px;
    padding: 4px 10px;
}

.modern-featured-project-card .project-card-meta i {
    color: #1a5276;
    font-size: 1.1em;
    margin-right: 3px;
}

@media (max-width: 700px) {
    .modern-projects-grid, .modern-featured-projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .modern-featured-project-card .project-card-image img {
        height: 150px;
    }
    .modern-project-card {
        padding: 20px 10px 16px 10px;
    }
    .project-card-meta {
        flex-direction: column;
        gap: 8px;
        padding: 8px 6px;
    }
    .project-card-meta span {
        padding: 4px 6px;
    }
}

.modern-project-contact {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26,82,118,0.10);
    padding: 40px 24px 32px 24px;
    margin: 48px auto 0 auto;
    max-width: 520px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.modern-project-contact .contact-icon {
    width: 64px;
    height: 64px;
    background: #1a5276;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(26,82,118,0.10);
}

.modern-project-contact h2 {
    font-size: 1.4rem;
    color: #1a5276;
    margin-bottom: 8px;
}

.modern-project-contact p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.modern-project-contact .btn {
    font-size: 1.1rem;
    padding: 12px 32px;
    border-radius: 6px;
}

@media (max-width: 700px) {
    .modern-project-contact {
        padding: 24px 8px 20px 8px;
        max-width: 98%;
    }
    .modern-project-contact .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

.modern-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.modern-section-header h2 {
    font-size: 2rem;
    color: #1a5276;
    font-weight: 700;
    margin: 32px 0 24px 0;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #1a5276;
    display: inline-block;
    padding-bottom: 6px;
    background: linear-gradient(90deg, #eaf6fb 0%, #fff 100%);
    border-radius: 0 0 8px 8px;
}

.modern-section-header p {
    color: #555;
    font-size: 1.08rem;
    max-width: 600px;
    margin: 14px auto 0 auto;
    opacity: 0.85;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .modern-section-header h2 {
        font-size: 1.3rem;
        padding-bottom: 4px;
    }
    .modern-section-header p {
        font-size: 0.98rem;
    }
}

.modern-authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.modern-author-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.modern-author-card:hover {
    box-shadow: 0 8px 32px rgba(26,82,118,0.13);
    transform: translateY(-4px) scale(1.03);
}

.modern-author-card .author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(26,82,118,0.08);
}

.modern-author-card .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modern-author-card h3 {
    font-size: 1.15rem;
    color: #1a5276;
    margin-bottom: 6px;
}

.modern-author-card .author-meta {
    color: #666;
    font-size: 0.98rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.modern-author-card .author-meta i {
    color: #1a5276;
    margin-right: 5px;
}

.modern-author-card .author-actions .btn {
    font-size: 1rem;
    padding: 8px 22px;
    border-radius: 5px;
}

.modern-author-application {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26,82,118,0.10);
    padding: 40px 24px 32px 24px;
    margin: 48px auto 0 auto;
    max-width: 520px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.modern-author-application h2 {
    font-size: 1.3rem;
    color: #1a5276;
    margin-bottom: 8px;
}

.modern-author-application p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.modern-author-application .btn {
    font-size: 1.1rem;
    padding: 12px 32px;
    border-radius: 6px;
}

@media (max-width: 700px) {
    .modern-authors-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .modern-author-card {
        padding: 20px 10px 16px 10px;
    }
    .modern-author-card .author-image {
        width: 70px;
        height: 70px;
    }
    .modern-author-application {
        padding: 24px 8px 20px 8px;
        max-width: 98%;
    }
}

.modern-no-content {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(26,82,118,0.07);
    padding: 48px 24px;
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin: 32px auto;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-gallery-categories-grid {
    margin-bottom: 36px;
}

.modern-gallery-category-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26,82,118,0.07);
    padding: 24px 18px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    margin-bottom: 18px;
}

.modern-gallery-category-card:hover {
    box-shadow: 0 8px 32px rgba(26,82,118,0.13);
    transform: translateY(-4px) scale(1.03);
}

.modern-gallery-category-card h3 {
    color: #1a5276;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.modern-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 24px;
}

.modern-gallery-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26,82,118,0.07);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-gallery-card:hover {
    box-shadow: 0 8px 32px rgba(26,82,118,0.13);
    transform: translateY(-4px) scale(1.03);
}

.modern-gallery-card .gallery-card-img {
    height: 180px;
    overflow: hidden;
}

.modern-gallery-card .gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.modern-gallery-card:hover .gallery-card-img img {
    transform: scale(1.07);
}

.modern-gallery-card .gallery-card-content {
    padding: 18px 16px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modern-gallery-card .gallery-card-content h3 {
    font-size: 1.08rem;
    color: #1a5276;
    margin-bottom: 8px;
}

.modern-gallery-card .gallery-card-meta {
    display: flex;
    gap: 10px;
    font-size: 0.98rem;
    color: #1a5276;
    align-items: center;
    margin-bottom: 8px;
}

.modern-gallery-card .gallery-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #eaf6fb;
    border-radius: 6px;
    padding: 3px 8px;
}

.modern-gallery-card .gallery-card-meta i {
    color: #1a5276;
    font-size: 1em;
    margin-right: 2px;
}

.modern-gallery-card p {
    color: #444;
    font-size: 0.98rem;
    margin: 0;
    opacity: 0.92;
}

@media (max-width: 700px) {
    .modern-gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .modern-gallery-card .gallery-card-img {
        height: 120px;
    }
    .modern-gallery-category-card {
        padding: 14px 6px;
    }
}

.modern-featured-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 24px;
}

.modern-featured-gallery-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(26,82,118,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
}

.modern-featured-gallery-card:hover {
    box-shadow: 0 12px 36px rgba(26,82,118,0.15);
    transform: translateY(-6px) scale(1.03);
}

.modern-featured-gallery-card .featured-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.modern-featured-gallery-card .featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.modern-featured-gallery-card:hover .featured-card-img img {
    transform: scale(1.07);
}

.modern-featured-gallery-card .featured-card-content {
    padding: 18px 16px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modern-featured-gallery-card .featured-card-content h3 {
    font-size: 1.08rem;
    color: #1a5276;
    margin-bottom: 8px;
}

.modern-featured-gallery-card .featured-card-meta {
    display: flex;
    gap: 10px;
    font-size: 0.98rem;
    color: #1a5276;
    align-items: center;
    margin-bottom: 8px;
}

.modern-featured-gallery-card .featured-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #eaf6fb;
    border-radius: 6px;
    padding: 3px 8px;
}

.modern-featured-gallery-card .featured-card-meta i {
    color: #1a5276;
    font-size: 1em;
    margin-right: 2px;
}

@media (max-width: 700px) {
    .modern-featured-gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .modern-featured-gallery-card .featured-card-img {
        height: 120px;
    }
}

.school-detail-modern {
    max-width: 900px;
    margin: 40px auto 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(26,82,118,0.10);
    padding: 38px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.school-detail-modern .school-header-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.school-detail-modern .school-logo-modern img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 14px;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(26,82,118,0.08);
    margin-bottom: 18px;
}

.school-detail-modern .school-title-modern h1 {
    font-size: 2.1rem;
    color: #1a5276;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
}

.school-detail-modern .school-image-modern img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    margin: 18px 0 24px 0;
    box-shadow: 0 2px 12px rgba(26,82,118,0.07);
}

.school-detail-modern .school-content-modern {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 28px 22px;
    margin-bottom: 24px;
    font-size: 1.08rem;
    color: #222;
    width: 100%;
    box-shadow: 0 1px 4px rgba(26,82,118,0.04);
}

.school-detail-modern .school-contact-modern {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(26,82,118,0.06);
    padding: 24px 18px 10px 18px;
    margin-bottom: 18px;
}

.school-detail-modern .school-contact-modern h3 {
    color: #1a5276;
    font-size: 1.18rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.school-detail-modern .contact-details-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.school-detail-modern .contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f5f8fa;
    border-radius: 8px;
    padding: 14px 12px;
    box-shadow: 0 1px 3px rgba(26,82,118,0.03);
}

.school-detail-modern .contact-item-modern .icon {
    color: #1a5276;
    font-size: 1.3rem;
    margin-top: 2px;
    min-width: 28px;
    text-align: center;
}

.school-detail-modern .contact-item-modern .text h4 {
    font-size: 1.01rem;
    margin: 0 0 2px 0;
    color: #1a5276;
    font-weight: 600;
}

.school-detail-modern .contact-item-modern .text p, .school-detail-modern .contact-item-modern .text a {
    color: #444;
    font-size: 0.99rem;
    margin: 0;
    word-break: break-all;
}

@media (max-width: 700px) {
    .school-detail-modern { padding: 10px 2vw; }
    .school-detail-modern .school-content-modern { padding: 14px 6px; }
    .school-detail-modern .school-contact-modern { padding: 12px 4px 6px 4px; }
}

/* Modern Okullarımız Sayfası Stilleri */
.schools-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.schools-filters {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.search-form {
    display: flex;
    align-items: center;
    max-width: 600px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26,82,118,0.06);
    transition: all 0.3s ease;
    border: 1px solid #e8f0f7;
    overflow: hidden;
    margin: 0 auto;
}

.search-form:focus-within {
    box-shadow: 0 6px 24px rgba(26,82,118,0.12);
    border-color: #1a5276;
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    min-width: 0;
    position: relative;
}

.search-input input {
    width: 100%;
    padding: 16px 24px;
    border: none;
    font-size: 1.05rem;
    outline: none;
    background: transparent;
    height: 100%;
    color: #2c3e50;
}

.search-input input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-form button {
    background: #1a5276;
    color: #fff;
    border: none;
    padding: 0 24px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-width: 60px;
}

.search-form button:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .search-form {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .search-input input {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .search-form button {
        padding: 0 20px;
        font-size: 1.1rem;
        min-width: 50px;
    }
}

.btn-clear {
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-clear:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.school-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border: 1px solid #f0f0f0;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26,82,118,0.15);
}

.school-logo {
    margin-bottom: 20px;
}

.school-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    background: #f8f9fa;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(26,82,118,0.08);
    transition: transform 0.3s ease;
}

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

.school-card-content {
    text-align: center;
    width: 100%;
}

.school-card-content h3 {
    font-size: 1.2rem;
    color: #1a5276;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.school-card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.btn-view {
    background: #1a5276;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.no-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.no-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a, .pagination span {
    padding: 10px 18px;
    border-radius: 8px;
    background: #fff;
    color: #1a5276;
    font-weight: 500;
    border: 1px solid #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover, .pagination span.active {
    background: #1a5276;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .schools-section {
        padding: 20px 0;
    }
    
    .search-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-input input {
        padding: 10px 15px;
    }
    
    .search-form button {
        padding: 12px;
    }
    
    .schools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .school-card {
        padding: 20px 15px;
    }
    
    .school-logo img {
        width: 80px;
        height: 80px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

/* Haberler Sayfası Stilleri */
.news-section .content-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.main-content {
    flex: 1 1 0;
    min-width: 0;
}

.news-list.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 18px;
}

.news-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(26,82,118,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
    border: 1px solid #f0f0f0;
}

.news-card:hover {
    box-shadow: 0 8px 32px rgba(26,82,118,0.13);
}

.news-card-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.news-card-content {
    padding: 22px 20px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.news-card-content h3 {
    font-size: 1.18rem;
    color: #1a5276;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.news-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.98rem;
    color: #6c7a89;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.news-card-meta i {
    margin-right: 4px;
    color: #2980b9;
}

.news-card-content p {
    color: #444;
    font-size: 1.01rem;
    margin-bottom: 12px;
    flex: 1 1 auto;
}

.read-more {
    align-self: flex-end;
    color: #1a5276;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.01rem;
    transition: color 0.2s;
}

.read-more:hover {
    color: #2980b9;
}

.sidebar {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26,82,118,0.07);
    padding: 22px 18px 18px 18px;
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 1.08rem;
    color: #1a5276;
    font-weight: 700;
    margin-bottom: 14px;
}

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

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    color: #1a5276;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
}

.category-list a.active, .category-list a:hover {
    background: #eaf6fb;
    color: #2980b9;
}

.category-list .count {
    background: #f0f4f8;
    color: #1a5276;
    font-size: 0.93rem;
    border-radius: 8px;
    padding: 2px 8px;
    margin-left: 8px;
}

.category-list a:hover .count {
    background: rgba(255,255,255,0.2);
}

.recent-news {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-news-image img {
    width: 60px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

.recent-news-content h4 {
    font-size: 1rem;
    margin: 0 0 2px 0;
    color: #1a5276;
    font-weight: 600;
}

.recent-news-content .date {
    font-size: 0.93rem;
    color: #6c7a89;
}

.filters {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.search-form {
    display: flex;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.search-form input[type="text"] {
    border: none;
    padding: 10px 14px;
    font-size: 1rem;
    outline: none;
    width: 180px;
}

.search-form button {
    background: #1a5276;
    color: #fff;
    border: none;
    padding: 0 16px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.search-form button:hover {
    background: #2980b9;
}

.btn.btn-small.btn-danger {
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.98rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn.btn-small.btn-danger:hover {
    background: #c0392b;
}

.no-content {
    background: #f8f9fa;
    color: #888;
    border-radius: 10px;
    padding: 32px 18px;
    text-align: center;
    font-size: 1.08rem;
    margin-top: 18px;
}

.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 32px 0 0 0;
}

.pagination a, .pagination span {
    padding: 8px 14px;
    border-radius: 6px;
    background: #fff;
    color: #1a5276;
    font-weight: 500;
    border: 1px solid #eaf6fb;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.pagination a:hover, .pagination span.active {
    background: #1a5276;
    color: #fff;
}

@media (max-width: 1100px) {
    .news-section .content-wrapper {
        flex-direction: column;
        gap: 18px;
    }
    .sidebar {
        width: 100%;
        flex-direction: row;
        gap: 18px;
    }
    .sidebar-widget {
        flex: 1 1 0;
    }
}

@media (max-width: 700px) {
    .news-section .content-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .news-list.news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .sidebar {
        flex-direction: column;
        gap: 10px;
    }
    .sidebar-widget {
        padding: 14px 8px 10px 8px;
    }
    .news-card-img img {
        height: 160px;
    }
}

/* Modern Haber Arama Formu */
.filters {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.search-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    width: 100%;
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(26,82,118,0.08);
    transition: all 0.3s ease;
}

.search-form:focus-within {
    box-shadow: 0 4px 20px rgba(26,82,118,0.12);
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    position: relative;
}

.search-input input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eaf6fb;
    border-radius: 12px 0 0 12px;
    font-size: 1.05rem;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.search-input input:focus {
    border-color: #1a5276;
    box-shadow: 0 0 0 4px rgba(26,82,118,0.1);
}

.search-input input::placeholder {
    color: #94a3b8;
}

.search-form button {
    background: #1a5276;
    color: #fff;
    border: none;
    width: 60px;
    height: 100%;
    border-radius: 0 12px 12px 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form button:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .search-form {
        max-width: 100%;
    }
    
    .search-input input {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .search-form button {
        width: 50px;
        font-size: 1.1rem;
    }
}

/* Haber Detay Sayfası Sidebar Stilleri */
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26,82,118,0.07);
    padding: 22px 18px 18px 18px;
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-size: 1.08rem;
    color: #1a5276;
    font-weight: 700;
    margin-bottom: 14px;
}

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

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    color: #1a5276;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
}

.category-list a:hover {
    background: #eaf6fb;
    color: #2980b9;
}

.category-list .count {
    background: #f0f4f8;
    color: #1a5276;
    font-size: 0.93rem;
    border-radius: 8px;
    padding: 2px 8px;
    margin-left: 8px;
}

.recent-news {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-news-image img {
    width: 60px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

.recent-news-content h4 {
    font-size: 1rem;
    margin: 0 0 2px 0;
    color: #1a5276;
    font-weight: 600;
}

.recent-news-content .views {
    font-size: 0.93rem;
    color: #6c7a89;
}

@media (max-width: 900px) {
    .sidebar-widget {
        padding: 14px 8px 10px 8px;
    }
}

/* Arama Kutusu */
.search-form {
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

.search-input {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.search-input:focus-within {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.search-input input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 25px;
    font-size: 16px;
    color: #333;
    width: 100%;
    outline: none;
}

.search-input input::placeholder {
    color: #999;
}

.search-input button {
    background: #2196F3;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 5px;
}

.search-input button:hover {
    background: #1976D2;
    transform: scale(1.05);
}

.search-input button i {
    font-size: 18px;
}

.btn-clear {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    color: #2196F3;
}

.btn-clear i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .search-input input {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .search-input button {
        width: 45px;
        height: 45px;
    }
    
    .search-input button i {
        font-size: 16px;
    }
}

/* Yazar Sayfası Stilleri */
.other-authors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.other-author-item {
    text-align: center;
    transition: transform 0.2s;
}

.other-author-item:hover {
    transform: translateY(-3px);
}

.other-author-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.other-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.other-author-name {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.other-author-name a {
    color: #333;
    text-decoration: none;
}

.other-author-name a:hover {
    color: #007bff;
}

.view-all {
    margin-top: 20px;
    text-align: center;
}

.view-all .btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Sosyal Medya Paylaşım Stilleri */
.social-share {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-share a i {
    font-size: 1.1rem;
}

.social-share .facebook {
    background: #1877f2;
}

.social-share .twitter {
    background: #1da1f2;
}

.social-share .whatsapp {
    background: #25d366;
}

.social-share .email {
    background: #ea4335;
}

.social-share a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .other-authors {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
}

/* Yazar Sayfası Modern Stilleri */
.author-profile {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26,82,118,0.10);
    padding: 32px;
    margin-bottom: 32px;
}

.author-header {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26,82,118,0.15);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h1 {
    font-size: 2rem;
    color: #1a5276;
    margin-bottom: 16px;
    font-weight: 700;
}

.author-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: #eaf6fb;
    transform: translateY(-2px);
}

.meta-item i {
    color: #1a5276;
    font-size: 1.1rem;
}

.meta-count {
    font-weight: 600;
    color: #1a5276;
    font-size: 1.1rem;
}

.meta-label {
    color: #666;
}

.meta-link {
    color: #1a5276;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.meta-link:hover {
    color: #2980b9;
}

.author-bio {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    color: #444;
    line-height: 1.7;
    font-size: 1.05rem;
}

.author-articles {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26,82,118,0.10);
    padding: 32px;
}

.author-articles h2 {
    font-size: 1.5rem;
    color: #1a5276;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eaf6fb;
}

.article-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    border-bottom: 1px solid #eaf6fb;
    transition: all 0.3s ease;
}

.article-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.article-image {
    flex: 0 0 200px;
}

.article-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.article-content {
    flex: 1;
}

.article-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.article-content h3 a {
    color: #1a5276;
    text-decoration: none;
    transition: color 0.3s;
}

.article-content h3 a:hover {
    color: #2980b9;
}

.article-meta {
    display: flex;
    gap: 16px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta i {
    color: #1a5276;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a5276;
    font-weight: 500;
    text-decoration: none;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #2980b9;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .author-header {
        flex-direction: column;
        text-align: center;
    }
    
    .author-meta {
        justify-content: center;
    }
    
    .article-item {
        flex-direction: column;
    }
    
    .article-image {
        flex: 0 0 auto;
    }
}

/* Okul Video Stilleri */
.school-video-modern {
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.school-video-modern h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.video-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: #000;
}

.video-container iframe,
.video-container video {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    background: #000;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(26, 82, 118, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    pointer-events: none;
}

.video-title {
    padding: 10px 0 0 0;
    font-size: 15px;
    color: #333;
    text-align: center;
    font-weight: 500;
}

/* Responsive Video */
@media (max-width: 768px) {
    .video-container {
        width: 400px;
        height: 400px;
    }
    
    .school-video-modern {
        padding: 20px;
        margin: 20px 0;
    }
    
    .school-video-modern h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .video-container {
        width: 300px;
        height: 300px;
    }
}

/* Catalog Section Styles */
.catalog-section {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(26, 82, 118, 0.3);
    position: relative;
    overflow: hidden;
}

.catalog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.catalog-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.catalog-header h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.catalog-header h2 i {
    margin-right: 10px;
    color: #f39c12;
}

.catalog-header p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin: 0;
}

.catalog-embed {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.catalog-frame-wrapper {
    flex: 1;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    min-height: 500px;
}

.catalog-frame-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.catalog-info {
    flex: 0 0 300px;
    background: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.catalog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.catalog-badge i {
    font-size: 16px;
}

.catalog-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #1a5276, #2980b9);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 82, 118, 0.3);
}

.btn-catalog:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 82, 118, 0.4);
    color: white;
}

.btn-catalog i {
    font-size: 16px;
}

/* Responsive Design for Catalog */
@media (max-width: 1024px) {
    .catalog-embed {
        flex-direction: column;
        gap: 20px;
    }
    
    .catalog-info {
        flex: none;
        width: 100%;
    }
    
    .catalog-frame-wrapper {
        min-height: 400px;
    }
    
    .catalog-frame-wrapper iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .catalog-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .catalog-header h2 {
        font-size: 24px;
    }
    
    .catalog-header p {
        font-size: 14px;
    }
    
    .catalog-frame-wrapper {
        min-height: 350px;
    }
    
    .catalog-frame-wrapper iframe {
        height: 350px;
    }
    
    .catalog-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .catalog-section {
        padding: 15px;
    }
    
    .catalog-header h2 {
        font-size: 20px;
    }
    
    .catalog-frame-wrapper {
        min-height: 300px;
    }
    
    .catalog-frame-wrapper iframe {
        height: 300px;
    }
    
    .catalog-info {
        padding: 15px;
    }
    
    .btn-catalog {
        width: 100%;
        justify-content: center;
    }
}