/**
 * ============================================
 * FENERBAHÇE ANKARA SPOR OKULLARI
 * Unified Premium CSS Dosyası
 * Bootstrap 3.3.5 Uyumlu
 * ============================================
 * Bu dosya tüm sayfa türleri için kullanılabilir
 * Renk Paleti:
 * - Sarı: #FFED00 (Ana)
 * - Lacivert: #001C58 (Ana)
 * - Koyu Lacivert: #00102E
 * - Açık Gri: #f8f9fa
 * ============================================
 */

/* ============================================
   1. GLOBAL STYLES & RESETS
   ============================================ */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2d4050;
    overflow-x: hidden;
}

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

a {
    transition: all 0.3s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   2. FENERBAHÇE COLOR SYSTEM
   ============================================ */
.fb-bg-navy {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
}

.fb-bg-yellow {
    background: linear-gradient(135deg, #FFED00 0%, #FDD835 100%);
}

.fb-text-navy {
    color: #001C58 !important;
}

.fb-text-yellow {
    color: #FFED00 !important;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', 'Open Sans', serif;
    font-weight: 700;
    color: #001C58;
    margin-top: 0;
}

.fb-title-main {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.fb-title-section {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.fb-title-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFED00 0%, #FDD835 100%);
    border-radius: 2px;
}

.fb-title-card {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* ============================================
   4. BUTTONS & LINKS
   ============================================ */
.fb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.fb-btn-primary {
    background: linear-gradient(135deg, #FFED00 0%, #FDD835 100%);
    color: #001C58;
    box-shadow: 0 4px 15px rgba(255, 237, 0, 0.3);
}

.fb-btn-primary:hover {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #FFED00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 28, 88, 0.3);
}

.fb-btn-secondary {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 28, 88, 0.2);
}

.fb-btn-secondary:hover {
    background: linear-gradient(135deg, #FFED00 0%, #FDD835 100%);
    color: #001C58;
    transform: translateY(-2px);
}

.fb-btn-outline {
    background: transparent;
    color: #001C58;
    border: 2px solid #001C58;
}

.fb-btn-outline:hover {
    background: #001C58;
    color: #fff;
}

.fb-btn i {
    margin-right: 8px;
}

/* ============================================
   5. CARDS & CONTAINERS
   ============================================ */
.fb-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.fb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.fb-card-header {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
    margin: -30px -30px 30px -30px;
}

.fb-card-yellow-accent {
    border-top: 4px solid #FFED00;
}

/* ============================================
   6. CONTENT WRAPPER
   ============================================ */
.fb-content-wrapper {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 500px;
}

/* ============================================
   7. BREADCRUMB / NAVIGATION
   ============================================ */
.fb-breadcrumb {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fb-back-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FFED00 0%, #FDD835 100%);
    color: #001C58;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 237, 0, 0.3);
}

.fb-back-button i {
    margin-right: 8px;
    transition: margin-right 0.3s ease;
}

.fb-back-button:hover {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #FFED00;
    transform: translateX(-5px);
    text-decoration: none;
}

.fb-back-button:hover i {
    margin-right: 12px;
}

.fb-breadcrumb-text {
    color: #888;
    font-size: 14px;
}

.fb-breadcrumb-text i {
    color: #FFED00;
    margin: 0 10px;
}

.fb-breadcrumb-text strong {
    color: #001C58;
}

/* ============================================
   8. POST/ARTICLE HEADER
   ============================================ */
.fb-post-header {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 28, 88, 0.3);
    position: relative;
    overflow: hidden;
}

.fb-post-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 237, 0, 0.1) 0%, transparent 70%);
    animation: fb-pulse 4s ease-in-out infinite;
}

@keyframes fb-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.fb-post-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.fb-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.fb-post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fb-post-meta-item i {
    color: #FFED00;
}
/* ============================================
   9. CONTENT BODY
   ============================================ */
.fb-content-body {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
}

.fb-content-body p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.fb-content-body h2 {
    font-size: 28px;
    color: #001C58;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FFED00;
}

.fb-content-body h3 {
    font-size: 22px;
    color: #001C58;
    margin-top: 30px;
    margin-bottom: 15px;
}

.fb-content-body strong {
    color: #001C58;
    font-weight: 600;
}

.fb-content-body ul,
.fb-content-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.fb-content-body li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.fb-content-body blockquote {
    background: #f8f9fa;
    border-left: 5px solid #FFED00;
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.fb-content-body img {
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   10. FEATURED IMAGE / MEDIA
   ============================================ */
.fb-featured-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.fb-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.fb-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.fb-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   11. SIDEBAR
   ============================================ */
.fb-sidebar {
    margin-top: 0;
}

.fb-sidebar-widget {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #FFED00;
}

.fb-sidebar-widget h3 {
    font-size: 20px;
    color: #001C58;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

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

.fb-sidebar-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.fb-sidebar-list li:last-child {
    border-bottom: none;
}

.fb-sidebar-list a {
    color: #444;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.fb-sidebar-list a:hover {
    color: #001C58;
    padding-left: 10px;
}

.fb-sidebar-list a i {
    color: #FFED00;
    margin-right: 10px;
    font-size: 12px;
}

/* ============================================
   12. INFO BOXES & HIGHLIGHTS
   ============================================ */
.fb-info-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border-left: 5px solid #FFED00;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 8px;
}

.fb-info-box h4 {
    color: #001C58;
    font-size: 18px;
    margin-bottom: 10px;
}

.fb-info-box p {
    margin-bottom: 0;
    color: #555;
}

.fb-warning-box {
    background: linear-gradient(135deg, #fff3e6 0%, #fff9f0 100%);
    border-left: 5px solid #ff9800;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 8px;
}

.fb-success-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f2 100%);
    border-left: 5px solid #4caf50;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 8px;
}

/* ============================================
   13. LISTS & NUMBERED ITEMS
   ============================================ */
.fb-list-styled {
    list-style: none;
    padding: 0;
    counter-reset: fb-counter;
}

.fb-list-styled li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    counter-increment: fb-counter;
}

.fb-list-styled li::before {
    content: counter(fb-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FFED00 0%, #FDD835 100%);
    color: #001C58;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.fb-checklist {
    list-style: none;
    padding: 0;
}

.fb-checklist li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.fb-checklist li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #FFED00;
    font-size: 18px;
}

/* ============================================
   14. TABLES
   ============================================ */
.fb-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.fb-table thead {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #fff;
}

.fb-table thead th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fb-table tbody tr {
    background: #fff;
    transition: all 0.3s ease;
}

.fb-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.fb-table tbody tr:hover {
    background: #fff9e6;
}

.fb-table tbody td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.fb-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   15. FORMS
   ============================================ */
.fb-form-group {
    margin-bottom: 25px;
}

.fb-form-label {
    display: block;
    color: #001C58;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.fb-form-control {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.fb-form-control:focus {
    border-color: #FFED00;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 237, 0, 0.1);
}

.fb-form-control::placeholder {
    color: #aaa;
}

textarea.fb-form-control {
    min-height: 120px;
    resize: vertical;
}

.fb-form-submit {
    margin-top: 20px;
}

/* ============================================
   16. TAGS & BADGES
   ============================================ */
.fb-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.fb-tag:hover {
    background: #FFED00;
    color: #001C58;
}

.fb-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.fb-badge-primary {
    background: #FFED00;
    color: #001C58;
}

.fb-badge-secondary {
    background: #001C58;
    color: #fff;
}

.fb-badge-success {
    background: #4caf50;
    color: #fff;
}

.fb-badge-warning {
    background: #ff9800;
    color: #fff;
}

/* ============================================
   17. PAGINATION
   ============================================ */
.fb-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.fb-pagination a,
.fb-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    color: #001C58;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fb-pagination a:hover {
    background: linear-gradient(135deg, #FFED00 0%, #FDD835 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 237, 0, 0.3);
}

.fb-pagination .current {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #fff;
}

/* ============================================
   18. SOCIAL SHARE BUTTONS
   ============================================ */
.fb-social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 30px 0;
}

