/*
 * FK Danışmanlık - Ana Stil Dosyası
 * Tasarım: Psikolojik Danışmanlık Teması - Sakinlik & Güven
 * Ana Renk Paleti: Teal, Sage Green, Warm Beige
 */

/* ===== SİYAH TEMA RENK PALETİ ===== */
:root {
    /* Ana renkler - Siyah tema */
    --primary-color: #000000;              /* Siyah - Ana renk */
    --primary-color-light: #00000020;      /* Açık siyah - şeffaf */
    --primary-color-dark: #000000;         /* Siyah */
    
    /* İkincil renkler */
    --secondary-color: #333333;             /* Koyu gri - İkincil renk */
    --secondary-light: #33333340;          /* Açık koyu gri */
    --secondary-dark: #000000;             /* Siyah */
    
    /* Accent renkler */
    --accent-color: #666666;               /* Orta gri - Vurgu rengi */
    --accent-light: #888888;              /* Açık gri */
    --accent-dark: #333333;               /* Koyu gri */
    
    /* Neutral renkler */
    --neutral-gray: #6B7280;              /* Soft Gray */
    --light-color: #FFFFFF;               /* Beyaz */
    --lighter-gray: #F3F4F6;             /* Çok açık gri */
    --dark-color: #000000;                /* Siyah */
    --text-muted: #6B7280;                /* Soluk metin */
    
    /* Status renkler */
    --success-color: #10B981;             /* Soft Green - Başarı */
    --error-color: #EF4444;               /* Soft Red - Hata */
    --warning-color: #F59E0B;             /* Soft Amber - Uyarı */
    --info-color: #3B82F6;                /* Soft Blue - Bilgi */
    
    /* Diğer özellikler */
    --border-color: #E5E7EB;              /* Açık kenarlık */
    --shadow-color: rgba(0, 0, 0, 0.1);  /* Siyah gölge */
    --transition: all 0.3s ease;
    --border-radius: 6px;                  /* Daha soft kenar */
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    
    /* Gradient'ler */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --gradient-soft: linear-gradient(135deg, var(--light-color) 0%, var(--lighter-gray) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    color: #ffffff;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-cancel {
    background-color: var(--error-color);
    color: #ffffff;
    padding: 5px 10px;
    font-size: 14px;
}

.btn-cancel:hover {
    background-color: #c82333;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1,
.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: var(--secondary-color);
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

.alert {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color-light);
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--secondary-color);
}

.form-group .radio-group {
    display: flex;
    gap: 20px;
}

.form-actions {
    margin-top: 30px;
}

.required {
    color: var(--error-color);
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: var(--light-color);
    font-weight: 600;
}

table tr:hover {
    background-color: #f5f5f5;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pagination a {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.pagination .current {
    background-color: var(--primary-color);
    color: #ffffff;
}

.pagination .disabled {
    color: var(--secondary-color);
    cursor: not-allowed;
}


/* ===== PAGE HEADER ===== */
.page-header {
    background-color: var(--light-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    margin: 0 10px;
    color: var(--secondary-color);
}

/* ===== MAIN CONTENT ===== */
.site-main {
    min-height: 500px;
    padding: 60px 0;
    padding-top: 0;
    margin-top: 0;
}

/* ===== HERO SECTION - UNIFIED BLACK THEME ===== */
.hero-section {
    position: relative;
    background: #000000;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    overflow: hidden;
}

.hero-image {
    display: none;
}

.hero-content {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-content-inner {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.hero-text {
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Quote Container */
.quote-container {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Main Quote Styling */
.hero-text .quote {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(1rem, 3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    margin: 0 0 10px 0;
    padding: 0 10px;
    line-height: 1.4;
    white-space: nowrap;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Signature Styling */
.hero-text .signature {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-align: center;
    letter-spacing: 2px;
    animation: fadeIn 1.8s ease-out;
    display: inline-block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.8;
    }
}

/* Hover effects */
.hero-text .quote:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}


/* ===== SCL TEST SECTION ===== */
.scl-test-section {
    padding: 40px 0;
    background-color: var(--light-color);
}

.scl-test-box {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
}

.scl-test-box h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.scl-test-box p {
    margin-bottom: 20px;
}


/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 60px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.service-card p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    flex-grow: 1;
}
.service-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}
.service-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}
.service-btn:hover {
    color: var(--primary-color-dark);
}
.service-btn:hover i {
    transform: translateX(5px);
}

.service-link {
    font-weight: bold; /* Tüm "Detaylı Bilgi" yazılarını kalın yapar */
    display: inline-block; /* Blok element olarak davranmasını sağlar */
    margin-top: 10px; /* Üstten biraz boşluk ekler */
}

/* ===== YOUTUBE SECTION ===== */
.youtube-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.youtube-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding-bottom: 20px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-color);
}

