/* ==========================================
   SUHUT ANAYURT - LAYOUTS CSS
   Sayfa Düzenleri, Grid'ler ve Özel Sayfalar
   ========================================== */

/* ==========================================
   ANA İÇERİK ALANI
   ========================================== */
.main-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin: 30px 0;
}

.content-area {
    min-width: 0;
}

/* ==========================================
   HERO LAYOUT
   ========================================== */
.hero-layout {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.hero-slider {
    flex: 1;
    min-width: 0;
}

/* ==========================================
   KATEGORİ BÖLÜMLERI
   ========================================== */
.category-section {
    margin-bottom: 40px;
}

/* ==========================================
   HABER GRİD'LERİ
   ========================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.news-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.news-grid-3.full-width-grid {
    grid-template-columns: repeat(3, 1fr);
}

.news-grid-ad-break {
    grid-column: 1 / -1;
    padding: 25px 0;
    margin: 10px 0;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.no-posts-full {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.no-posts-full svg {
    color: var(--gray);
    margin-bottom: 20px;
}

.no-posts-full h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.no-posts-full p {
    color: var(--text-color);
    margin-bottom: 25px;
}

.btn-back-home {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-back-home:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.news-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* ==========================================
   SIDEBAR
   ========================================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ==========================================
   HABER DETAY SAYFASI
   ========================================== */
.article-detail {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.article-category-badge {
    display: inline-block;
    padding: 6px 15px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.article-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 25px;
}

.article-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
}

.author-info-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info-inline img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.article-meta-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.article-meta-info > span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-light);
}

.article-detail-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.article-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 15px;
    background: var(--bg-color);
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.article-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.article-detail-content p {
    margin-bottom: 20px;
}

.article-detail-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.article-detail-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 12px;
}

.article-detail-content blockquote {
    border-left: 4px solid var(--primary-color);
    background: var(--bg-color);
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    color: var(--secondary-color);
    font-size: 17px;
    line-height: 1.7;
    border-radius: var(--border-radius);
}

.article-detail-content ul,
.article-detail-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.article-detail-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Etiketler */
.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 25px 0;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.tag-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.article-tag {
    padding: 6px 15px;
    background: var(--bg-color);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 13px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.article-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Paylaşım */
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    margin-bottom: 25px;
}

