/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B1538;
    --secondary-color: #D4AF37;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1100;
    overflow: visible;
    margin-bottom: 15px;
}

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 0;
    font-size: 14px;
    line-height: 1.4;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: auto;
}

.top-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.top-links a:hover {
    opacity: 0.8;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-switcher span {
    color: rgba(255, 255, 255, 0.7);
}

.lang-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.lang-link:hover,
.lang-link.active {
    font-weight: bold;
    text-decoration: underline;
}

/* Navbar */
.navbar {
    padding: 8px 0;
    overflow: visible;
    position: relative;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-top: 0;
}

.logo {
    position: relative;
}

.logo a {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.logo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 700;
}

.logo p {
    font-size: 11px;
    color: var(--text-light);
    margin-top: -5px;
}

.logo-image {
    max-height: 80px;
    max-width: 80px;
    height: 80px;
    width: 80px;
    object-fit: contain;
    display: block;
    z-index: 10;
    position: relative;
    margin-bottom: -30px;
    transform: translateY(-3px);
    background: var(--white);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Ana sayfa için büyük logo */
body.home-page .logo-image,
.index-page .logo-image {
    max-height: 150px;
    max-width: 150px;
    height: 150px;
    width: 150px;
    margin-bottom: -50px;
    transform: translateY(-5px);
    padding: 20px;
}

body.home-page .logo::before,
.index-page .logo::before {
    width: 150px;
    height: 150px;
    top: -8px;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.menu-close {
    display: none;
    width: 100%;
    justify-content: flex-end;
}

.menu-close-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.menu-close-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.nav-menu li {
    margin: 0;
    padding: 0;
    line-height: normal;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 0;
    margin: 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.menu-entrepreneurs,
.nav-menu a.menu-application {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(139, 21, 56, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-menu a.menu-entrepreneurs:hover,
.nav-menu a.menu-application:hover,
.nav-menu a.menu-entrepreneurs.active,
.nav-menu a.menu-application.active {
    color: var(--white);
    background: #a01d47;
    transform: translateY(-1px) scale(1.02);
}

.nav-menu a.menu-entrepreneurs i,
.nav-menu a.menu-application i {
    color: var(--white);
}

.nav-menu a.menu-entrepreneurs::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 0 rgba(139, 21, 56, 0.35);
    opacity: 0;
    pointer-events: none;
}

.nav-menu a.menu-entrepreneurs:hover::after,
.nav-menu a.menu-entrepreneurs.active::after {
    animation: menuPulse 1.8s ease-out infinite;
    opacity: 1;
}

@keyframes menuPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 21, 56, 0.35);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(139, 21, 56, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 21, 56, 0);
    }
}

.dropdown,
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    list-style: none;
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu,
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--text-color);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.search-box {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.search-toggle:hover {
    color: var(--primary-color);
}

.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
    margin-top: 10px;
    min-width: 250px;
}

.search-form.active {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.search-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 0;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: none;
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a01d47 100%);
    align-items: center;
    justify-content: center;
    background-size: 120% auto;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: background-position 0.3s ease-out;
}

.hero-slide.active {
    display: flex;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 21, 56, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    font-size: 24px;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background: #c9a020;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #6b1029;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

/* News Section */
.news-section {
    background: var(--bg-light);
    padding: 80px 0;
}

/* News Tabs */
.news-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
}

