/*
Theme Name: Timec Soft - Tes-iş 3
Description: Modern, responsive WordPress tema. Tes-İş İstanbul 3 Nolu Şube için tasarlanmış.
Version: 2.0
Author: Timec Soft
*/

:root {
    --ts-primary: #003366;
    --ts-primary-dark: #004077;
    --ts-primary-darker: #002855;
    --ts-accent: #00ADEF;
    --ts-accent-hover: #009FE3;
    --ts-accent-soft: rgba(0, 173, 239, 0.12);
    --ts-accent-glow: rgba(0, 173, 239, 0.28);
    --ts-text: #2c3e50;
    --ts-bg: #f8f9fa;
    --ts-white: #ffffff;
    --ts-gradient-primary: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-primary-dark) 100%);
    --ts-gradient-accent: linear-gradient(135deg, var(--ts-accent) 0%, var(--ts-accent-hover) 100%);
    --ts-gradient-brand: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-accent-hover) 100%);
    --ts-gradient-brand-soft: linear-gradient(135deg, var(--ts-primary-dark) 0%, var(--ts-accent) 55%, var(--ts-accent-hover) 100%);
}

/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
    border-bottom: 3px solid var(--ts-primary);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08), 0 3px 0 var(--ts-accent);
}

/* Üst Sosyal Medya Bar */
.header-top {
    background: linear-gradient(90deg, #f8f9fa 0%, var(--ts-accent-soft) 50%, #f8f9fa 100%);
    border-bottom: 1px solid rgba(0, 173, 239, 0.15);
    padding: 8px 0;
}

.social-media {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.social-media a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.1);
}

.social-media img {
    width: 24px;
    height: 24px;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.social-media .social-extra img {
    width: 28px;
    height: 28px;
}

.social-media a:hover img {
    filter: grayscale(0%) brightness(1) drop-shadow(0 0 4px var(--ts-accent-glow));
}

/* Ana Header - Modern Design */
.header-main {
    padding: 30px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 0;
}

.header-logo-left,
.header-logo-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-logo-left:hover,
.header-logo-right:hover {
    transform: translateY(-2px);
}

.tesis-logo,
.turkis-logo {
    max-width: 160px;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none;
}

.tesis-logo:hover,
.turkis-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 16px var(--ts-accent-glow));
}

.header-center {
    flex: 1;
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.header-center::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    background: var(--ts-gradient-accent);
    margin: 14px auto 0;
    border-radius: 3px;
    opacity: 0.9;
}

.main-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--ts-primary);
    margin: 0 0 8px 0;
    text-shadow: none;
    letter-spacing: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
    display: block;
    border-radius: 0;
    box-shadow: none;
    border: none;
    line-height: 1.1;
}

.sub-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ts-accent-hover);
    margin: 0 0 6px 0;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
    display: block;
    border-radius: 0;
    box-shadow: none;
    line-height: 1.3;
}

.organization-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6c757d;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
    display: block;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-transform: uppercase;
}

/* Header Hover Effects - Modern */
.header-center:hover .main-title {
    color: var(--ts-primary-dark);
    transition: color 0.3s ease;
}

/* Header Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-main {
    animation: fadeInUp 0.6s ease-out;
}

.header-main .container {
    position: relative;
}

.header-top {
    animation: fadeInUp 0.6s ease-out;
}

.header-navigation {
    animation: fadeInUp 1s ease-out;
}

/* Navigasyon */
.header-navigation {
    background: var(--ts-gradient-brand-soft);
    padding: 0;
}

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

/* Improve menu spacing and alignment */
.nav-menu > li > a {
    font-weight: 600;
    letter-spacing: 0.2px;
}

.nav-cta {
    margin-left: 1rem;
}