.article-share > span {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.share-btn.facebook { background: #1877f2; color: var(--white); }
.share-btn.twitter { background: #1da1f2; color: var(--white); }
.share-btn.whatsapp { background: #25d366; color: var(--white); }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ==========================================
   YAZAR DETAY SAYFASI
   ========================================== */
.author-profile {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    padding: 50px 0;
    margin-bottom: 30px;
}

.author-profile-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.author-avatar-large {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    color: var(--white);
}

.author-name-large {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.author-title-large {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 20px;
    font-weight: 500;
}

.author-bio-long {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 700px;
}

.author-stats-large {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   YAZARLAR ARŞİV SAYFASI
   ========================================== */
.writers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.writer-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.writer-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.writer-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 30px auto 20px;
    border: 4px solid var(--primary-color);
}

.writer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.writer-info {
    padding: 0 25px 30px;
    text-align: center;
}

.writer-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.writer-title {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.writer-bio {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.writer-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* ==========================================
   KATEGORİLER SAYFASI
   ========================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    padding: 30px 0;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
}

.category-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.category-card:hover::before {
    width: 8px;
}

.category-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    border-radius: 50%;
    color: var(--primary-color);
}

.category-info {
    flex: 1;
}

.category-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.category-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.category-count-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    transition: var(--transition);
}

.category-card:hover .category-count-badge {
    background: var(--primary-color);
    color: var(--white);
}

/* ==========================================
   İLETİŞİM SAYFASI
   ========================================== */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
}

/* ==========================================
   KÜNYE SAYFASI
   ========================================== */
.kunye-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.kunye-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.kunye-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.kunye-info strong {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    min-width: 200px;
}

/* ==========================================
   TEKİL İÇERİK SAYFASI
   ========================================== */
.page-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.text-section {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.text-section .lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
}

/* ==========================================
   İLGİLİ HABERLER
   ========================================== */
.related-news {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.related-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

/* ==========================================
   YORUMLAR
   ========================================== */
.comments-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.comments-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

/* ==========================================
   RESPONSIVE - LAYOUTS
   ========================================== */
@media (max-width: 1400px) {
    .hero-layout {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 968px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-side-news {
        flex-direction: row;
    }
    
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .news-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .author-profile-content {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar-large {
        width: 150px;
        height: 150px;
    }
    
    .author-stats-large {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .article-detail {
        padding: 25px;
    }
    
    .article-detail-title {
        font-size: 26px;
    }
    
    .article-detail-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .page-content {
        padding: 25px;
    }
    
    .writers-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .news-grid-3,
    .news-grid-3.full-width-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid-ad-break {
        padding: 20px 0;
    }
    
    .no-posts-full {
        padding: 50px 20px;
    }
    
    .no-posts-full h3 {
        font-size: 20px;
    }
    
    .hero-side-news {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .kunye-info strong {
        display: block;
        margin-bottom: 5px;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-name {
        font-size: 18px;
    }
}

/* ==========================================
   İLETİŞİM SAYFASI
   ========================================== */

/* Sayfa Header */
.contact-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.contact-header .page-title {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-header .page-description {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-header .page-description p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Sayfa Layout */
.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.contact-main {
    min-width: 0;
}

.contact-sidebar {
    min-width: 0;
}

/* İletişim Kartları */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
}

.contact-card-content h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-card-content p {
    margin: 5px 0;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Sosyal Medya Kartı */
.contact-card-social {
    grid-column: 1 / -1;
}

.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-link.facebook { background: #1877f2; }
.social-link.twitter { background: #000; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.youtube { background: #ff0000; }

/* Harita Bölümü */
.contact-map-section {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-map-section .section-title {
    padding: 20px 25px;
    margin: 0;
    font-size: 20px;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--gray);
}

.contact-map-section .section-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-map {
    position: relative;
    width: 100%;
    height: 400px;
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Sidebar Widget'ları */
.contact-sidebar .sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    overflow: hidden;
}

.contact-sidebar .widget-title {
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.contact-sidebar .widget-title i {
    margin-right: 10px;
}

.contact-sidebar .widget-content {
    padding: 20px;
}

/* Hızlı İletişim Widget */
.quick-contact-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    background: var(--light-gray);
}

.quick-contact-item:last-child {
    margin-bottom: 0;
}

.quick-contact-item.urgent {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
}

.quick-contact-item.whatsapp {
    background: #f0fff4;
    border-left: 4px solid #25d366;
}

.quick-contact-item.hours {
    background: #f0f7ff;
    border-left: 4px solid #3498db;
}

.quick-contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.quick-contact-item.urgent .quick-contact-icon {
    background: #e74c3c;
    color: var(--white);
}

.quick-contact-item.whatsapp .quick-contact-icon {
    background: #25d366;
    color: var(--white);
}

.quick-contact-item.hours .quick-contact-icon {
    background: #3498db;
    color: var(--white);
}

.quick-contact-info {
    flex: 1;
}

.quick-contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.quick-contact-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
}

.quick-contact-value:hover {
    color: var(--primary-color);
}

.quick-contact-value.small {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
}

.quick-contact-note {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 5px;
}

/* Bilgilendirme Widget */
.info-widget .widget-content p {
    margin: 0 0 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 8px 0;
    color: var(--text-color);
    border-bottom: 1px dashed var(--gray);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    margin-right: 10px;
    color: #27ae60;
}

/* Reklam Widget */
.ad-widget {
    padding: 0 !important;
    text-align: center;
}

.ad-widget img {
    max-width: 100%;
    height: auto;
}

/* İletişim Responsive */
@media (max-width: 1024px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-card-social {
        grid-column: auto;
    }
    
    .contact-header {
        padding: 30px 15px;
    }
    
    .contact-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-card-icon {
        margin: 0 auto;
    }
    
    .contact-social-links {
        justify-content: center;
    }
    
    .quick-contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-contact-icon {
        margin: 0 auto 10px;
    }
}

/* ==========================================
   HAKKIMIZDA SAYFASI
   ========================================== */

/* Sayfa Header */
.about-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.about-header .page-title {
    color: var(--white);
    margin-bottom: 15px;
}

.about-header .page-description {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Sayfa Layout */
.about-page-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 50px;
}

.about-main {
    min-width: 0;
}

.about-sidebar {
    min-width: 0;
}

/* Hero Görsel */
.about-hero-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.about-hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* İçerik Bölümü */
.about-content-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.about-content {
    line-height: 1.8;
    color: var(--text-color);
}

.about-content p {
    margin-bottom: 15px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Misyon, Vizyon, Değerler */
.about-mvv-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.mvv-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    color: var(--white);
}

.mvv-card.mission .mvv-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.mvv-card.vision .mvv-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.mvv-card.values .mvv-icon {
    background: linear-gradient(135deg, #27ae60, #1e8449);
}

.mvv-title {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mvv-content {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 14px;
}

.mvv-content p {
    margin-bottom: 10px;
}

.mvv-content p:last-child {
    margin-bottom: 0;
}

/* Tarihçe Bölümü */
.about-history-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.about-history-section .section-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray);
}

.about-history-section .section-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

.history-content {
    color: var(--text-color);
    line-height: 1.8;
}

.history-content p {
    margin-bottom: 15px;
}

/* İstatistikler */
.about-stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

/* Sidebar Widget'ları */
.about-sidebar .sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    overflow: hidden;
}

.about-sidebar .widget-title {
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.about-sidebar .widget-title i {
    margin-right: 10px;
}

.about-sidebar .widget-content {
    padding: 20px;
}

/* Hızlı Bilgiler */
.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--gray);
}

.quick-info-list li:last-child {
    border-bottom: none;
}

.quick-info-list li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.quick-info-list li span {
    flex: 1;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.4;
}

.quick-info-list li strong {
    color: var(--secondary-color);
}

/* İletişim CTA */
.about-contact-cta .widget-content p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-contact:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* Sosyal Medya Grid */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.social-links-grid .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    border-radius: 8px;
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links-grid .social-link:hover {
    transform: scale(1.1);
}

.social-links-grid .social-link.facebook { background: #1877f2; }
.social-links-grid .social-link.twitter { background: #000; }
.social-links-grid .social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links-grid .social-link.youtube { background: #ff0000; }

/* Hakkımızda Responsive */
@media (max-width: 1024px) {
    .about-page-layout {
        grid-template-columns: 1fr;
    }
    
    .about-sidebar {
        order: 2;
    }
    
    .about-mvv-section {
        grid-template-columns: 1fr;
    }
    
    .about-stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header {
        padding: 35px 15px;
    }
    
    .about-hero-image img {
        height: 250px;
    }
    
    .about-badge {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    .about-content-section,
    .about-history-section {
        padding: 25px;
    }
    
    .mvv-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .about-stats-section {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