.fb-social-share-label {
    font-weight: 600;
    color: #001C58;
    margin-right: 10px;
}

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

.fb-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fb-social-btn.facebook {
    background: #3b5998;
}

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

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

.fb-social-btn.email {
    background: #ea4335;
}

/* ============================================
   19. RELATED POSTS / CARDS GRID
   ============================================ */
.fb-related-posts {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 3px solid #f0f0f0;
}

.fb-related-posts h3 {
    font-size: 28px;
    color: #001C58;
    margin-bottom: 30px;
    text-align: center;
}

.fb-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.fb-post-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fb-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.fb-post-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fb-post-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fb-post-card-title {
    font-size: 18px;
    color: #001C58;
    margin-bottom: 10px;
    line-height: 1.4;
}

.fb-post-card-title a {
    color: #001C58;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fb-post-card-title a:hover {
    color: #FFED00;
}

.fb-post-card-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.fb-post-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #999;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.fb-post-card-date i {
    color: #FFED00;
    margin-right: 5px;
}

/* ============================================
   20. GALLERY STYLES
   ============================================ */
.fb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.fb-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.fb-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 28, 88, 0.8) 0%, rgba(0, 16, 46, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fb-gallery-item:hover .fb-gallery-overlay {
    opacity: 1;
}

.fb-gallery-overlay i {
    color: #FFED00;
    font-size: 40px;
}

/* ============================================
   21. TIMELINE / PROCESS STEPS
   ============================================ */
.fb-timeline {
    position: relative;
    padding: 30px 0;
}

.fb-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FFED00 0%, #FDD835 100%);
}