.tab-button {
    padding: 12px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.news-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content h3 a {
    color: #333;
    text-decoration: none;
    transition: var(--transition);
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
    font-size: 14px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    margin-top: auto;
    font-size: 14px;
}

.read-more:hover {
    color: #a01d47;
    padding-left: 5px;
}

/* Projects Preview */
.projects-preview {
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.project-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.project-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.project-card {
    cursor: pointer;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.project-card p,
.project-summary {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.project-detail-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.project-detail-btn:hover {
    background: #9b1a4a;
    transform: translateY(-2px);
}

.project-detail-btn i {
    font-size: 16px;
}

/* Project Modal - Modern & Feminine Design */
.project-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(139, 21, 56, 0.4);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.project-modal-content {
    background: linear-gradient(180deg, #ffffff 0%, #fef7f7 100%);
    margin: auto;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 850px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.25),
                0 8px 24px rgba(139, 21, 56, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    animation: modalFadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.project-modal-close {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 24px;
    font-weight: 300;
    color: rgba(139, 21, 56, 0.7);
    cursor: pointer;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.1);
    border: 1px solid rgba(139, 21, 56, 0.1);
}

.project-modal-close:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.2);
}

.project-modal-header {
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.15) 0%, 
        rgba(255, 192, 203, 0.1) 50%,
        rgba(255, 228, 225, 0.15) 100%);
    padding: 50px 40px 40px 40px;
    text-align: center;
    color: var(--primary-color);
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.project-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.project-modal-icon {
    font-size: 72px;
    margin-bottom: 24px;
    opacity: 1;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(139, 21, 56, 0.15));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.project-modal-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(139, 21, 56, 0.1);
}

.project-modal-body {
    padding: 45px 50px;
    padding-right: 35px; /* Scrollbar için ekstra alan */
    color: var(--text-color);
    line-height: 1.9;
    overflow-y: auto !important;
    overflow-x: hidden;
    flex: 1;
    max-height: calc(90vh - 250px);
    min-height: 200px;
    /* Firefox için modern scrollbar - her zaman görünür */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 182, 193, 0.95) rgba(255, 228, 225, 0.5);
}

/* Webkit (Chrome, Safari, Edge) için modern scrollbar - her zaman görünür */
.project-modal-body::-webkit-scrollbar {
    width: 14px !important;
    display: block !important;
    -webkit-appearance: none;
}

.project-modal-body::-webkit-scrollbar-track {
    background: linear-gradient(180deg, 
        rgba(255, 228, 225, 0.4) 0%, 
        rgba(255, 192, 203, 0.35) 50%,
        rgba(255, 228, 225, 0.4) 100%) !important;
    border-radius: 12px;
    margin: 8px 0;
    border: 1.5px solid rgba(255, 182, 193, 0.4);
    box-shadow: inset 0 0 8px rgba(255, 182, 193, 0.2);
}

.project-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        rgba(255, 182, 193, 1) 0%, 
        rgba(255, 192, 203, 0.95) 25%,
        rgba(255, 182, 193, 0.9) 50%,
        rgba(255, 192, 203, 0.85) 75%,
        rgba(139, 21, 56, 0.75) 100%) !important;
    border-radius: 12px;
    border: 2.5px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 3px 10px rgba(139, 21, 56, 0.25),
        inset 0 2px 5px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(139, 21, 56, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 50px;
}

.project-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        rgba(255, 182, 193, 1) 0%, 
        rgba(255, 192, 203, 1) 25%,
        rgba(255, 182, 193, 0.98) 50%,
        rgba(255, 192, 203, 0.95) 75%,
        rgba(139, 21, 56, 0.9) 100%) !important;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 5px 15px rgba(139, 21, 56, 0.35),
        inset 0 2px 5px rgba(255, 255, 255, 0.7),
        inset 0 -2px 4px rgba(139, 21, 56, 0.25);
    transform: scaleX(1.2);
}

.project-modal-body::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, 
        rgba(139, 21, 56, 0.9) 0%, 
        rgba(255, 192, 203, 0.98) 25%,
        rgba(255, 182, 193, 1) 50%,
        rgba(255, 192, 203, 1) 75%,
        rgba(255, 182, 193, 1) 100%) !important;
    box-shadow: 
        0 3px 8px rgba(139, 21, 56, 0.4),
        inset 0 3px 8px rgba(139, 21, 56, 0.3);
}

/* Scrollbar corner */
.project-modal-body::-webkit-scrollbar-corner {
    background: transparent;
}

/* Scrollbar corner */
.project-modal-body::-webkit-scrollbar-corner {
    background: transparent;
}

.project-modal-body p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #4a4a4a;
}

.project-modal-body p:last-child {
    margin-bottom: 0;
}

.project-modal-body ul,
.project-modal-body ol {
    margin: 20px 0;
    padding-left: 32px;
}

.project-modal-body li {
    margin: 12px 0;
    font-size: 16px;
    color: #4a4a4a;
    position: relative;
    padding-left: 8px;
}

.project-modal-body ul li::marker {
    color: rgba(139, 21, 56, 0.6);
    font-size: 1.2em;
}

.project-modal-body ol li {
    counter-increment: list-counter;
}

.project-modal-body strong,
.project-modal-body b {
    font-weight: 600;
    color: var(--primary-color);
}