.nav-cta-btn {
    padding: 0.6rem 1.1rem;
    border-radius: 20px;
    background: var(--ts-gradient-accent) !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    box-shadow: 0 4px 14px var(--ts-accent-glow);
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.site-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Navigation */
.main-navigation {
    flex: 1;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.main-navigation a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    box-shadow: inset 0 -3px 0 var(--ts-accent);
}

.main-navigation li:last-child a {
    border-right: none;
}

/* Sub Menu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none !important;
}

.menu-item-has-children:hover .sub-menu,
.menu-item-has-children.submenu-open .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    display: block !important;
}

.sub-menu a {
    color: #333;
    padding: 12px 20px;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
}

.sub-menu a:hover {
    background: var(--ts-accent-soft);
    color: var(--ts-accent-hover);
}

.sub-menu li:last-child a {
    border-bottom: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.menu-toggle-text {
    margin-right: 8px;
    font-size: 0.9rem;
}

.menu-toggle-icon {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .header-logo-left,
    .header-logo-right {
        order: 2;
    }
    
    .header-center {
        order: 1;
        padding: 0;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .sub-title {
        font-size: 1.4rem;
    }
    
    .organization-name {
        font-size: 1rem;
    }
    
    .tesis-logo,
    .turkis-logo {
        max-width: 120px;
        max-height: 120px;
    }
    
    .header-logo-left,
    .header-logo-right {
        padding: 15px;
    }
    
    .main-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .sub-title {
        font-size: 1.3rem;
    }
    
    .organization-name {
        font-size: 0.85rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ts-primary);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation a {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-navigation li:last-child a {
        border-bottom: none;
    }
    
    .sub-menu {
        position: static;
        background: rgba(255,255,255,0.1);
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none !important;
    }
    
    .menu-item-has-children.submenu-open .sub-menu {
        display: block !important;
    }
    
    .sub-menu a {
        color: white;
        padding-left: 40px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .sub-menu a:hover {
        background: rgba(255,255,255,0.1);
        color: white;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .sub-title {
        font-size: 1.2rem;
    }
    
    .organization-name {
        font-size: 0.9rem;
    }
    
    .tesis-logo,
    .turkis-logo {
        max-width: 50px;
        max-height: 50px;
    }
    
    .social-media {
        gap: 10px;
    }
    
    .social-media img {
        width: 20px;
        height: 20px;
    }
}

/* Main Content */
.site-main {
    padding: 2rem 0;
    min-height: 60vh;
    background: #f8f9fa;
}

.content-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Posts */
.post {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.post-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-content {
    line-height: 1.8;
}

/* Ziyaretler Grid */
.ziyaretler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.ziyaret-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.ziyaret-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.ziyaret-card::after {
    content: 'Detayı Gör';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ziyaret-card:hover::after {
    opacity: 1;
}

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

.ziyaret-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ziyaret-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.ziyaret-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ziyaret-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: auto;
}

.ziyaret-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ziyaret-image-count {
    background: #ecf0f1;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Ziyaret Detay Modal */
.ziyaret-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #000;
}

.modal-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.modal-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-image:hover {
    transform: scale(1.05);
}

/* Sidebar */
.sidebar {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ts-accent);
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--ts-accent) 0%, var(--ts-primary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--ts-accent);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

/* Admin Styles */
.admin-page {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.admin-page h1 {
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--ts-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .main-navigation ul {
        flex-direction: column;
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
        margin-top: 1rem;
    }
    
    .content-area {
        grid-template-columns: 1fr;
    }
    
    .ziyaretler-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1rem;
    }
    
    .modal-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .post {
        padding: 1rem;
    }
    
    .ziyaret-card {
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--ts-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== YENİ ANA SAYFA STİLLERİ ===== */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-primary-dark) 45%, var(--ts-accent-hover) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-line {
    width: 96px;
    height: 4px;
    background: linear-gradient(90deg, var(--ts-accent), var(--ts-primary));
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px var(--ts-accent-glow);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2300ADEF" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--ts-accent-soft), transparent);
    transition: left 0.5s ease;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--ts-accent);
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--ts-gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--ts-accent-hover);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ts-primary), var(--ts-primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--ts-primary), var(--ts-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--ts-primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ts-primary);
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}

/* Partners Section */
.partners-section {
    background: #1f2a36;
    padding: 5rem 0;
    color: #ffffff;
}

.partners-section .section-title {
    color: #ffffff;
}

