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

html {
    height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    color: #000;
    height: 100%;
    margin: 0;
    padding-top: 0; /* Header ile hero arasındaki boşluğu kaldırdık */
    font-size: 14px;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: -0.04px;
    background: linear-gradient(135deg, #E0F6FF 0%, #B0E0E6 25%, #87CEEB 50%, #00CED1 75%, #20B2AA 100%);
}

#__next {
    height: 100%;
}

p {
    margin: 0;
}

p + p {
    margin-top: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(224, 246, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    box-shadow: 0 4px 25px rgba(0, 206, 209, 0.3);
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(0, 206, 209, 0.4);
    will-change: transform;
}



.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 40px; /* Header'ı daha da kompakt yap */
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.logo-text h1 {
    font-size: 1.4rem;
    color: #00CED1;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 206, 209, 0.3);
}

.logo-text p {
    font-size: 0.7rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.main-nav {
    display: none; /* Desktop'ta navigation'ı gizle */
}

/* TEST: Menünün görünürlüğünü test etmek için geçici olarak açık */
.main-nav.test-visible {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    z-index: 10000;
    max-height: 80vh;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
}

/* ZORLA HAMBURGER MENÜ ÇALIŞSIN */
    .main-nav.active {
        display: flex !important;
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        left: auto !important;
        width: 350px !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.08) !important;
        border-radius: 20px !important;
        margin: 15px 25px 0 0 !important;
        padding: 0 !important;
        z-index: 99999 !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
        visibility: visible !important;
        opacity: 1 !important;
        border: 1px solid rgba(0, 206, 209, 0.15) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    /* Menü başlığı */
    .main-nav.active::before {
        content: 'MENÜ';
        display: block;
        background: linear-gradient(135deg, #00CED1, #87CEEB);
        color: white;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        text-align: center;
        letter-spacing: 2px;
        text-transform: uppercase;
        border-radius: 20px 20px 0 0;
        margin: 0;
        box-shadow: 0 4px 15px rgba(0, 206, 209, 0.3);
    }
    
    /* Navigation container */
    .main-nav.active .nav-list {
        padding: 2rem 2rem 1rem 2rem !important;
        margin: 0 !important;
        flex-direction: column !important;
        display: flex !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
    }
    
    /* Force vertical layout for all navigation items */
    .main-nav.active .nav-list,
    .main-nav.active .nav-list li,
    .main-nav.active .nav-list a {
        flex-direction: column !important;
        display: block !important;
        float: none !important;
        clear: both !important;
    }

/* Profesyonel animasyonlar */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

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

/* Desktop'ta mobile contact info'yu gizle */
.mobile-contact-info {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #00CED1;
    text-shadow: 0 0 8px rgba(0, 206, 209, 0.6);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00CED1, #87CEEB);
    transition: width 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 206, 209, 0.4);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

/* Header scroll efekti */
.header.scrolled {
    background: rgba(224, 246, 255, 0.99);
    backdrop-filter: blur(25px);
    box-shadow: 0 6px 30px rgba(0, 206, 209, 0.4);
}

/* Header'ın her zaman üstte kalması için */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
}



.mobile-menu-btn {
    display: flex; /* Desktop'ta da görünür olsun */
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 206, 209, 0.1);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #00CED1;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 120vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    padding: 80px 20px 40px 20px;
    overflow: hidden;
}

/* Social Media Buttons */
.social-media-buttons {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

/* Turkish Related Communities Section */
.communities-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    position: relative;
}

.communities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00CED1, #87CEEB, #B0E0E6);
}

.communities-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.community-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 139, 139, 0.1);
    border-left: 4px solid #008B8B;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.community-card:hover::before {
    left: 100%;
}

.community-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 139, 139, 0.15);
}

.community-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.community-card h3 {
    color: #008B8B;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-card h3::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #008B8B, #20B2AA);
    border-radius: 1px;
}

.community-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #20B2AA, #48D1CC);
    border-radius: 1px;
}

.community-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}

.community-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.community-location, .community-type {
    color: #008B8B;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f0ff 100%);
    border-radius: 15px;
    border: 1px solid #e0f0ff;
    transition: all 0.3s ease;
}

.community-location:hover, .community-type:hover {
    background: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 139, 139, 0.2);
}

/* STK Organizations Section */
.stk-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    position: relative;
}

.stk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #008B8B, #20B2AA, #48D1CC);
}

.stk-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stk-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.stk-category {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 139, 139, 0.1);
    border-left: 4px solid #008B8B;
    transition: all 0.3s ease;
}

.stk-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 139, 139, 0.15);
}

.stk-category h3 {
    color: #008B8B;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stk-category h3::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #008B8B, #20B2AA, #48D1CC);
    border-radius: 2px;
}

.stk-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #48D1CC, #20B2AA);
    border-radius: 1px;
}

.stk-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.stk-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 18px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.stk-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 139, 139, 0.1);
    border-color: #008B8B;
}

.stk-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.stk-logo img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #008B8B;
}

.stk-icon {
    display: none;
    font-size: 2rem;
    color: #008B8B;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 2px solid #008B8B;
}

.stk-info h4 {
    color: #008B8B;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stk-info p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.stk-link {
    display: inline-block;
    color: #008B8B;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f0ff 100%);
    border-radius: 20px;
    border: 2px solid #008B8B;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stk-link:hover::before {
    left: 100%;
}

.stk-link:hover {
    background: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 139, 139, 0.3);
    border-color: #20B2AA;
}



.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.twitter {
    background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
}

.social-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.social-btn svg {
    transition: transform 0.3s ease;
}

.social-btn:hover svg {
    transform: scale(1.1);
}

/* Responsive Design for Social Media Buttons */
@media (max-width: 768px) {
    .social-media-buttons {
        top: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
    }
    
    .social-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .social-media-buttons {
        top: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-btn svg {
        width: 16px;
        height: 16px;
    }
}



.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/arkaplan.jpeg') center/cover;
    background-size: cover;
    background-position: center;
    z-index: -2;
}



