/* ========================================
   BAŞARI HİKAYELERİ PAGE CSS
======================================== */

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f9fc;
    padding: 15px 0;
    margin-top: 60px;
}
.breadcrumb { margin: 0; padding: 0; background: none; }
.breadcrumb-item { font-size: 13px; }
.breadcrumb-item a { color: var(--text-gray); }
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { color: var(--orange); }

/* ========================================
   HERO SECTION
======================================== */
.page-hero {
    background: linear-gradient(135deg, #0A1931, #1a3a5c);
    padding: 60px 0;
    text-align: center;
}
.page-hero-content { max-width: 700px; margin: 0 auto; }
.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,127,0,0.2);
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 25px;
    margin-bottom: 20px;
}
.page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero .hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* ========================================
   STATS SECTION
======================================== */
.stats-section {
    padding: 45px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.stat-card {
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fc;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.stat-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255,127,0,0.1), rgba(255,127,0,0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.stat-icon i { font-size: 22px; color: var(--orange); }
.stat-card .number {
    font-size: 32px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 4px;
}
.stat-card .label {
    font-size: 14px;
    color: var(--text-gray);
}

/* ========================================
   FEATURED STORY
======================================== */
.featured-section {
    padding: 60px 0;
    background: #f8f9fc;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,127,0,0.1);
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}
.section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 10px;
    margin-top: 0;
}
.section-header p {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 550px;
    margin: 0 auto;
}

.featured-story {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
.featured-video {
    flex: 0 0 50%;
    position: relative;
    min-height: 380px;
    background: #000;
}
.featured-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255,127,0,0.5);
    transition: all 0.3s ease;
}
.play-btn i { color: #fff; font-size: 28px; margin-left: 5px; }
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }

.featured-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    width: fit-content;
}
.featured-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}
.featured-content .quote {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--orange);
}
.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.story-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}
.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 3px;
}
.author-info span {
    font-size: 13px;
    color: var(--text-gray);
}
.story-result {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}
.result-badge {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.result-badge i { font-size: 11px; }

/* ========================================
   STORIES GRID
======================================== */
.stories-section {
    padding: 60px 0;
    background: #fff;
}
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-tab {
    padding: 10px 22px;
    border: 2px solid #e8e8e8;
    border-radius: 25px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-tab:hover { border-color: var(--orange); color: var(--orange); }
.filter-tab.active {
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    border-color: var(--orange);
    color: #fff;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.story-card {
    background: #f8f9fc;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.story-card:hover {
    background: #fff;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.story-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.story-card:hover .story-image img { transform: scale(1.05); }
.story-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 15px;
}
.story-body {
    padding: 22px;
}
.story-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}
.story-rating i { color: #ffc107; font-size: 13px; }
.story-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.story-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 18px;
}
.story-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e8e8e8;
}
.story-user {
    display: flex;
    align-items: center;
    gap: 10px;
}
.story-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.story-user .name {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-dark);
}
.story-user .location {
    font-size: 12px;
    color: var(--text-gray);
}
.story-tag {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 12px;
}

/* Load
 More */
.load-more {
    text-align: center;
    margin-top: 40px;
}
.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--blue-dark);
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-load-more:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
}
.cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-white {
    background: #fff;
    color: var(--orange);
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    color: var(--orange);
}
.btn-cta-outline {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991px) {
    .page-hero h1 { font-size: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    
    .featured-story { flex-direction: column; }
    .featured-video { min-height: 280px; }
    .featured-content { padding: 30px; }
    .featured-content h3 { font-size: 22px; }
    
    .stories-grid { grid-template-columns: repeat(2, 1fr); }
    .section-header h2 { font-size: 26px; }
}

@media (max-width: 767px) {
    .page-hero { padding: 40px 0; }
    .page-hero h1 { font-size: 26px; }
    .page-hero .hero-desc { font-size: 14px; }
    
    .stats-section { padding: 35px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-card { padding: 20px 12px; border-radius: 14px; }
    .stat-icon { width: 45px; height: 45px; margin-bottom: 10px; }
    .stat-icon i { font-size: 18px; }
    .stat-card .number { font-size: 26px; }
    .stat-card .label { font-size: 12px; }
    
    .featured-section { padding: 45px 0; }
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 22px; }
    .section-header p { font-size: 14px; }
    
    .featured-video { min-height: 220px; }
    .play-btn { width: 65px; height: 65px; }
    .play-btn i { font-size: 22px; }
    .featured-content { padding: 25px 20px; }
    .featured-content h3 { font-size: 20px; margin-bottom: 12px; }
    .featured-content .quote { font-size: 14px; padding-left: 15px; margin-bottom: 20px; }
    .story-author img { width: 45px; height: 45px; }
    .author-info h4 { font-size: 14px; }
    .author-info span { font-size: 12px; }
    
    .stories-section { padding: 45px 0; }
    .filter-tabs { gap: 8px; margin-bottom: 30px; }
    .filter-tab { padding: 8px 16px; font-size: 13px; border-radius: 20px; }
    
    .stories-grid { grid-template-columns: 1fr; gap: 20px; }
    .story-image { height: 180px; }
    .story-body { padding: 18px; }
    .story-body h3 { font-size: 16px; }
    .story-body p { font-size: 13px; margin-bottom: 15px; }
    .story-user img { width: 35px; height: 35px; }
    .story-user .name { font-size: 13px; }
    
    .cta-section { padding: 45px 0; }
    .cta-content h2 { font-size: 24px; }
    .cta-content p { font-size: 14px; margin-bottom: 25px; }
    .cta-buttons { flex-direction: column; }
    .btn-cta-white, .btn-cta-outline { width: 100%; justify-content: center; padding: 14px 30px; }
}