.testimonial-author {
    text-align: right;
}

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 5px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--secondary-color);
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-text h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.about-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ===== SERVICES PAGE ===== */
.services-page .service-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
}

.service-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.service-image img {
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content .service-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.cta-box {
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
}

.cta-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn {
    background-color: #ffffff;
    color: var(--primary-color);
}

.cta-box .btn:hover {
    background-color: var(--light-color);
}

/* ===== BLOG PAGE ===== */
.blog-page {
    padding: 50px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

/* Blog Layout */
.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.blog-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.03);
}

.blog-card .blog-content {
    display: block;
    padding: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.blog-category {
    color: #555;
}

.blog-date {
    color: #888;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
}

.blog-title a:hover {
    color: #555;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

/* Categories */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f5f5f5;
}

.category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-list a:hover {
    color: #333;
}

.category-list .count {
    background-color: #f5f5f5;
    color: #666;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
}

.category-list .active a {
    color: #333;
    font-weight: 500;
}

/* Recent Posts */
.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    display: flex;
    text-decoration: none;
}

.post-image {
    width: 70px;
    height: 70px;
    margin-right: 12px;
    border-radius: 3px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info {
    flex: 1;
}

.post-info h4 {
    font-size: 14px;
    color: #333;
    margin: 0 0 5px;
    line-height: 1.4;
}

.post-date {
    font-size: 12px;
    color: #888;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0 3px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 8px 12px;
    background-color: #fff;
    border: 1px solid #eaeaea;
    color: #555;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.pagination li a:hover {
    background-color: #f5f5f5;
}

.pagination li.active span {
    background-color: #555;
    color: #fff;
    border-color: #555;
}

.pagination li.disabled span {
    color: #ccc;
    cursor: not-allowed;
}

/* No Posts */
.no-posts {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.no-posts p {
    color: #666;
    margin: 0;
}

/* Blog Detay Stilleri */
.blog-detail-page {
    padding: 50px 0;
}

.blog-post {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.post-header {
    margin-bottom: 25px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.post-meta i {
    margin-right: 5px;
    color: #888;
}

.post-category {
    color: #555;
}

.post-author {
    font-weight: 500;
}

.post-title {
    font-size: 32px;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.post-featured-image {
    margin: 0 -30px 30px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    color: #333;
    margin: 30px 0 15px;
}

.post-content h2 {
    font-size: 26px;
}

.post-content h3 {
    font-size: 22px;
}

.post-content h4 {
    font-size: 18px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.post-content blockquote {
    border-left: 4px solid #ddd;
    padding: 15px 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
    font-style: italic;
    color: #555;
}

.post-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Paylaş Butonları */
.share-buttons {
    margin-top: 10px;
}

.share-title {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.share-title i {
    margin-right: 8px;
    color: #666;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 4px;
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-button i {
    margin-right: 8px;
    font-size: 16px;
}

.social-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.social-button.facebook {
    background-color: #3b5998;
}

.social-button.twitter {
    background-color: #1da1f2;
}

.social-button.linkedin {
    background-color: #0077b5;
}

.social-button.whatsapp {
    background-color: #25d366;
}

/* ===== EXPERT PAGE ===== */
.expert-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.expert-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.expert-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.expert-info h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.expert-bio {
    margin-bottom: 30px;
}

.expert-bio p {
    margin-bottom: 15px;
}

.expert-social {
    display: flex;
    margin-bottom: 30px;
}

.expert-social .social-icon {
    margin-left: 0;
    margin-right: 15px;
}

/* Sertifikalar Bölümü */
.certificates-section {
    padding: 0 0 60px;
}

.certificates-section .section-header {
    margin-bottom: 30px;
}

.certificates-section .section-header h2 {
    font-size: 28px;
    color: #333;
    text-align: center;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.certificate-item {
    text-align: center;
}

.certificate-link {
    display: block;
    position: relative;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.certificate-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-overlay i {
    color: white;
    font-size: 24px;
}

.certificate-link:hover .certificate-overlay {
    opacity: 1;
}

.certificate-link:hover img {
    transform: scale(1.05);
}

.certificate-item h4 {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}


/* ===== GALLERY PAGE ===== */
.gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.gallery-tab {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    color: var(--dark-color);
    transition: var(--transition);
}

.gallery-tab i {
    margin-right: 10px;
}

.gallery-tab:hover,
.gallery-tab.active {
    background-color: var(--primary-color);
    color: #ffffff;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    display: block;
    width: 100%;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.gallery-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.gallery-info p {
    font-size: 14px;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-gallery .gallery-item {
    margin-bottom: 20px;
}

.video-info {
    padding: 15px;
    background-color: #ffffff;
}

.video-info h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.video-info p {
    font-size: 14px;
    color: var(--secondary-color);
}

.no-items {
    text-align: center;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

/* ===== VIDEOS SECTION ===== */
.videos-section {
    padding: 60px 0;
    background-color: var(--light-color);
}
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.video-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.video-thumbnail {
    position: relative;
    overflow: hidden;
}
.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(53, 64, 81, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    pointer-events: none;
}
.video-info {
    padding: 20px;
}
.video-info h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}
.video-date {
    color: var(--secondary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
}
.video-date i {
    margin-right: 8px;
}


/* ===== CONTACT PAGE ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.info-content h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-form {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* ===== APPOINTMENT PAGE ===== */
.appointment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.appointment-form {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.appointment-info {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
}

.appointment-info h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.appointment-info p {
    margin-bottom: 20px;
}

.appointment-info a {
    font-weight: 500;
}

/* ===== APPOINTMENT TRACKING PAGE ===== */
.tracking-form-container {
    max-width: 600px;
    margin: 0 auto 40px;
}

.tracking-form {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.appointments-list {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.appointments-list h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.appointments-table {
    margin-bottom: 30px;
}

.appointments-table th {
    background-color: var(--primary-color);
    color: #ffffff;
}

.appointments-table tr.cancelled {
    background-color: #f8f9fa;
    color: var(--secondary-color);
}

.status-active {
    color: var(--success-color);
    font-weight: 500;
}

.status-cancelled {
    color: var(--error-color);
}

.status-completed {
    color: var(--info-color);
}

.cancel-disabled {
    color: var(--secondary-color);
    font-size: 14px;
    cursor: not-allowed;
}

.appointments-info {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 20px;
}

.appointments-info h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.appointments-info ul {
    padding-left: 20px;
}

.appointments-info li {
    margin-bottom: 5px;
    list-style-type: disc;
}

/* Footer Beyaz Logo Stilleri */
.footer-logo {
    margin-bottom: 20px;
}

.white-logo {
    max-width: 180px;
    height: auto;
    display: block;
}

/* ===== MODERN PSİKOLOJİK DANIŞMANLIK FOOTER ===== */
.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 148, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.6;
    z-index: 0;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

/* Footer Widgets */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget {
    position: relative;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 2px;
}

.footer-widget p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 15px;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 25px;
    text-align: left;
}

.footer-logo .white-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: var(--transition);
}

.footer-logo .white-logo:hover {
    transform: scale(1.02);
}

/* Social Media */
.social-media {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon:hover {
    color: white;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
    transform: translateX(0);
    transition: var(--transition);
}

.footer-menu li:hover {
    transform: translateX(8px);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
}

.footer-menu a:hover {
    color: var(--accent-color);
}

.footer-menu a i {
    font-size: 12px;
    color: var(--secondary-color);
    width: 16px;
    transition: var(--transition);
}

.footer-menu a:hover i {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.contact-info li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.contact-info li i {
    color: var(--accent-color);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info li span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.footer-bottom .copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom .legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    white-space: nowrap;
    display: inline-block;
}

.footer-bottom .legal-links a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}