.project-modal-body h3,
.project-modal-body h4 {
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.project-modal-body h3 {
    font-size: 24px;
    border-bottom: 2px solid rgba(139, 21, 56, 0.1);
    padding-bottom: 12px;
}

.project-modal-body h4 {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .project-modal {
        padding: 10px;
    }
    
    .project-modal-content {
        border-radius: 20px;
        max-width: 100%;
    }
    
    .project-modal-header {
        padding: 40px 30px 30px 30px;
    }
    
    .project-modal-icon {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .project-modal-header h2 {
        font-size: 26px;
    }
    
    .project-modal-body {
        padding: 30px 25px;
    }
    
    .project-modal-close {
        right: 16px;
        top: 16px;
        width: 40px;
        height: 40px;
    }
}

.project-detail-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.project-detail-btn:hover {
    background: #9b1a4a;
    transform: translateY(-2px);
}

.project-detail-btn i {
    font-size: 16px;
}

/* Project Modal - Duplicate removed, using the modern version above */

/* Events Calendar */
.events-calendar {
    background: var(--bg-light);
    padding: 80px 0;
}

.calendar-info {
    text-align: center;
    padding: 40px;
}

.no-events {
    color: var(--text-light);
    font-size: 18px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.event-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    gap: 20px;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.event-image {
    width: 200px;
    min-width: 200px;
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-item:hover .event-image img {
    transform: scale(1.05);
}

.event-details {
    display: flex;
    gap: 20px;
    padding: 20px;
    flex: 1;
    align-items: flex-start;
}

.event-date {
    flex-shrink: 0;
}

.date-box {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(139, 21, 56, 0.3);
}

.date-day {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-content {
    flex: 1;
}

.event-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 6px;
}

.event-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.event-info-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.event-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.event-info-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-info-value {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

.event-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Application CTA */
.application-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9b1a4a 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
}

.btn-large i {
    margin-right: 10px;
}

/* Application Form */
.application-form-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.application-form {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title i {
    font-size: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.form-group .required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.alert {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 20px;
}

/* Supporters */
.supporters {
    background: var(--white);
    padding: 80px 0;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.supporter-logo {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    width: 100%;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.supporter-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.supporter-logo a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.supporter-logo img {
    max-width: 100%;
    max-height: 80px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.supporter-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Useful Links Section */
.useful-links-section {
    background: var(--white);
    padding: 80px 0;
}

.links-categories {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.link-category {
    margin-bottom: 30px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title i {
    font-size: 28px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.link-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.1);
}

.link-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 22px;
}

.link-content {
    flex: 1;
}

.link-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.link-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.link-arrow {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.link-item:hover .link-arrow {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.faq-answer ul {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
}

.faq-answer ul li {
    margin-bottom: 8px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a01d47 100%);
    color: var(--white);
    padding: 60px 0 40px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* About Content */
.about-content {
    padding: 60px 0;
}

.about-intro {
    margin-bottom: 50px;
    text-align: center;
}

.about-intro h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mission-card,
.vision-card,
.mission-vision-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-vision-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 36px;
}

.mission-vision-card h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.board-member {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.board-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-member h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-bio {
    color: var(--text-light);
    font-size: 14px;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.board-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 20px;
    text-align: center;
}

.board-card img,
.board-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 12px;
    object-fit: cover;
    display: block;
}

.board-placeholder {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
}

.board-card h3 {
    margin-bottom: 6px;
}

.board-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.cooperations-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Projects Content */
.projects-preview--page {
    padding: 50px 0 30px;
    background: var(--bg-light);
}

.projects-preview--page .project-card {
    background: var(--white);
}

.impact-stats {
    padding: 20px 0 60px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.impact-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px;
    text-align: center;
}

.impact-card h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 6px;
}

.impact-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.projects-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.08), rgba(212, 175, 55, 0.18));
}

.projects-cta .cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.projects-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.projects-cta p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
}

/* News Page */
.news-section--page {
    padding: 60px 0;
}

.news-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.news-search-form {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 30px;
}

.news-search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    align-items: center;
}

.news-search-row input[type="text"],
.news-search-row input[type="date"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
}

.news-search-row .btn {
    width: 100%;
    text-align: center;
}

.news-search-meta {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.news-detail {
    padding: 60px 0;
}

.news-detail-meta {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.news-detail-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-body {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
}

.news-detail-actions {
    margin-top: 24px;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px;
    text-align: center;
}

.contact-card i {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-card h3 {
    margin-bottom: 8px;
}

.contact-card a {
    color: inherit;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.contact-form h3 {
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea,
.application-form input,
.application-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 12px;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.contact-map {
    background: var(--bg-light);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 12px;
}

/* Application Page */
.application-section {
    padding: 60px 0;
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.step-number {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 10px;
}

.application-form {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.application-form h3 {
    margin-bottom: 16px;
}

.form-section {
    margin-bottom: 20px;
}

.form-section h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 18px;
}

.application-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 12px;
    font-family: inherit;
    background: var(--white);
}

.projects-content {
    padding: 60px 0;
}

.projects-intro {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.project-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.project-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-features {
    list-style: none;
    margin-top: 20px;
}

.project-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-features i {
    color: var(--primary-color);
}

/* Events Content */
.events-content {
    padding: 60px 0;
}

.events-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    font-size: 18px;
}

.events-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.event-card.past {
    opacity: 0.7;
}

.event-date {
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.event-date .day {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-date .year {
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.9;
}

.event-content h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
    flex-wrap: wrap;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Blog Content */
.blog-content {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content-inner {
    padding: 25px;
}

.blog-date,
.blog-author {
    font-size: 14px;
    color: var(--text-light);
    display: inline-block;
    margin-right: 15px;
}

.blog-content-inner h3 {
    font-size: 22px;
    color: var(--text-color);
    margin: 15px 0;
    line-height: 1.4;
}

.blog-content-inner p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Contact Content */
.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.contact-social-links .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.contact-social-links .social-link.facebook {
    background: #1877f2;
}

.contact-social-links .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-social-links .social-link.linkedin {
    background: #0077b5;
}

.contact-social-links .social-link.twitter {
    background: #1da1f2;
}

.contact-social-links .social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.map-section {
    margin-top: 60px;
}

.map-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    font-size: 36px;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-subtitle {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    background: #8B1538;
    box-shadow: 0 2px 8px rgba(139, 21, 56, 0.3);
}

.footer-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.5);
}

.footer-social-link.facebook {
    background: #8B1538;
}

.footer-social-link.instagram {
    background: #8B1538;
}

.footer-social-link.twitter {
    background: #8B1538;
}

.footer-social-link.linkedin {
    background: #8B1538;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: var(--white);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list li a:hover {
    color: var(--white);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--white);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #8B1538;
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: #a01d47;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Paydaşlar Sayfası */
.paydaslar-content {
    padding: 60px 0;
}

.section-padding {
    padding: 60px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-intro p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.paydaslar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.paydas-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.paydas-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Girişimciler Sayfası */
.girisimciler-content {
    padding: 60px 0;
}

.girisimciler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.girisimci-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
}

.girisimci-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.girisimci-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.girisimci-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.girisimci-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.girisimci-card:hover .girisimci-image img {
    transform: scale(1.05);
}

.girisimci-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #ccc;
}

.girisimci-placeholder i {
    font-size: 120px;
    opacity: 0.5;
}

.girisimci-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.girisimci-logo {
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
}

.girisimci-logo img {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.girisimci-firma {
    font-size: 22px;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.girisimci-ad {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.5;
}

.girisimci-sektor {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.girisimci-sektor i {
    color: var(--primary-color);
    font-size: 16px;
}

.girisimci-social {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.website {
    background: var(--primary-color);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.girisimci-detail-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #8B1538;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.25);
}

.girisimci-detail-btn:hover {
    background: #a01d47;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.35);
}

.girisimci-detail-btn i {
    transition: transform 0.3s ease;
}

.girisimci-detail-btn:hover i {
    transform: translateX(4px);
}

/* Girişimci Detay Sayfası */
.girisimci-detay-content {
    padding: 60px 0;
}

.girisimci-detay-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.girisimci-detay {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.girisimci-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
}

.girisimci-profile {
    flex-shrink: 0;
}

.girisimci-profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.girisimci-placeholder-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-color);
}

.girisimci-placeholder-large i {
    font-size: 100px;
    color: #ccc;
}

.girisimci-header-info {
    flex: 1;
    min-width: 250px;
}

.girisimci-detay-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.girisimci-detay-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.girisimci-detay-sektor {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.girisimci-detay-sektor i {
    color: var(--primary-color);
}

.girisimci-social-detay {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.girisimci-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.girisimci-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    font-size: 20px;
}

.girisimci-hikaye {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.destekler-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.destek-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.destek-baslik {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.destek-aciklama {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 10px;
}

.destek-tarih {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.destek-tarih i {
    color: var(--primary-color);
}

.urunler-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.urun-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.urun-baslik {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.urun-aciklama {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.urun-resimler {
    margin-top: 20px;
}

.urun-resim-single img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.urun-resim-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.urun-main-image {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.urun-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.urun-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.urun-thumb {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
}

.urun-thumb:hover,
.urun-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.urun-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.girisimci-footer-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.paydas-logo {
    margin-bottom: 20px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paydas-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.paydas-card:hover .paydas-logo img {
    filter: grayscale(0%);
}

.paydas-info h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.paydas-info h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.paydas-info h3 a:hover {
    color: var(--secondary-color);
}

.paydas-info h3 i {
    font-size: 14px;
    margin-left: 5px;
    opacity: 0.7;
}

.paydas-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state p {
    font-size: 18px;
    margin-top: 20px;
}

/* Haberler Sayfası */
.haberler-content {
    padding: 60px 0;
}

.haberler-filters {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.year-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.year-filter {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    font-size: 14px;
}

.year-filter:hover,
.year-filter.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Arama Formu */
.search-group {
    flex: 2;
    min-width: 300px;
}

.search-form-inline {
    display: flex;
    gap: 0;
    align-items: stretch;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 10px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-color);
}

.search-input:focus {
    outline: none;
    border-color: #999;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    padding: 10px 20px;
    background: var(--white);
    color: var(--text-color);
    border: 1px solid #d0d0d0;
    border-left: none;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-btn:hover {
    background: #f8f8f8;
    border-color: #999;
}

.clear-search {
    padding: 10px 12px;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #d0d0d0;
    margin-left: 10px;
}

.clear-search:hover {
    background: #f8f8f8;
    border-color: #999;
}

.sort-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    background: var(--white);
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.sort-select:hover {
    border-color: #999;
}

.sort-select:focus {
    outline: none;
    border-color: #999;
}

.haberler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    margin-top: 30px;
}

.haber-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.haber-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.haber-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.haber-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.haber-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.haber-card:hover .haber-image img {
    transform: scale(1.05);
}

.haber-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.haber-meta {
    margin-bottom: 12px;
}

.haber-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}

.haber-date i {
    color: var(--primary-color);
}

.haber-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.haber-title a {
    color: #0066cc;
    text-decoration: none;
    transition: var(--transition);
}

.haber-title a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.haber-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.haber-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    margin-top: auto;
}

.haber-read-more:hover {
    gap: 12px;
    color: var(--primary-color);
    text-decoration: underline;
}

.haber-read-more i {
    font-size: 12px;
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    font-size: 14px;
    min-width: 40px;
}

.pagination-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-link.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    font-weight: 600;
}

.pagination-dots {
    padding: 10px 8px;
    color: var(--text-light);
}

/* Haber Detay Sayfası */
.haber-detay-content {
    padding: 60px 0;
}

.haber-detay-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.haber-detay {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.haber-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.haber-detay-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.haber-meta-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.haber-meta-info .haber-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.haber-meta-info .haber-date i {
    color: var(--primary-color);
}

.haber-detay-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.haber-detay-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Haber Galeri */
.haber-images-gallery {
    margin-bottom: 30px;
}

.haber-gallery-main {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

.haber-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.haber-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-thumb {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    background: var(--bg-light);
}

.gallery-thumb:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.gallery-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 21, 56, 0.2);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.haber-excerpt-box {
    background: var(--bg-light);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
    border-radius: 5px;
}

.haber-excerpt-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.haber-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}

.haber-content-text p {
    margin-bottom: 20px;
}

.haber-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-buttons span {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 5px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* İlgili Haberler */
.related-news {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.related-news h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.related-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-news-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.related-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-news-image {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
}

.related-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-news-item:hover .related-news-image img {
    transform: scale(1.1);
}

.related-news-content {
    flex: 1;
}

.related-news-content h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.related-news-content h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.related-news-content h4 a:hover {
    color: var(--primary-color);
}

.related-news-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.related-news-date i {
    color: var(--primary-color);
    font-size: 10px;
}

.no-related-news {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .paydaslar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .paydas-card {
        padding: 20px;
    }
    
    .section-intro h2 {
        font-size: 24px;
    }
    
    /* Girişimciler Responsive */
    .girisimciler-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .girisimci-header {
        flex-direction: column;
        text-align: center;
    }
    
    .girisimci-profile-image,
    .girisimci-placeholder-large {
        margin: 0 auto;
    }
    
    .girisimci-social-detay {
        justify-content: center;
    }
    
    .girisimci-detay {
        padding: 20px;
    }
    
    .girisimci-detay-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    /* Haberler Responsive */
    .haberler-filters {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-group {
        min-width: 100%;
    }
    
    .search-form-inline {
        flex-direction: row;
        align-items: stretch;
    }
    
    .search-input {
        min-width: 0;
        flex: 1;
        border-radius: 5px 0 0 5px;
    }
    
    .search-btn {
        border-radius: 0 5px 5px 0;
    }
    
    .clear-search {
        margin-left: 10px;
        margin-top: 0;
    }
    
    .haberler-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .pagination-link {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 35px;
    }
    
    /* Haber Detay Responsive */
    .haber-detay-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .related-news {
        position: static;
    }
    
    .haber-detay {
        padding: 25px;
    }
    
    .haber-detay-title {
        font-size: 24px;
    }
    
    .haber-footer-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .haber-gallery-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }
    
    .gallery-thumb {
        height: 80px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 20px;
        display: none;
    }

    .has-dropdown.open > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .project-detail {
        grid-template-columns: 1fr;
    }

    .event-card {
        grid-template-columns: 100px 1fr;
    }
}

@media (max-width: 768px) {
    .event-item {
        flex-direction: column;
    }
    
    .event-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
    
    .event-details {
        flex-direction: column;
        padding: 15px;
    }
    
    .date-box {
        width: 60px;
        height: 60px;
    }
    
    .date-day {
        font-size: 24px;
    }
    
    .event-meta {
        padding: 12px;
        gap: 10px;
    }
    
    .event-info-item i {
        font-size: 16px;
    }
    
    .event-info-value {
        font-size: 14px;
    }
    
    .navbar {
        padding: 6px 0;
    }

    .logo::before {
        width: 160px;
        height: 160px;
        top: -15px;
    }

    .logo-image {
        max-height: 140px;
        max-width: 140px;
        height: 140px;
        width: 140px;
        margin-bottom: -30px;
        transform: translateY(-5px);
        padding: 15px;
    }

    .hero {
        min-height: 450px;
    }

    .hero-slide {
        min-height: 450px;
        padding: 80px 0;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .slider-controls {
        padding: 0 10px;
    }

    .slider-prev,
    .slider-next {
        padding: 10px 15px;
        font-size: 18px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .news-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .tab-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .news-image {
        height: 150px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-content h3 {
        font-size: 15px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .link-item {
        padding: 15px;
    }
    
    .link-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .link-content h4 {
        font-size: 15px;
    }
    
    .link-content p {
        font-size: 12px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
    
    .projects-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .supporters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .supporter-logo {
        max-width: 100%;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .board-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .event-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .event-date {
        margin: 0 auto 20px;
        max-width: 100px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 4px 0;
    }

    .logo::before {
        width: 130px;
        height: 130px;
        top: -10px;
    }

    .logo-image {
        max-height: 110px;
        max-width: 110px;
        height: 110px;
        width: 110px;
        margin-bottom: -25px;
        transform: translateY(-5px);
        padding: 12px;
    }

    .hero {
        padding: 60px 0;
    }

    .page-header {
        padding: 40px 0 30px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    section {
        padding: 40px 0;
    }

    .logo h1 {
        font-size: 22px;
    }

    .logo p {
        font-size: 10px;
    }
}

/* Mobile enhancements */
@media (max-width: 968px) {
    .nav-menu {
        top: 70px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu a {
        padding: 10px 0;
        font-size: 16px;
    }

    .menu-close {
        display: flex;
        padding-bottom: 10px;
    }

    .nav-content {
        gap: 10px;
    }

    .projects-grid,
    .news-grid,
    .stats-grid,
    .supporters-grid,
    .application-steps,
    .impact-grid,
    .contact-grid,
    .contact-form-wrapper,
    .news-search-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .project-detail {
        gap: 20px;
    }

    .project-info h2 {
        font-size: 22px;
    }

    .project-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        padding: 16px;
    }

    .nav-menu a.menu-entrepreneurs,
    .nav-menu a.menu-application {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 24px;
    }

    .detail-grid,
    .news-detail-meta {
        grid-template-columns: 1fr;
    }
}