.fb-timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.fb-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    border: 4px solid #FFED00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    z-index: 1;
}

.fb-timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.fb-timeline-content h4 {
    color: #001C58;
    margin-bottom: 10px;
}

/* ============================================
   22. ACCORDION / FAQ
   ============================================ */
.fb-accordion {
    margin: 30px 0;
}

.fb-accordion-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.fb-accordion-header {
    padding: 20px 25px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.fb-accordion-header:hover {
    background: #fff9e6;
}

.fb-accordion-header.active {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #fff;
}

.fb-accordion-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.fb-accordion-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #FFED00;
}

.fb-accordion-header.active .fb-accordion-icon {
    transform: rotate(180deg);
}

.fb-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.fb-accordion-content-inner {
    padding: 25px;
    line-height: 1.8;
    color: #555;
}

/* ============================================
   23. STATS / COUNTERS
   ============================================ */
.fb-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.fb-stat-box {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 28, 88, 0.2);
    transition: all 0.3s ease;
}

.fb-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 28, 88, 0.3);
}

.fb-stat-icon {
    font-size: 48px;
    color: #FFED00;
    margin-bottom: 15px;
}

.fb-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Roboto Slab', serif;
}

.fb-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   24. TESTIMONIALS / QUOTES
   ============================================ */
.fb-testimonial {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
    position: relative;
}

.fb-testimonial::before {
    content: '\f10d';
    font-family: 'FontAwesome';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 50px;
    color: #FFED00;
    opacity: 0.3;
}

.fb-testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.fb-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fb-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFED00;
}