/* Mobile background fixes */
@media (max-width: 768px) {
    .hero-background {
        background-size: cover;
        background-position: center;
    }
    
    .hero-logo::before {
        width: 72%;
        height: 72%;
        background: rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        margin-top: 0; /* Logo ile tam ortalı olması için margin'i kaldırdık */
    }
    
    .hero-logo {
        margin-top: 60px; /* Logo'yu biraz aşağı aldık */
    }
    
    .hero {
        height: 120vh;
        padding-top: 70px; /* Mobilde header yüksekliği: logo 60px + padding 6px + container 5px */
    }
    
    /* Header responsive */
    .header-container {
        padding: 5px 15px;
        min-height: 40px;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        padding: 6px;
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    body {
        padding-top: 0; /* Header ile hero arasındaki boşluğu kaldırdık */
    }
    
    /* Mission Vision responsive */
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-content {
        gap: 30px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .mission-vision-item {
        padding: 25px 20px;
    }
    
    .mission-vision-item h3 {
        font-size: 1.8rem;
    }
    
    .core-values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 20px;
    }
    
    .value-item {
        padding: 20px 10px;
        min-height: 70px;
    }
    
    .value-item h4 {
        font-size: 0.85rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .hero-background {
        background-size: cover;
        background-position: center;
    }
    
    .hero-logo::before {
        width: 55%;
        height: 55%;
        background: rgba(255, 255, 255, 0.20);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        margin-top: 0; /* Logo ile tam ortalı olması için margin'i kaldırdık */
    }
    
    .hero-logo {
        margin-top: 40px; /* Logo'yu biraz aşağı aldık */
    }
    
    .hero {
        height: 100vh !important;
        min-height: 500px !important;
        padding: 80px 20px 40px 20px !important;
    }
    
    /* Header responsive - küçük ekranlar */
    .header-container {
        padding: 6px 10px;
        min-height: 45px;
    }
    
    .logo-img {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        padding: 8px;
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
    }
    
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .logo-text p {
        font-size: 0.9rem;
    }
    
    body {
        padding-top: 0; /* Header ile hero arasındaki boşluğu kaldırdık */
    }
    
    /* Mission Vision responsive - küçük ekranlar */
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 15px;
    }
    
    .value-item {
        padding: 18px 8px;
        min-height: 60px;
    }
    
    .value-item h4 {
        font-size: 0.75rem;
        line-height: 1.1;
    }
    
    .core-values-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.85) 0%, rgba(135, 206, 235, 0.75) 50%, rgba(176, 224, 230, 0.9) 100%);
    z-index: -1;
}

/* Logo blur kaldırıldı */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1000;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 auto;
}



.hero-logo {
    margin-bottom: 0px;
    margin-top: -100px;
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-radius: 20px;
    width: fit-content;
    height: fit-content;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-logo-img {
    width: 500px !important;
    height: 600px !important;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

/* Responsive logo sizing */
@media (max-width: 1200px) {
    .hero-logo-img {
        width: 400px !important;
        height: 480px !important;
    }
    
    .hero {
        height: 120vh !important;
        min-height: 800px !important;
        padding: 80px 20px 40px 20px !important;
    }
    
    .hero-logo {
        margin-top: 15px !important;
    }
    
    .hero-logo::before {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-logo-img {
        width: 300px !important;
        height: 360px !important;
}

.hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 8px !important;
        margin-top: 0px !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        max-width: 600px !important;
        padding: 0 15px !important;
        margin-top: 0px !important;
    }
    
    .hero-logo::before {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 120vh !important;
        min-height: 800px !important;
    }
    
    .hero-logo-img {
        width: 200px !important;
        height: 240px !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
        margin-top: 0px !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        max-width: 400px !important;
        padding: 0 10px !important;
        line-height: 1.6 !important;
        margin-top: 0px !important;
    }
    
    .hero-logo {
        margin-top: 10px !important;
    }
    
    .hero-logo::before {
        display: none !important;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin: 0 0 5px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    display: block;
    z-index: 1002;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    text-align: center;
    margin: 0 0 5px 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    display: block;
    z-index: 1002;
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
    z-index: 1002;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00CED1, #87CEEB);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 206, 209, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #87CEEB, #B0E0E6);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 206, 209, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #008B8B;
    transform: translateY(-2px);
}

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

.section-header h2 {
    color: #00CED1;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #00CED1, #87CEEB, #B0E0E6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 206, 209, 0.3);
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00CED1, #87CEEB, #B0E0E6);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 206, 209, 0.4);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #B0E0E6, #87CEEB, #00CED1);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 206, 209, 0.4);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Mission, Vision and Core Values Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E0F6FF 0%, #B0E0E6 25%, #87CEEB 50%);
}

.mission-vision-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-vision-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.1);
    border-left: 4px solid #00CED1;
    transition: all 0.3s ease;
    text-align: left;
}

.mission-vision-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 206, 209, 0.2);
}

.mission-vision-item h3 {
    color: #00CED1;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 206, 209, 0.3);
}

.vision-author {
    color: #666;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.mission-vision-item p {
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.core-values-section {
    text-align: center;
}

.core-values-title {
    color: #00CED1;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 206, 209, 0.3);
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: white;
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 206, 209, 0.1);
    border-left: 3px solid #00CED1;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.2);
}

.value-item h4 {
    color: #008B8B;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

/* Blog Styles */
.about-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 150px;
    text-align: center;
}

.about-content-wrapper {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    width: 100%;
}

.about-text {
    text-align: center;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 auto;
}