.partner-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* Partner Item */
.partner-item {
    display: block;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.partner-item img {
    display: block;
    margin: 0 auto;
    max-height: 80px;
    width: auto;
}

/* News Section */
.latest-news-section {
    padding: 5rem 0;
    background: white;
}

/* Member CTA */
.member-cta-section {
    background: var(--ts-gradient-brand-soft);
    color: white;
    padding: 2.5rem 0;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.member-cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--ts-accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.member-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.member-cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.member-cta-desc {
    opacity: 0.95;
}

.btn-big {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .member-cta {
        flex-direction: column;
        text-align: center;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 220px; /* biraz daha yüksek alan: daha net görünüm */
}

.news-image .bg-blur {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(12px) saturate(1.1);
    transform: scale(1.1);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.news-date {
    color: #6c757d;
}

.news-category {
    background: var(--ts-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--ts-primary);
}

.news-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--ts-primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.news-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.news-link:hover::after {
    transform: translateX(5px);
}

.news-more {
    text-align: center;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-primary-dark) 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--ts-gradient-brand);
    color: white;
    border-color: var(--ts-accent-hover);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--ts-accent-glow);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--ts-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--ts-primary);
    border-color: var(--ts-primary);
}

.btn-outline:hover {
    background: var(--ts-accent-hover);
    border-color: var(--ts-accent-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--ts-accent-glow);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--ts-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes counterUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-counter {
    animation: counterUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Icon Fonts */
@font-face {
    font-family: 'tesis-icons';
    src: url('data:application/font-woff2;base64,') format('woff2');
    font-weight: normal;
    font-style: normal;
}

.icon-users::before { content: '👥'; }
.icon-building::before { content: '🏢'; }
.icon-handshake::before { content: '🤝'; }
.icon-calendar::before { content: '📅'; }
.icon-health::before { content: '🏥'; }
.icon-education::before { content: '🎓'; }
.icon-legal::before { content: '⚖️'; }
.icon-social::before { content: '🎉'; }
.icon-integrity::before { content: '🤝'; }
.icon-solidarity::before { content: '👥'; }
.icon-justice::before { content: '⚖️'; }
.icon-innovation::before { content: '💡'; }

/* ===== KURUMSAL BÖLÜMLER ===== */

/* Corporate Values Section */
.corporate-values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
}

.corporate-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="corporate-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%2300ADEF" opacity="0.12"/><circle cx="45" cy="45" r="0.5" fill="%2300ADEF" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23corporate-pattern)"/></svg>');
    opacity: 0.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--ts-gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--ts-gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 173, 239, 0.3);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 5rem 0;
    background: white;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.leader-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    border-top: 3px solid var(--ts-accent);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leader-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--ts-accent);
    position: relative;
    transition: all 0.3s ease;
}

.leader-card:hover .leader-image {
    transform: scale(1.05);
    border-color: var(--ts-accent-hover);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.leader-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.leader-position {
    font-size: 1.1rem;
    color: var(--ts-accent-hover);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Toplu İş Sözleşmeleri Highlight */
.tis-highlight-section {
    background: #1f2a36;
    padding: 5rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.tis-highlight-section .section-title {
    color: #ffffff;
}

.tis-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"tis-pattern\" width=\"40\" height=\"40\" patternUnits=\"userSpaceOnUse\"><circle cx=\"20\" cy=\"20\" r=\"2\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"60\" cy=\"60\" r=\"1\" fill=\"white\" opacity=\"0.05\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23tis-pattern)\"/></svg>');
    opacity: 0.25;
}

.tis-highlight-section .container {
    position: relative;
    z-index: 2;
}

.tis-highlight-description {
    max-width: 720px;
    margin: 1.5rem auto 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
}

.tis-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.tis-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    color: white;
}

.tis-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

.tis-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.75;
}

.tis-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.tis-card-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.tis-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.tis-card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.tis-card-link:hover::after {
    transform: translateX(4px);
}

.tis-highlight-more {
    text-align: center;
    margin-top: 3rem;
}

/* ===== EK ANİMASYON VE ETKİLEŞİM STİLLERİ ===== */