.fb-testimonial-info h5 {
    color: #001C58;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.fb-testimonial-info p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* ============================================
   25. ALERT / NOTIFICATION BOXES
   ============================================ */
.fb-alert {
    padding: 20px 25px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.fb-alert-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.fb-alert-content h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.fb-alert-content p {
    margin: 0;
    font-size: 14px;
}

.fb-alert-info {
    background: #e3f2fd;
    border-left: 5px solid #2196f3;
}

.fb-alert-info .fb-alert-icon {
    color: #2196f3;
}

.fb-alert-success {
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
}

.fb-alert-success .fb-alert-icon {
    color: #4caf50;
}

.fb-alert-warning {
    background: #fff3e0;
    border-left: 5px solid #ff9800;
}

.fb-alert-warning .fb-alert-icon {
    color: #ff9800;
}

.fb-alert-danger {
    background: #ffebee;
    border-left: 5px solid #f44336;
}

.fb-alert-danger .fb-alert-icon {
    color: #f44336;
}

/* ============================================
   26. TABS
   ============================================ */
.fb-tabs {
    margin: 30px 0;
}

.fb-tab-nav {
    display: flex;
    gap: 5px;
    border-bottom: 3px solid #f0f0f0;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.fb-tab-button {
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}

.fb-tab-button:hover {
    color: #001C58;
}

.fb-tab-button.active {
    color: #001C58;
    border-bottom-color: #FFED00;
}

.fb-tab-content {
    display: none;
    animation: fb-fadeIn 0.5s ease;
}

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

@keyframes fb-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   27. PROGRESS BARS
   ============================================ */
.fb-progress {
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fb-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #FFED00 0%, #FDD835 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001C58;
    font-weight: 600;
    font-size: 14px;
    transition: width 1s ease;
}

.fb-progress-bar.navy {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #fff;
}

/* ============================================
   28. MODALS / OVERLAYS (If needed)
   ============================================ */
.fb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fb-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.fb-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.fb-modal-overlay.active .fb-modal {
    transform: scale(1);
}

.fb-modal-header {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #fff;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fb-modal-title {
    font-size: 22px;
    margin: 0;
}

.fb-modal-close {
    background: transparent;
    border: none;
    color: #FFED00;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fb-modal-close:hover {
    transform: rotate(90deg);
}

.fb-modal-body {
    padding: 30px;
}

/* ============================================
   29. LOADING SPINNER
   ============================================ */
.fb-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid #f0f0f0;
    border-top-color: #FFED00;
    border-radius: 50%;
    animation: fb-spin 1s linear infinite;
}

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

.fb-spinner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* ============================================
   30. FOOTER WIDGETS (If needed)
   ============================================ */
.fb-footer-widget {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.fb-footer-widget h4 {
    color: #001C58;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFED00;
    padding-bottom: 10px;
}

.fb-footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fb-footer-widget ul li {
    padding: 8px 0;
}

.fb-footer-widget ul li a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fb-footer-widget ul li a:hover {
    color: #001C58;
    padding-left: 5px;
}

/* ============================================
   31. SCROLL TO TOP BUTTON
   ============================================ */
.fb-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFED00 0%, #FDD835 100%);
    color: #001C58;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(255, 237, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.fb-scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.fb-scroll-top:hover {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #FFED00;
    transform: translateY(-5px);
}

/* ============================================
   32. PRINT STYLES
   ============================================ */
@media print {
    .fb-breadcrumb,
    .fb-social-share,
    .fb-sidebar,
    .fb-back-button,
    .fb-scroll-top,
    .fb-related-posts {
        display: none !important;
    }

    .fb-content-body {
        box-shadow: none;
        padding: 0;
    }

    body {
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: none;
    }

    .fb-post-header {
        background: #fff;
        color: #000;
        box-shadow: none;
    }

    .fb-post-header h1 {
        color: #000;
    }
}

/* ============================================
   33. RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575px) {
    .fb-post-header {
        padding: 30px 20px;
    }

    .fb-post-header h1 {
        font-size: 24px;
    }

    .fb-content-body {
        padding: 20px;
    }

    .fb-content-body h2 {
        font-size: 22px;
    }

    .fb-title-main {
        font-size: 28px;
    }

    .fb-title-section {
        font-size: 22px;
    }

    .fb-breadcrumb {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .fb-post-grid {
        grid-template-columns: 1fr;
    }

    .fb-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .fb-stats-wrapper {
        grid-template-columns: 1fr;
    }

    .fb-tab-nav {
        flex-direction: column;
    }

    .fb-tab-button {
        width: 100%;
        text-align: left;
    }

    .fb-timeline::before {
        left: 20px;
    }

    .fb-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .fb-timeline-item {
        padding-left: 60px;
    }

    .fb-social-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Small Devices (Tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .fb-post-header {
        padding: 40px 30px;
    }

    .fb-post-header h1 {
        font-size: 30px;
    }

    .fb-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fb-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .fb-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fb-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fb-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) {
    .fb-post-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fb-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .fb-stats-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   34. UTILITY CLASSES
   ============================================ */
.fb-mt-10 { margin-top: 10px; }
.fb-mt-20 { margin-top: 20px; }
.fb-mt-30 { margin-top: 30px; }
.fb-mt-40 { margin-top: 40px; }
.fb-mt-50 { margin-top: 50px; }

.fb-mb-10 { margin-bottom: 10px; }
.fb-mb-20 { margin-bottom: 20px; }
.fb-mb-30 { margin-bottom: 30px; }
.fb-mb-40 { margin-bottom: 40px; }
.fb-mb-50 { margin-bottom: 50px; }

.fb-pt-10 { padding-top: 10px; }
.fb-pt-20 { padding-top: 20px; }
.fb-pt-30 { padding-top: 30px; }
.fb-pt-40 { padding-top: 40px; }
.fb-pt-50 { padding-top: 50px; }

.fb-pb-10 { padding-bottom: 10px; }
.fb-pb-20 { padding-bottom: 20px; }
.fb-pb-30 { padding-bottom: 30px; }
.fb-pb-40 { padding-bottom: 40px; }
.fb-pb-50 { padding-bottom: 50px; }

.fb-text-center { text-align: center; }
.fb-text-left { text-align: left; }
.fb-text-right { text-align: right; }

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

.fb-d-none { display: none; }
.fb-d-block { display: block; }
.fb-d-inline { display: inline; }
.fb-d-inline-block { display: inline-block; }

/* ============================================
   35. ANIMATIONS
   ============================================ */
@keyframes fb-slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fb-slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fb-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fb-slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fb-zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fb-animate-slideInUp {
    animation: fb-slideInUp 0.6s ease forwards;
}

.fb-animate-slideInDown {
    animation: fb-slideInDown 0.6s ease forwards;
}

.fb-animate-slideInLeft {
    animation: fb-slideInLeft 0.6s ease forwards;
}

.fb-animate-slideInRight {
    animation: fb-slideInRight 0.6s ease forwards;
}

.fb-animate-zoomIn {
    animation: fb-zoomIn 0.6s ease forwards;
}

/* Animation Delays */
.fb-delay-1 { animation-delay: 0.1s; }
.fb-delay-2 { animation-delay: 0.2s; }
.fb-delay-3 { animation-delay: 0.3s; }
.fb-delay-4 { animation-delay: 0.4s; }
.fb-delay-5 { animation-delay: 0.5s; }

/* ============================================
   END OF FENERBAHÇE UNIFIED CSS
   ============================================ */