.about-title {
    color: #008B8B;
    margin-bottom: 15px;
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.about-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.about-image {
    flex-shrink: 0;
    width: 400px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atatürk-portrait {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #008B8B;
    max-width: 100%;
}

.about-text h3 {
    color: #008B8B;
    margin-bottom: 40px;
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}



.about-intro-text {
    font-size: 2rem;
    color: #008B8B;
    font-weight: 700;
    margin: 0 auto 30px auto;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    display: block;
    width: 100%;
}



.about-paragraph {
    color: #333;
    line-height: 1.8;
    margin: 0 auto 20px auto;
    font-size: 1.3rem;
    text-align: justify;
    max-width: 100%;
    display: block;
    width: 100%;
}



.vatansever {
    background: #f8f9fa;
    padding: 30px 35px;
    border-radius: 12px;
    border-left: 4px solid #008B8B;
    margin: 25px auto 0 auto;
    text-align: center;
    font-size: 1.4rem;
    max-width: 900px;
    display: block;
    width: 100%;
}

.blog-section h4 {
    color: #00CED1;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    border-left: 4px solid #00CED1;
    padding-left: 15px;
}

.blog-section p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.blog-features {
    list-style: none;
    padding: 0;
}

.blog-features li {
    background: #f8f9fa;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 3px solid #00CED1;
    font-size: 1rem;
    line-height: 1.6;
}

.blog-features strong {
    color: #008B8B;
    font-weight: 600;
}

.blog-quote {
    text-align: center;
    margin: 40px 0;
}

.blog-quote blockquote {
    background: #f8f9fa;
    color: #00CED1;
    padding: 25px 30px;
    border-radius: 10px;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 600;
    border-left: 4px solid #00CED1;
    max-width: 500px;
    width: 100%;
}

.blog-quote blockquote p {
    margin: 0;
    color: #00CED1;
}

.blog-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.blog-tags {
    margin: 0;
    color: #666;
}

.tag {
    display: inline-block;
    background: #e0f7fa;
    color: #00CED1;
    margin: 5px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    color: #008B8B;
    margin-bottom: 20px;
    margin-top: 35px;
    font-size: 2.2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text h4 {
    color: #008B8B;
    margin: 30px 0 20px 0;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.about-text p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-align: justify;
}

.about-intro {
    font-size: 1.4rem;
    color: #008B8B;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-mission, .about-principles {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 6px solid #008B8B;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-mission h4, .about-principles h4 {
    margin-top: 0;
    color: #008B8B;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.about-mission p, .about-principles p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #006666;
    font-weight: 500;
}

.vatansever {
    color: #008B8B;
    font-weight: 700;
    text-align: center;
    font-size: 1.5rem;
    margin: 30px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #008B8B;
}

.about-quote {
    text-align: center;
    margin: 30px 0;
}

.about-quote blockquote {
    background: #f8f9fa;
    color: #008B8B;
    padding: 25px 30px;
    border-radius: 10px;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 600;
    border-left: 4px solid #008B8B;
    max-width: 500px;
    width: 100%;
}

.about-quote blockquote p {
    margin: 0;
    color: #008B8B;
}



/* Members Section */
.members-section {
    padding: 100px 0;
    background: white;
}

.members-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.member-category h3 {
    color: #008B8B;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
}

.member-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.member-text p {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #006666;
    border-left: 4px solid #008B8B;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.member-text p:hover {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-text strong {
    color: #008B8B;
    font-weight: 700;
}

.member-item span {
    color: #333;
    font-weight: 500;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: white;
}



.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.news-card.featured {
    border: 2px solid #008B8B;
}

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

.news-image {
    height: 300px;
    overflow: hidden;
}

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

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

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 2px solid #008B8B;
}

.news-date {
    color: #008B8B;
    font-weight: 600;
    font-size: 0.9rem;
}

.news-category {
    background: #e0f7fa;
    color: #008B8B;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.author-photo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #008B8B;
}

.news-content h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    color: #008B8B;
    font-weight: 600;
    font-size: 0.85rem;
}

.author-title {
    color: #666;
    font-size: 0.75rem;
    font-weight: 500;
}

.author-date {
    color: #999;
    font-size: 0.7rem;
    font-weight: 400;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.news-inline-image {
    margin: 20px 0;
    text-align: center;
}

.toryum-mineral {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #f0f0f0;
}

.news-excerpt-continued {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Events Section */
.events-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E0F6FF 0%, #B0E0E6 25%, #87CEEB 50%);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.event-card.featured {
    border: 2px solid #00CED1;
}

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

.event-image {
    height: 300px;
    overflow: hidden;
}

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

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

.event-content {
    padding: 30px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.event-date {
    color: #00CED1;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-category {
    background: rgba(0, 206, 209, 0.1);
    color: #00CED1;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.event-location {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.event-content h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.event-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.event-details {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.event-time,
.event-participants {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.event-icon {
    font-size: 1.1rem;
}

.event-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: linear-gradient(135deg, #87CEEB, #B0E0E6);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #B0E0E6, #00CED1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4);
}

/* Founders Section Styles */
.founders-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.founders-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.founders-section .section-header h2 {
    color: #008B8B;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.founders-section .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

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

.founder-image {
    height: 250px;
    overflow: hidden;
}

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

.founder-image img.oktay-photo {
    object-position: center 25%;
}

.founder-image img.eminyazici-photo {
    object-position: center 15%;
}

.news-card:first-child .news-image {
    height: 550px;
}

.news-image img.hakan-fidan-photo {
    object-position: center 20%;
    height: 100%;
}

.news-detail-section .news-image {
    height: 600px;
}

.news-detail-section .news-image img.hakan-fidan-photo {
    height: 100%;
}

/* News images - show upper parts */
.news-card .news-image img {
    object-position: center 25%;
}

/* 4th news image - show center faces */
.news-card:nth-child(4) .news-image img {
    object-position: center 50%;
}

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

.founder-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.founder-content h3 {
    color: #008B8B;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.founder-title {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.founder-description {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.founder-contact-info {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #008B8B;
}

.founder-contact-info p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: #555;
}

.founder-contact-info a {
    color: #008B8B;
    text-decoration: none;
    font-weight: 500;
}

.founder-contact-info a:hover {
    text-decoration: underline;
}

.founder-quote {
    font-style: italic;
    color: #00CED1;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 206, 209, 0.1);
    border-radius: 10px;
    border-left: 4px solid #00CED1;
}

.read-more-btn {
    background: #00CED1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.read-more-btn:hover {
    background: #20B2AA;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

.founder-full-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: none;
}

.founder-full-content.show {
    display: block;
}

.founder-full-content p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.read-more-btn.active {
    background: #20B2AA !important;
}

/* Nihat Genç Memorial Section Styles */
.nihat-genc-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.nihat-genc-section .memorial-text {
    text-align: center;
    margin-bottom: 40px;
}

.nihat-genc-section .memorial-text h3 {
    color: #008B8B;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.nihat-genc-section .memorial-text p {
    color: #666;
    font-size: 1rem;
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
}

.memorial-content {
    max-width: 1000px;
    margin: 0 auto;
}

.memorial-text {
    text-align: center;
    margin-bottom: 50px;
}

.memorial-text p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.memorial-gallery {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-slider {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 600px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 600px;
}

.gallery-slide {
    min-width: 100%;
    flex-shrink: 0;
    height: 600px;
}

.memorial-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-btn {
    background: rgba(2, 70, 127, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: rgba(2, 70, 127, 1);
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #008B8B;
    transform: scale(1.2);
}

.dot:hover {
    background: #008B8B;
}

/* Article Detail Page Styles */
.back-to-home {
    margin: 30px 0;
    text-align: left;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #008B8B;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border: 2px solid #008B8B;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #008B8B;
    color: white;
}

.back-icon {
    width: 20px;
    height: 20px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.article-category {
    background: #008B8B;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
}

.article-title {
    color: #008B8B;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-subtitle {
    color: #666;
    font-size: 1.2rem;
    font-style: italic;
}

.article-body {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-image {
    text-align: center;
    margin-bottom: 30px;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.article-text {
    line-height: 1.8;
}

.article-paragraph {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.article-inline-image {
    text-align: center;
    margin: 30px 0;
}

.toryum-mineral-detail {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #f0f0f0;
    margin-bottom: 15px;
}

.image-caption {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.article-quote {
    background: #f8f9fa;
    border-left: 4px solid #008B8B;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.article-quote blockquote {
    color: #333;
    font-size: 1.2rem;
    font-style: italic;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.article-quote cite {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-footer {
    border-top: 2px solid #eee;
    padding-top: 30px;
    margin-top: 30px;
}

.article-source {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-align: center;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag {
    background: #e9ecef;
    color: #008B8B;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
}

.news-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.share-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}



/* About TÜDAS Section */
.about-tudas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-tudas-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.about-tudas-title {
    color: #00CED1;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 206, 209, 0.3);
}

.about-tudas-subtitle {
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
    font-style: italic;
}

.about-tudas-text {
    text-align: center;
}

.about-tudas-intro {
    color: #00CED1;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 206, 209, 0.2);
}

.about-tudas-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-tudas-mission {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-tudas-principles {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-tudas-conclusion {
    color: #00CED1;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 206, 209, 0.2);
}

/* Atatürk Quote Section */
.atatürk-quote-section {
    text-align: center;
    margin-top: 20px;
}

.atatürk-quote {
    color: #00CED1;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 206, 209, 0.3);
}

.atatürk-image-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.atatürk-portrait {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #008B8B;
    box-shadow: 0 5px 20px rgba(2, 70, 127, 0.3);
    transition: all 0.3s ease;
}

.atatürk-portrait:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(2, 70, 127, 0.4);
}

/* Mission, Vision and Core Values Section */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    position: relative;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #008B8B, #20B2AA, #48D1CC);
}

.mission-vision-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-section,
.vision-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.1);
    margin-bottom: 40px;
    border-left: 5px solid #008B8B;
    transition: all 0.3s ease;
}

.mission-section:hover,
.vision-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.15);
}

.mission-section h3,
.vision-section h3 {
    color: #008B8B;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.mission-section h3::after,
.vision-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #008B8B, #20B2AA);
    border-radius: 2px;
}

.mission-section p,
.vision-section p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    text-align-last: center;
}

.values-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.1);
    border-left: 5px solid #20B2AA;
}

.values-section h3 {
    color: #008B8B;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.values-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #20B2AA, #48D1CC);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #008B8B;
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.value-item:hover {
    transform: translateY(-3px);
    border-color: #008B8B;
    box-shadow: 0 8px 25px rgba(0, 139, 139, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

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

/* Responsive Design for Mission Vision Section */
@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-section,
    .vision-section,
    .values-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .mission-section h3,
    .vision-section h3,
    .values-section h3 {
        font-size: 1.5rem;
    }
    
    .mission-section p,
    .vision-section p {
        font-size: 1rem;
        text-align: left;
        text-align-last: left;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .value-item {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mission-vision-content {
        padding: 0 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        padding: 18px 15px;
        font-size: 1rem;
    }
}

/* Events Section */
.events-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.events-content {
    max-width: 1200px;
    margin: 0 auto;
}

.events-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    color: #008B8B;
    border: 2px solid #008B8B;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #008B8B;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 139, 139, 0.3);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 139, 139, 0.9);
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.event-content {
    padding: 25px;
}

.event-category {
    display: inline-block;
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-content h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.event-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.event-location,
.event-time {
    color: #008B8B;
    font-size: 0.9rem;
    font-weight: 500;
}

.event-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.event-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

/* Responsive Design for Events Section */
@media (max-width: 768px) {
    .events-section {
        padding: 80px 0;
    }
    
    .events-filter {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .event-content h3 {
        font-size: 1.2rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-actions .btn {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .events-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
    width: 200px;
    }
    
    .event-image {
        height: 180px;
    }
    
    .event-date {
        top: 10px;
        right: 10px;
        padding: 8px;
        min-width: 50px;
    }
    
    .event-date .day {
        font-size: 1.3rem;
    }
    
    .event-date .month {
        font-size: 0.8rem;
    }
}









/* Culture Section */
.culture-section {
    padding: 100px 0;
    background: white;
}

.culture-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.culture-item {
    text-align: center;
    padding: 40px 20px;
}

.culture-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.culture-item h3 {
    color: #008B8B;
    margin-bottom: 15px;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E0F6FF 0%, #B0E0E6 25%, #87CEEB 50%, #00CED1 75%, #20B2AA 100%);
}

/* İletişim bölümündeki tüm metinleri kalın yap */
.contact-section h2,
.contact-section h4,
.contact-section p {
    font-weight: 700 !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00CED1, #87CEEB, #B0E0E6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.3);
}

.contact-item h4 {
    color: #008B8B;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 139, 139, 0.3);
    font-weight: 700;
}

.contact-item p {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    color: white;
}

.instagram-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00CED1, #87CEEB);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.3);
}

.email-btn:hover {
    background: linear-gradient(135deg, #87CEEB, #B0E0E6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.4);
    color: white;
}

.email-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    font-weight: 700;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00CED1;
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
}

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

/* Success and Error Messages */
.success-message,
.error-message {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.success-message {
    border-color: #28a745;
    background: #f8fff9;
}

.error-message {
    border-color: #dc3545;
    background: #fff8f8;
}

.success-icon,
.error-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.success-message h4 {
    color: #28a745;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.error-message h4 {
    color: #dc3545;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.success-message p,
.error-message p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

/* Loading Button State */
.btn-loading {
    display: none;
}

.btn:disabled .btn-text {
    display: none;
}

.btn:disabled .btn-loading {
    display: inline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #00CED1, #87CEEB, #B0E0E6);
    color: white;
    padding: 60px 0 20px;
    box-shadow: 0 -4px 20px rgba(0, 206, 209, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
}

.footer-logo h3 {
    color: white;
    margin: 0;
    font-weight: 800;
}

.footer-section p {
    color: white;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.social-link:hover {
    color: white;
}

.instagram-link,
.twitter-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: white;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

/* Large screens - Better grid layout */
@media (min-width: 1200px) {
    .founders-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 1200px;
    }
    
    .founder-card {
        min-height: 500px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 900px;
    }
    
    .founder-card {
        min-height: 450px;
    }

/* Responsive Design */

    
    .founders-section {
        padding: 60px 0;
    }
    
    .founders-section .section-header h2 {
        font-size: 2rem;
    }
    
    .founders-section .section-header p {
        font-size: 1rem;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .founder-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .founder-image {
        height: 200px;
    }
    
    .founder-image img {
        object-position: center 30%;
    }
    
    .founder-image img.oktay-photo {
        object-position: center 25%;
    }
    
    /* News images - show upper parts */
    .news-card .news-image img {
        object-position: center 25%;
    }
    
    /* 4th news image - show center faces */
    .news-card:nth-child(4) .news-image img {
        object-position: center 50%;
    }
    
    .founder-content {
        padding: 25px;
    }
    
    .founder-content h3 {
        font-size: 1.3rem;
    }
    
    .founder-title {
        font-size: 0.9rem;
    }
    
    .founder-description {
        font-size: 0.9rem;
    }
    
    .founder-contact-info {
        margin: 15px 0;
        padding: 12px;
    }
    
    .founder-contact-info p {
        font-size: 0.85rem;
        margin: 6px 0;
    }
    
    .read-more-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .founder-full-content {
        margin-top: 10px;
        padding-top: 10px;
    }
    .nihat-genc-section {
        padding: 40px 0;
    }
    
    .nihat-genc-section .memorial-text h3 {
        font-size: 1.5rem;
    }
    
    .nihat-genc-section .memorial-text p {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    .memorial-image {
        height: 400px;
    }
    
    .gallery-slider {
        height: 400px;
    }
    
    .gallery-slide {
        height: 400px;
    }
    
    .gallery-track {
        height: 400px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .gallery-controls {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .logo-text h1,
    .logo-text p {
        display: block; /* Mobilde göster */
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 1rem;
        z-index: 10000;
        max-height: 80vh;
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav.active {
        display: flex !important;
    }
    
    .main-nav .nav-list {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        margin-bottom: 25px !important;
        display: flex !important;
    }
    
    .main-nav .nav-list li {
        margin: 0 !important;
        width: 100% !important;
        list-style: none !important;
        display: block !important;
    }
    
    .main-nav .nav-list a {
        padding: 1.4rem 1.8rem !important;
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        border-radius: 14px !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border: 1px solid rgba(0, 206, 209, 0.1) !important;
        margin: 0 !important;
        font-weight: 600 !important;
        color: #34495e !important;
        text-decoration: none !important;
        position: relative !important;
        overflow: hidden !important;
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        float: none !important;
        clear: both !important;
    }
    
    .main-nav .nav-list a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, rgba(0, 206, 209, 0.12), rgba(135, 206, 235, 0.08));
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }
    
    .main-nav .nav-list a::after {
        content: '→';
        font-size: 1.2rem;
        color: rgba(0, 206, 209, 0.4);
        transition: all 0.3s ease;
        font-weight: bold;
    }
    
    .main-nav .nav-list a:hover {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(0, 206, 209, 0.3);
        transform: translateX(8px);
        color: #00CED1;
        box-shadow: 0 8px 25px rgba(0, 206, 209, 0.2);
        border-width: 2px;
    }
    
    .main-nav .nav-list a:hover::before {
        width: 100%;
    }
    
    .main-nav .nav-list a:hover::after {
        color: #00CED1;
        transform: translateX(5px);
    }
    
    .main-nav .nav-list a:active {
        transform: translateX(8px) scale(0.98);
        box-shadow: 0 4px 15px rgba(0, 206, 209, 0.15);
    }
    
    /* Mobile'da contact info'yu göster */
    .mobile-contact-info {
        display: block;
        border-top: 2px solid #00CED1;
        padding: 2rem;
        margin: 0 2rem 2rem 2rem;
        background: linear-gradient(135deg, rgba(0, 206, 209, 0.08), rgba(135, 206, 235, 0.05));
        border-radius: 16px;
        border: 1px solid rgba(0, 206, 209, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .mobile-contact-info::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #00CED1, #87CEEB, #00CED1);
        background-size: 200% 100%;
        animation: shimmer 2s linear infinite;
    }
    
    @keyframes shimmer {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }
    
    .mobile-contact-info h4 {
        color: #00CED1;
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .mobile-contact-info h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #00CED1, #87CEEB);
        border-radius: 1px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
        margin: 8px 0;
        background: rgba(255, 255, 255, 0.6);
    }
    
    .contact-item:hover {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(0, 206, 209, 0.2);
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(0, 206, 209, 0.1);
    }
    
    .contact-icon {
        font-size: 1.3rem;
        min-width: 28px;
        color: #00CED1;
        text-shadow: 0 2px 4px rgba(0, 206, 209, 0.3);
    }
    
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .social-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        text-decoration: none;
        color: #2c3e50;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 10px;
        border: 1px solid transparent;
        background: rgba(255, 255, 255, 0.6);
        font-weight: 500;
    }
    
    .social-link:hover {
        color: #00CED1;
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(0, 206, 209, 0.2);
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(0, 206, 209, 0.1);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: #008B8B;
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: #008B8B;
    }
    
    .header {
        position: relative;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo-img {
        width: 140px;
        height: 120px;
    }
    
    .hero-logo {
        margin-top: 15px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        padding: 0 70px;
        max-width: 100%;
    }
    
    .news-author {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 10px;
    }
    
    .author-photo {
        width: 45px;
        height: 45px;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .share-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    

    
    .back-to-top {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }
    
    .instagram-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .instagram-icon {
        width: 14px;
        height: 14px;
    }
    
    .whatsapp-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .whatsapp-icon {
        width: 14px;
        height: 14px;
    }
    
    .email-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .email-icon {
        width: 14px;
        height: 14px;
    }
    
    .arrow-up {
        width: 22px;
        height: 22px;
    }
    
    .about-tudas-section {
        padding: 60px 0;
    }
    
    .about-tudas-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .about-tudas-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .about-tudas-intro {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .about-tudas-description,
    .about-tudas-mission,
    .about-tudas-principles {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .about-tudas-conclusion {
        font-size: 1.1rem;
    }
    
    .atatürk-quote {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .atatürk-portrait {
        width: 100px;
        height: 100px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-body {
        padding: 25px;
    }
    
    .article-paragraph {
        font-size: 1rem;
    }
    
    .back-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .about-content-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .about-image {
        width: 280px;
        order: -1;
    }
    
    .about-blog {
        padding: 40px 30px;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .blog-header h3 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .blog-meta {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .blog-meta span {
        font-size: 1rem;
        padding: 12px 20px;
        border-radius: 25px;
    }
    

    
    .about-intro-text {
        font-size: 1.5rem;
        margin: 0 0 20px 0;
        max-width: 95%;
        width: 100%;
    }
    
    .about-paragraph {
        font-size: 1.2rem;
        margin-bottom: 15px;
        max-width: 98%;
        width: 100%;
    }
    
    .about-quote blockquote {
        padding: 25px 20px;
        font-size: 1.1rem;
    }
    
    .about-intro {
        font-size: 1.2rem;
    }
    
    .about-text h3 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .about-text h4 {
        font-size: 1.4rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .about-mission p, .about-principles p {
        font-size: 1.2rem;
    }
    
    .vatansever {
        font-size: 1.3rem;
        padding: 20px 25px;
        margin: 25px 0;
        max-width: 95%;
        width: 100%;
    }
    
    .about-quote blockquote {
        padding: 20px 25px;
        font-size: 1.2rem;
        max-width: 95%;
    }
    
    /* Events Section Responsive */
    .events-section {
        padding: 60px 0;
    }
    
    .events-grid {
        gap: 30px;
        padding: 0 20px;
    }
    
    .event-card {
        max-width: 100%;
    }
    
    .event-content {
        padding: 25px;
    }
    
    .event-content h3 {
        font-size: 1.3rem;
    }
    
    .event-meta {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .event-details {
        gap: 20px;
        flex-direction: column;
    }
    
    .event-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .members-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .culture-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-section,
    .members-section,
    .news-section,
    .culture-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .news-content h3 {
        font-size: 1.3rem;
    }
    
    .news-modal-text h2 {
        font-size: 1.5rem;
    }
    
    .news-modal-text h3 {
        font-size: 1.1rem;
    }
}

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

/* Ensure sections are properly positioned for smooth scrolling */
section[id] {
    scroll-margin-top: 100px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #008B8B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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



/* Hover Effects */
.member-item,
.culture-item,
.stat-item {
    transition: all 0.3s ease;
}

.member-item:hover,
.culture-item:hover,
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Focus States for Accessibility */
.btn:focus,
.nav-list a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #008B8B;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-buttons,
    .contact-form {
        display: none;
    }
    
    .hero {
        height: auto;
        margin-top: 0;
        padding: 40px 0;
    }
    
    .hero-title {
        color: #000;
    }
    
    .hero-subtitle {
        color: #333;
    }
}

/* Responsive Design for Communities and STK Sections */
@media (max-width: 768px) {
    .communities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 18px;
    }
    
    .stk-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 18px;
    }
    
    .stk-items {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }
    
    .community-card, .stk-category {
        padding: 20px;
    }
    
    .community-icon {
        font-size: 2.2rem;
    }
    
    .stk-item {
        padding: 15px;
    }
    
    .stk-logo img, .stk-icon {
        width: 40px;
        height: 40px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00CED1, #87CEEB, #B0E0E6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 206, 209, 0.6);
    background: linear-gradient(135deg, #87CEEB, #B0E0E6, #00CED1);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.arrow-up {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.back-to-top:hover .arrow-up {
    transform: translateY(-2px);
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes linkShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Partners Section - STK Kuruluşları ve Türk Akraba Toplulukları */
.partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E0F6FF 0%, #B0E0E6 25%, #87CEEB 50%);
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('arkaplan.jpeg') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.partners-content {
    position: relative;
    z-index: 1;
}

.partners-title {
    text-align: center;
    font-size: 2.5rem;
    color: #00CED1;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 206, 209, 0.3);
}

.partners-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00CED1, #87CEEB, #B0E0E6);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 206, 209, 0.4);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.partner-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 206, 209, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: cardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00CED1, #87CEEB, #B0E0E6, #00CED1);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 206, 209, 0.6);
    animation: shimmer 2s infinite;
}

.partner-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 1.5s infinite;
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 15px 35px rgba(0, 206, 209, 0.2);
    border-color: rgba(0, 206, 209, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.partner-card:hover .partner-flag {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.partner-card:hover .partner-info {
    transform: translateY(-2px);
}

.partner-card:hover .partner-info h4 {
    color: #00CED1;
    text-shadow: 0 1px 2px rgba(0, 206, 209, 0.3);
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    height: 80px;
}

.partner-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.partner-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00CED1, #87CEEB, #B0E0E6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
        font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 206, 209, 0.4);
}

.partner-flag {
    font-size: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.partner-info {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-info h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.partner-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.partner-link {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #00CED1, #87CEEB, #B0E0E6);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 206, 209, 0.3);
    position: relative;
    overflow: hidden;
}

.partner-link:hover {
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    color: #00CED1;
    border-color: #00CED1;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.4);
    animation: linkShimmer 1.5s infinite;
}

/* STK Grid - Daha küçük kartlar için özel stil */
.stk-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 15px !important;
}

.stk-card {
    padding: 15px !important;
    min-height: 180px;
}

.stk-card .partner-logo {
    height: 50px !important;
    margin-bottom: 12px !important;
}

.stk-card .partner-img {
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
}

.stk-card .partner-placeholder {
    width: 50px !important;
    height: 50px !important;
    font-size: 0.9rem !important;
}

.stk-card .partner-info h4 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
}

.stk-card .partner-info p {
    font-size: 0.8rem !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
}

.stk-card .partner-link {
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
}

/* Responsive Design for Partners Section */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-title {
        font-size: 2rem;
    }
    
    .partners-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .partner-card {
        padding: 20px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .stk-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
        gap: 12px !important;
    }
    
    .stk-card {
        padding: 12px !important;
        min-height: 160px;
    }
    
    /* Türk Akraba Toplulukları için özel mobil düzenleme */
    .partners-category:nth-child(2) .partners-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
    }
    
    .partners-category:nth-child(2) .partner-card {
        padding: 8px !important;
        min-height: 120px !important;
    }
    
    .partners-category:nth-child(2) .partner-logo {
        height: 30px !important;
        margin-bottom: 6px !important;
    }
    
    .partners-category:nth-child(2) .partner-flag {
        font-size: 1.8rem !important;
    }
    
    .partners-category:nth-child(2) .partner-info h4 {
        font-size: 0.7rem !important;
        margin-bottom: 4px !important;
    }
    
    .partners-category:nth-child(2) .partner-info p {
        font-size: 0.6rem !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
    }
    
    .partners-category:nth-child(2) .partner-link {
        padding: 3px 8px !important;
        font-size: 0.6rem !important;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-title {
        font-size: 1.8rem;
    }
    
    .partners-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-card {
        padding: 15px;
    }
    
    .partner-logo {
        height: 60px;
        margin-bottom: 15px;
    }
    
    .partner-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .partner-flag {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .partner-info h4 {
        font-size: 1.1rem;
    }
    
    .partner-info p {
        font-size: 0.85rem;
    }
    
    .partner-link {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .stk-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
        gap: 10px !important;
    }
    
    .stk-card {
        padding: 10px !important;
        min-height: 140px;
    }
    
    .stk-card .partner-logo {
        height: 40px !important;
        margin-bottom: 8px !important;
    }
    
    .stk-card .partner-img {
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .stk-card .partner-placeholder {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.8rem !important;
    }
    
    .stk-card .partner-info h4 {
        font-size: 0.9rem !important;
        margin-bottom: 6px !important;
    }
    
    .stk-card .partner-info p {
        font-size: 0.7rem !important;
        margin-bottom: 8px !important;
    }
    
    .stk-card .partner-link {
        padding: 4px 10px !important;
        font-size: 0.65rem !important;
    }
    
    /* Türk Akraba Toplulukları için özel küçük mobil düzenleme */
    .partners-category:nth-child(2) .partners-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px !important;
    }
    
    .partners-category:nth-child(2) .partner-card {
        padding: 6px !important;
        min-height: 100px !important;
    }
    
    .partners-category:nth-child(2) .partner-logo {
        height: 25px !important;
        margin-bottom: 4px !important;
    }
    
    .partners-category:nth-child(2) .partner-flag {
        font-size: 1.5rem !important;
    }
    
    .partners-category:nth-child(2) .partner-info h4 {
        font-size: 0.6rem !important;
        margin-bottom: 3px !important;
    }
    
    .partners-category:nth-child(2) .partner-info p {
        font-size: 0.5rem !important;
        margin-bottom: 4px !important;
        line-height: 1.1 !important;
    }
    
    .partners-category:nth-child(2) .partner-link {
        padding: 2px 6px !important;
        font-size: 0.5rem !important;
    }
}

/* Çok küçük ekranlar için Türk Akraba Toplulukları düzenlemesi */
@media (max-width: 320px) {
    .partners-category:nth-child(2) .partners-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 4px !important;
    }
    
    .partners-category:nth-child(2) .partner-card {
        padding: 4px !important;
        min-height: 80px !important;
    }
    
    .partners-category:nth-child(2) .partner-logo {
        height: 20px !important;
        margin-bottom: 3px !important;
    }
    
    .partners-category:nth-child(2) .partner-img {
        border-radius: 50% !important;
        width: 20px !important;
        height: 20px !important;
    }
    
    .partners-category:nth-child(2) .partner-flag {
        font-size: 1.2rem !important;
    }
    
    .partners-category:nth-child(2) .partner-info h4 {
        font-size: 0.5rem !important;
        margin-bottom: 2px !important;
    }
    
    .partners-category:nth-child(2) .partner-info p {
        font-size: 0.4rem !important;
        margin-bottom: 3px !important;
        line-height: 1.0 !important;
    }
    
    .partners-category:nth-child(2) .partner-link {
        padding: 1px 4px !important;
        font-size: 0.4rem !important;
    }
}

/* Dünya ve Dönen Bayraklar Animasyonu - Profesyonel Versiyon */
.world-flags-animation {
    text-align: center;
    margin: 120px 0 80px 0;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.05) 0%, rgba(32, 178, 170, 0.05) 100%);
    border-radius: 30px;
    position: relative;
        overflow: hidden;
    }
    
.world-flags-animation::before {
    content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 206, 209, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.world-container {
    position: relative;
    display: inline-block;
    width: 1000px;
    height: 600px;
    perspective: 1000px;
}

.world {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 300px;
    z-index: 10;
    filter: drop-shadow(0 15px 40px rgba(0, 206, 209, 0.3));
}

.rotating-flags {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
}

.flag-orbital {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform-origin: 0 0;
    animation: circular-flag-movement 20s linear infinite;
    animation-delay: var(--delay);
}

.flag {
    font-size: 90px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 206, 209, 0.2);
}

.flag::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(0, 206, 209, 0.3), rgba(32, 178, 170, 0.3));
    border-radius: 50%;
        z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flag:hover {
    transform: scale(1.4);
    filter: drop-shadow(0 8px 25px rgba(0, 206, 209, 0.5));
    border-color: rgba(0, 206, 209, 0.6);
}

.flag:hover::before {
    opacity: 1;
}

@keyframes circular-flag-movement {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(350px) rotate(0deg);
        opacity: 1;
        z-index: 5;
    }
    12.5% {
        transform: translate(-50%, -50%) rotate(45deg) translateX(350px) rotate(-45deg);
        opacity: 1;
        z-index: 5;
    }
    25% {
        transform: translate(-50%, -50%) rotate(90deg) translateX(350px) rotate(-90deg);
        opacity: 1;
        z-index: 5;
    }
    37.5% {
        transform: translate(-50%, -50%) rotate(135deg) translateX(350px) rotate(-135deg);
        opacity: 1;
        z-index: 5;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) translateX(350px) rotate(-180deg);
        opacity: 1;
        z-index: 5;
    }
    62.5% {
        transform: translate(-50%, -50%) rotate(225deg) translateX(350px) rotate(-225deg);
        opacity: 1;
        z-index: 5;
    }
    75% {
        transform: translate(-50%, -50%) rotate(270deg) translateX(350px) rotate(-270deg);
        opacity: 1;
        z-index: 5;
    }
    87.5% {
        transform: translate(-50%, -50%) rotate(315deg) translateX(350px) rotate(-315deg);
        opacity: 1;
        z-index: 5;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(350px) rotate(-360deg);
        opacity: 1;
        z-index: 5;
    }
}

/* Responsive tasarım için */
@media (max-width: 1200px) {
    .world-container {
        width: 600px;
        height: 400px;
    }
    
    .world {
        font-size: 150px;
    }
    
    .flag-orbital {
        width: 60px;
        height: 60px;
    }
    
    .flag {
        font-size: 40px;
    }
    
    @keyframes circular-flag-movement {
        0% {
            transform: translate(-50%, -50%) rotate(0deg) translateX(280px) rotate(0deg);
            opacity: 1;
            z-index: 5;
        }
        50% {
            transform: translate(-50%, -50%) rotate(180deg) translateX(280px) rotate(-180deg);
            opacity: 1;
            z-index: 5;
        }
        100% {
            transform: translate(-50%, -50%) rotate(360deg) translateX(280px) rotate(-360deg);
            opacity: 1;
            z-index: 5;
        }
    }
}

/* Duplicate CSS removed */

@media (max-width: 480px) {
    /* Mobile Navigation - Küçük ekranlar */
    .main-nav.active {
        padding: 15px;
    }
    
    .nav-list {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .nav-list a {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .mobile-contact-info h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .contact-item {
        padding: 6px 0;
        font-size: 0.9rem;
    }
    
    .contact-icon {
        font-size: 1.1rem;
        min-width: 22px;
    }
    
    .social-link {
        padding: 6px 0;
        font-size: 0.9rem;
    }
    
    .world-container {
        width: 300px;
        height: 250px;
    }
    
    .world {
        font-size: 100px;
    }
    
    .flag-orbital {
        width: 40px;
        height: 40px;
    }
    
    .flag {
        font-size: 25px;
    }
    
    @keyframes circular-flag-movement {
        0% {
            transform: translate(-50%, -50%) rotate(0deg) translateX(180px) rotate(0deg);
            opacity: 1;
            z-index: 5;
        }
        50% {
            transform: translate(-50%, -50%) rotate(180deg) translateX(180px) rotate(-180deg);
            opacity: 1;
            z-index: 5;
        }
        100% {
            transform: translate(-50%, -50%) rotate(360deg) translateX(180px) rotate(-360deg);
            opacity: 1;
            z-index: 5;
        }
    }
}