/* Animation states */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Enhanced hover effects */
.service-card:hover .service-icon {
    box-shadow: 0 10px 30px rgba(0, 173, 239, 0.3);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 173, 239, 0.3);
}

/* Loading states */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--ts-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Enhanced button styles */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    left: 100%;
}

/* Card hover enhancements */
.news-card,
.service-card,
.stat-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover,
.service-card:hover,
.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Parallax container */
.hero-section {
    overflow: hidden;
}

.hero-background {
    will-change: transform;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Enhanced responsive design */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tis-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-line {
        width: 60px;
        height: 3px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card {
        margin-bottom: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leader-card {
        padding: 1.5rem;
    }
    
    .leader-image {
        width: 120px;
        height: 120px;
    }
    
    .tis-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tis-card {
        padding: 1.75rem;
    }
    
    .tis-card-title {
        font-size: 1.35rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .partner-categories {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-line {
        width: 40px;
        height: 2px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leader-card {
        padding: 1.25rem;
    }
    
    .leader-image {
        width: 100px;
        height: 100px;
    }
    
    .leader-name {
        font-size: 1.3rem;
    }
    
    .leader-position {
        font-size: 1rem;
    }
    
    .tis-highlight-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tis-card {
        padding: 1.5rem;
    }
    
    .tis-card-title {
        font-size: 1.2rem;
    }
    
    .tis-card-excerpt {
        font-size: 0.95rem;
    }
    
    .news-image {
        height: 150px;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .partner-categories {
        justify-content: center;
    }
    
    .category-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .news-content {
        padding: 0.75rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
}

/* Sube Tarihcesi sayfası için özel stiller */
body.page-slug-sube-tarihcesi .post-title,
body.page-slug-sube-tarihcesi .entry-title,
body.page-slug-sube-tarihcesi h1.post-title,
body.page-slug-sube-tarihcesi h1.entry-title,
body.page-slug-sube-tarihcesi .single-post .post-title {
    color: #000 !important;
    font-weight: bold !important;
    font-size: 2.5rem !important;
}

body.page-slug-sube-tarihcesi .post-meta,
body.page-slug-sube-tarihcesi .entry-meta,
body.page-slug-sube-tarihcesi .single-post .post-meta {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Print styles */
@media print {
    .hero-section,
    .stats-section,
    .services-section,
    .partners-section,
    .contact-cta-section {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        border: 1px solid black !important;
        background: white !important;
        color: black !important;
    }
    
    .animate-fade-in-up,
    .animate-counter {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-background {
        background: #000 !important;
    }
    
    .btn-primary {
        background: #000 !important;
        border-color: #000 !important;
    }
    
    .btn-secondary {
        background: transparent !important;
        color: #000 !important;
        border-color: #000 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-background {
        animation: none !important;
    }
    
    .animate-fade-in-up,
    .animate-counter {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Alt Menü Stilleri */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a::after {
    content: '▼';
    margin-left: 5px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.menu-item-has-children.submenu-open > a::after {
    transform: rotate(180deg);
}

.sub-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    z-index: 1000;
}

.sub-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.sub-menu a:hover {
    background-color: #f8f9fa;
    color: var(--ts-accent);
}

/* Desktop Alt Menü */
@media (min-width: 769px) {
    .menu-item-has-children:hover .sub-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        animation: slideDown 0.3s ease;
    }
    
    .menu-item-has-children.submenu-open .sub-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .menu-item-has-children .sub-menu {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Mobil Menü Güncellemeleri */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .main-navigation.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .header-navigation .container {
        position: relative;
    }

    .nav-cta {
        position: absolute;
        right: 10px;
        top: 6px;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        color: #333;
        text-decoration: none;
    }
    
    .nav-menu a:hover {
        background-color: #f8f9fa;
    }
    
    /* Mobil Alt Menü */
    .sub-menu {
        position: static;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        margin-left: 20px;
        border-left: 3px solid var(--ts-accent);
    }
    
    .sub-menu a {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    .menu-item-has-children > a::after {
        content: '▶';
        float: right;
        transition: transform 0.3s ease;
    }

    .menu-item-has-children.submenu-open > a::after {
        transform: rotate(90deg);
    }
}

/* Teşkilat ve Kurul Sayfaları */
.teskilat-overview {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

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

.teskilat-card {
    background: var(--ts-white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--ts-accent);
    position: relative;
}

.teskilat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px var(--ts-accent-glow);
}

.teskilat-card h3 {
    color: var(--ts-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.teskilat-card h3::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--ts-accent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.teskilat-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.teskilat-card .btn-primary {
    background: var(--ts-gradient-brand);
    color: var(--ts-white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.kurul-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.kurul-uyeler {
    background: var(--ts-white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--ts-accent);
}

.uyeler-grid-yonetim {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.uyeler-grid-standard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.baskan-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--ts-accent);
    border-radius: 15px;
    background: var(--ts-gradient-brand);
    color: var(--ts-white);
    max-width: 300px;
}

.baskan-card .uye-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 4px solid var(--ts-white);
}

.diger-uyeler {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.uye-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background: var(--ts-white);
}

.uye-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.uye-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ts-bg);
    font-size: 2rem;
}

.uye-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uye-card h4 {
    color: var(--ts-text);
    margin-bottom: 0.5rem;
}

.kurul-empty {
    text-align: center;
    color: #666;
    grid-column: 1 / -1;
}

/* Sayfa başlıkları — turkuaz vurgu */
.page-title {
    color: var(--ts-primary);
    position: relative;
    padding-bottom: 0.25rem;
}

.page-title::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: var(--ts-gradient-accent);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.uye-card:hover {
    border-color: var(--ts-accent);
    box-shadow: 0 8px 22px var(--ts-accent-soft);
}

.btn-outline {
    border-color: var(--ts-accent-hover);
    color: var(--ts-accent-hover);
}

.organization-name {
    color: #5a6c7d;
}

/* Contact Form 7 */
.timec-soft-cf7-wrapper h2,
.iletisim-formu .timec-soft-cf7-wrapper h2 {
    color: var(--ts-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.cf7-admin-notice {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    background: #fff8e6;
    border: 1px solid #f0d78c;
    color: #6b5a2e;
}

.cf7-admin-notice p {
    margin: 0 0 0.75rem;
}

.cf7-admin-notice p:last-child {
    margin-bottom: 0;
}

.timec-soft-cf7-wrapper .wpcf7-form p {
    margin-bottom: 1.5rem;
}

.timec-soft-cf7-wrapper .wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.timec-soft-cf7-wrapper .wpcf7-form input[type="text"],
.timec-soft-cf7-wrapper .wpcf7-form input[type="email"],
.timec-soft-cf7-wrapper .wpcf7-form input[type="tel"],
.timec-soft-cf7-wrapper .wpcf7-form input[type="url"],
.timec-soft-cf7-wrapper .wpcf7-form input[type="number"],
.timec-soft-cf7-wrapper .wpcf7-form select,
.timec-soft-cf7-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.timec-soft-cf7-wrapper .wpcf7-form input:focus,
.timec-soft-cf7-wrapper .wpcf7-form select:focus,
.timec-soft-cf7-wrapper .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--ts-accent);
    box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.15);
}

.timec-soft-cf7-wrapper .wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

.timec-soft-cf7-wrapper .wpcf7-form input[type="submit"],
.timec-soft-cf7-wrapper .wpcf7-form .wpcf7-submit {
    width: 100%;
    padding: 15px 30px;
    background: var(--ts-gradient-brand);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timec-soft-cf7-wrapper .wpcf7-form input[type="submit"]:hover,
.timec-soft-cf7-wrapper .wpcf7-form .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--ts-accent-glow);
}

.timec-soft-cf7-wrapper .wpcf7-response-output {
    margin: 1rem 0 0;
    padding: 12px 15px;
    border-radius: 8px;
    border-width: 1px;
}

.timec-soft-cf7-wrapper .wpcf7-not-valid-tip {
    color: #c0392b;
    font-size: 0.9rem;
    margin-top: 0.35rem;
}

.timec-soft-contact-form.elementor-contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .timec-soft-contact-form.elementor-contact-form {
        padding: 1.5rem;
    }
}
