/* CSS Variables */
:root {
    --primary-blue: #20274F;
    --fourth: #35BDEC;
    --third: #27348B;
    --fifth: #EE7203;
    --second: #009B8F;
    --white: #FFF;
    --back-grey: #EDF0F4;
}

/* Reset ve genel ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tüm elementlerin border-radius'ını kaldır, sadece butonlar hariç */
*:not(button):not(.btn):not([class*="btn-"]):not(.hero-btn):not(.slider-arrow):not(.file-download-btn):not(.destek-back-btn):not(.form-submit-btn):not(.contact-submit-btn):not(.search-modal-close):not(.desktop-menu-close):not(.mobile-menu-close):not(.accordion-icon) {
    border-radius: 0 !important;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    background: #20274F;
    min-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 243px;
    height: 126px;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 214px;
    height: 126px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.search-icon,
.hamburger-menu {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.search-icon:hover,
.hamburger-menu:hover {
    opacity: 0.8;
}

/* Header divider */
.header-divider {
    width: 100%;
    height: 1px;
    flex-shrink: 0;
    opacity: 0.15;
    background: var(--white);
}

/* Slider Content */
.slider-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 243px;
    flex: 1;
    gap: 100px;
}

.slider-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.slider-title {
    color: var(--white);
    font-family: Poppins;
    font-size: 61px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.slider-subtitle {
    color: var(--white);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 30px;
}

.slider-button {
    display: flex;
    width: 122px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: var(--fifth);
    border: none;
    color: var(--white);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-bottom: 50px;
}

.slider-button:hover {
    opacity: 0.9;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 30px;
}

.slide-numbers {
    display: flex;
    gap: 20px;
    align-items: center;
}

.slide-number {
    color: var(--white);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-number.active {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    opacity: 1;
    border: 1px solid var(--white);
    display: flex;
    height: 31px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}

.slider-arrows {
    display: flex;
    gap: 15px;
    align-items: center;
}

.arrow-left,
.arrow-right {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.arrow-left:hover,
.arrow-right:hover {
    opacity: 0.7;
}

.slider-right {
    flex-shrink: 0;
}

.slider-image {
    width: 824px;
    height: 516px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 10px;
}

/* Bottom Boxes */
.bottom-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 243px 50px;
    margin-top: auto;
}

.box {
    display: flex;
    width: 335.502px;
    height: 80px;
    transform: rotate(-0.007deg);
    padding: 20px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.box:hover {
    transform: rotate(-0.007deg) translateY(-5px);
}

.box-1 {
    background: var(--fourth);
}

.box-2 {
    background: var(--third);
}

.box-3 {
    background: var(--fifth);
}

.box-4 {
    background: var(--second);
}

.box-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.box-text {
    color: var(--white);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    text-align: left;
    flex: 1;
}

/* Content Section */
.content-section {
    background: var(--back-grey);
    min-height: 50vh;
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1400px) {

    .header,
    .slider-content,
    .bottom-boxes {
        padding-left: 100px;
        padding-right: 100px;
    }

    .slider-image {
        width: 600px;
        height: 400px;
    }

    .slider-title {
        font-size: 48px;
    }

    .box {
        width: 300px;
        font-size: 18px;
    }
}

@media (max-width: 1200px) {

    .header,
    .slider-content,
    .bottom-boxes {
        padding-left: 50px;
        padding-right: 50px;
    }

    .slider-content {
        gap: 50px;
    }

    .slider-image {
        width: 500px;
        height: 350px;
    }

    .slider-title {
        font-size: 42px;
    }

    .box {
        width: 280px;
    }

    .box-text {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: 700px;
    }

    .header {
        height: 100px;
        margin-bottom: 10px;
    }

    .logo img {
        width: 180px;
        height: 100px;
    }

    .slider-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 30px 50px 20px;
    }

    .slider-image {
        width: 100%;
        max-width: 500px;
        height: 300px;
    }

    .slider-title {
        font-size: 36px;
    }

    .slider-subtitle {
        font-size: 20px;
    }

    .bottom-boxes {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px 50px 30px;
        justify-content: center;
    }

    .box {
        width: 300px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 800px;
    }

    .header {
        padding: 0 20px;
        height: 80px;
        margin-bottom: 8px;
    }

    .logo img {
        width: 150px;
        height: 80px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 16px;
    }

    .search-icon svg,
    .hamburger-menu svg {
        width: 20px;
        height: 20px;
    }

    .slider-content {
        padding: 20px 20px 15px;
        gap: 30px;
    }

    .slider-title {
        font-size: 32px;
    }

    .slider-subtitle {
        font-size: 18px;
    }

    .slider-button {
        width: 100px;
        height: 36px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slider-controls {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .slide-numbers {
        gap: 15px;
    }

    .slide-number.active {
        height: 28px;
        font-size: 20px;
    }

    .slider-image {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }

    .bottom-boxes {
        padding: 15px 20px 25px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .box {
        width: 100%;
        max-width: 350px;
        height: 70px;
        padding: 15px;
        gap: 15px;
    }

    .box-text {
        font-size: 16px;
    }

    .box-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 900px;
    }

    .header {
        padding: 0 15px;
        height: 70px;
    }

    .logo img {
        width: 120px;
        height: 70px;
    }

    .nav-menu .nav-link {
        display: none;
    }

    .nav-menu {
        gap: 10px;
    }

    .slider-content {
        padding: 15px 15px 10px;
        gap: 25px;
    }

    .slider-title {
        font-size: 28px;
    }

    .slider-subtitle {
        font-size: 16px;
    }

    .slider-button {
        width: 90px;
        height: 32px;
        font-size: 13px;
        margin-bottom: 15px;
    }

    .slider-controls {
        gap: 15px;
    }

    .slide-numbers {
        gap: 10px;
    }

    .slide-number {
        font-size: 14px;
    }

    .slide-number.active {
        height: 26px;
        font-size: 18px;
        padding: 8px;
    }

    .arrow-left svg,
    .arrow-right svg {
        width: 10px;
        height: 16px;
    }

    .slider-image {
        width: 100%;
        max-width: 320px;
        height: 200px;
    }

    .bottom-boxes {
        padding: 12px 15px 20px;
        gap: 10px;
    }

    .box {
        width: 100%;
        max-width: 320px;
        height: 65px;
        padding: 12px;
        gap: 12px;
    }

    .box-text {
        font-size: 14px;
        line-height: 1.3;
    }

    .box-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 320px) {
    .hero-section {
        min-height: 950px;
    }

    .slider-title {
        font-size: 24px;
    }

    .slider-subtitle {
        font-size: 14px;
    }

    .box {
        height: 60px;
        padding: 10px;
    }

    .box-text {
        font-size: 13px;
    }
}

/* News Section */
.news-section {
    width: 1434px;
    height: 400px;
    flex-shrink: 0;
    background: var(--white);
    display: flex;
    margin: 50px auto;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* News Image Container */
.news-image-container {
    width: 702px;
    height: 400px;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(180deg, rgba(32, 39, 79, 0.00) 0%, rgba(32, 39, 79, 0.80) 100%),
        linear-gradient(0deg, rgba(19, 19, 19, 0.20) 0%, rgba(19, 19, 19, 0.20) 100%),
        url('path-to-image') lightgray 50% / cover no-repeat;
}

/* News Controls - Bottom Left */
.news-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-slide-numbers {
    display: flex;
    gap: 15px;
    align-items: center;
}

.news-slide-number {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-slide-number.active {
    color: #FFF;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    opacity: 1;
    display: flex;
    height: 31px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #FFF;
    border-radius: 4px;
}

/* News Arrows - Bottom Right */
.news-arrows {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.news-arrow-left,
.news-arrow-right {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.news-arrow-left:hover,
.news-arrow-right:hover {
    opacity: 0.7;
}

/* News Content Container */
.news-content-container2 {
    flex: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* News Header */
.news-header2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.news-all-link {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.news-all-link:hover {
    opacity: 0.7;
}

.news-date {
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
}

/* News Main Content */
.news-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-title {
    color: var(--primary-blue);
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.25px;
    margin-bottom: 15px;
}

.news-description {
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    opacity: 0.4;
    margin-bottom: 30px;
    flex: 1;
}

/* News Button */
.news-read-more-btn {
    display: flex;
    width: 140px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: var(--primary-blue);
    border: none;
    color: var(--white);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
    align-self: flex-start;
}

.news-read-more-btn:hover {
    opacity: 0.9;
}

/* Responsive Design for News Section */
@media (max-width: 1400px) {
    .news-section {
        width: 100%;
        max-width: 1200px;
    }

    .news-image-container {
        width: 50%;
    }

    .news-title {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .news-section {
        flex-direction: column;
        height: auto;
        max-width: 90%;
    }

    .news-image-container {
        width: 100%;
        height: 300px;
    }

    .news-content-container {
        padding: 25px 30px;
    }

    .news-title {
        font-size: 28px;
    }

    .news-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .news-section {
        max-width: 95%;
        margin: 30px auto;
    }

    .news-image-container {
        height: 250px;
    }

    .news-content-container {
        padding: 20px 25px;
    }

    .news-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .news-title {
        font-size: 24px;
    }

    .news-description {
        font-size: 16px;
    }

    .news-controls {
        bottom: 15px;
        left: 15px;
        gap: 15px;
    }

    .news-arrows {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
}

/* Projects and Announcements Section */
.projects-announcements-section {
    display: flex;
    gap: 30px;
    margin: 50px auto;
    max-width: 1434px;
    align-items: flex-start;
}

/* Left Box - Projects */
.projects-box {
    width: 702px;
    height: 390px;
    flex-shrink: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 24px;
}

.projects-image {
    width: 655px;
    height: 218px;
    flex-shrink: 0;
    background: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 20px;
}

.projects-title {
    color: var(--primary-blue);
    text-align: center;
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.25px;
    margin-bottom: 20px;
}

.projects-all-btn {
    display: flex;
    width: 184px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 30px;
    background: var(--primary-blue);
    border: none;
    color: var(--white);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.projects-all-btn:hover {
    opacity: 0.9;
}

/* Right Box - Announcements */
.announcements-box {
    width: 702px;
    height: 390px;
    flex-shrink: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Tab Navigation */
.tab-navigation {
    width: 320px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    margin: 20px auto 0;
    background: var(--back-grey, #EDF0F4);
    border-radius: 8px;
    padding: 5px;
}

.tab-item {
    display: flex;
    width: 150px;
    height: 40px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    opacity: 0.4;
}

.tab-item.active {
    background: var(--white);
    color: #000;
    opacity: 1;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Content Area */
.tab-content-area {
    flex: 1;
    position: relative;
    padding: 20px 30px;
}

.tab-content {
    display: none;
    height: 100%;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Announcement List */
.announcement-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 20px;
    overflow-y: auto;
    max-height: 250px;
}

/* Custom scrollbar */
.announcement-list::-webkit-scrollbar {
    width: 4px;
}

.announcement-list::-webkit-scrollbar-track {
    background: #D9D9D9;
}

.announcement-list::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 2px;
}

.announcement-list::-webkit-scrollbar-thumb:hover {
    background: #1a1f40;
}

.announcement-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.announcement-item:hover .announcement-title,
.announcement-item:hover .date-number,
.announcement-item:hover .date-month {
    opacity: 1;
}

.announcement-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 50px;
}

.date-number {
    color: var(--primary-blue);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.15px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.date-month {
    color: var(--primary-blue);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.15px;
    margin-top: 2px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.announcement-title {
    color: var(--primary-blue);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    flex: 1;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

/* Scroll Bar - Hidden as we use real scrollbar now */
.scroll-bar {
    display: none;
}

/* Bottom section */
.bottom-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.bottom-line {
    width: 118px;
    height: 1px;
    flex-shrink: 0;
    background: #D9D9D9;
}

.all-announcements-btn {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
}

.all-announcements-btn:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .projects-announcements-section {
        max-width: 100%;
        padding: 0 20px;
    }

    .projects-box,
    .announcements-box {
        width: calc(50% - 15px);
    }

    .projects-image {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 1024px) {
    .projects-announcements-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .projects-box,
    .announcements-box {
        width: 100%;
        max-width: 600px;
    }

    .projects-image {
        width: 90%;
        height: 200px;
    }

    .projects-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .projects-announcements-section {
        margin: 30px auto;
        padding: 0 15px;
    }

    .projects-box,
    .announcements-box {
        height: auto;
        min-height: 350px;
        padding: 20px 15px;
    }

    .projects-image {
        height: 180px;
    }

    .projects-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .projects-all-btn {
        width: 160px;
        height: 36px;
        font-size: 14px;
    }

    .tab-navigation {
        width: 280px;
        height: 45px;
    }

    .tab-item {
        width: 130px;
        height: 36px;
        font-size: 18px;
        padding: 8px;
    }

    .tab-content-area {
        padding: 15px 20px;
    }

    .announcement-list {
        gap: 12px;
        padding-right: 15px;
    }

    .announcement-item {
        gap: 15px;
        padding-bottom: 12px;
    }

    .date-number,
    .date-month {
        font-size: 18px;
    }

    .announcement-title {
        font-size: 18px;
    }

    .scroll-bar {
        right: 20px;
        height: 150px;
    }
}

/* Discovery Section */
.discovery-section {
    width: 1920px;
    height: 800px;
    flex-shrink: 0;
    background-image: url('assets/images/back/back2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
    box-sizing: border-box;
    margin: 0 auto;
}

.discovery-title {
    color: var(--back-grey, #EDF0F4);
    text-align: center;
    font-family: Poppins;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 100px;
}

.discovery-title .highlight {
    color: var(--fifth, #EE7203);
}

.discovery-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.discovery-image {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Event Section */
.event-section {
    background: var(--back-grey, #EDF0F4);
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-container {
    width: 100%;
    max-width: 1920px;
    display: flex;
    justify-content: center;
}

.event-box {
    width: 1434px;
    height: 225px;
    flex-shrink: 0;
    background: var(--white, #FFF);
    display: flex;
    position: relative;
}

.event-info {
    width: 458px;
    height: 169px;
    flex-shrink: 0;
    background-image: url('assets/images/back/back2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 30px;
    padding: 20px;
    padding-left: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.event-label {
    color: var(--fifth, #EE7203);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.event-label-white {
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
}

.event-date {
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.25px;
    margin-top: 10px;
}

.event-day {
    color: var(--white, #FFF);
    font-family: Sora;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 5px;
}

.event-title-left {
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 10px;
    opacity: 0.9;
}

.event-content {
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.1px;
    margin-top: 10px;
    opacity: 0.5;
}

.event-right {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Calendar Header Styles */
.calendar-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.month-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-arrow {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-arrow:hover {
    opacity: 1 !important;
}

.month-year-container {
    display: flex;
    gap: 5px;
    align-items: baseline;
}

.month-text {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.00938rem;
}

.year-text {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.00938rem;
}

/* Calendar Legend Styles */
.calendar-legend {
    display: flex;
    width: 11.25rem;
    height: 1.875rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.625rem;
    background: var(--BACK-GREY, #EDF0F4);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-indicator {
    width: 0.9375rem;
    height: 0.9375rem;
    border-radius: 0.3125rem;
}

.today-indicator {
    border: 2px solid var(--Fifth, #EE7203);
}

.event-indicator {
    background: var(--fourth, #35BDEC);
}

.legend-text {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.00625rem;
}

/* Calendar Grid Styles */
.calendar-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 10px;
}

.calendar-day {
    display: flex;
    width: 1.5625rem;
    height: 1.5625rem;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #999;
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.00938rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day.has-event {
    border-radius: 0.3125rem;
    background: var(--fourth, #35BDEC);
    color: var(--White, #FFF);
}

.calendar-day.today-highlight {
    border-radius: 0.3125rem;
    border: 2px solid var(--Fifth, #EE7203);
    color: var(--BLACK, #131313);
}

.calendar-day:hover {
    background: rgba(53, 189, 236, 0.1);
    border-radius: 0.3125rem;
}

/* Selected Date Container Styles */
.selected-date-container {
    width: 50.9375rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 0.625rem;
    background: var(--BACK-GREY, #EDF0F4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    margin-top: 20px;
}

.selected-date-box {
    width: 8.3125rem;
    height: 1.875rem;
    flex-shrink: 0;
    border-radius: 0.625rem;
    background: var(--White, #FFF);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
}

.calendar-icon {
    width: 20px;
    height: 20px;
}

.selected-date-text {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.00625rem;
}

.event-title-text {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.00625rem;
}

/* DOKA Dergi Section */
.doka-magazine-section {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--back-grey);
}

.magazine-container {
    width: 89.625rem;
    height: 25rem;
    flex-shrink: 0;
    background: var(--White, #FFF);
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

/* Left Side Content */
.magazine-content {
    width: 50%;
    padding: 60px 122px 60px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.magazine-header {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.magazine-title-doka {
    color: var(--Alternative, #20274F);
    font-family: Poppins;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.magazine-title-dergi {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.00938rem;
}

.magazine-main-title {
    color: var(--Alternative, #20274F);
    font-family: Poppins;
    font-size: 2.1875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.01563rem;
    margin: 0;
}

.magazine-description {
    color: #000;
    font-family: Poppins;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.00938rem;
    height: 5.625rem;
    margin: 0;
    opacity: 0.4;
}

.magazine-btn {
    display: flex;
    width: 7.5rem;
    height: 2.5rem;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    border-radius: 1.875rem;
    background: var(--Alternative, #20274F);
    color: white;
    border: none;
    font-family: Poppins;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.magazine-btn:hover {
    background: #1a1f3d;
}

.magazine-all-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.magazine-line {
    width: 6.375rem;
    height: 0.0625rem;
    flex-shrink: 0;
    background: var(--BLACK, #131313);
}

.magazine-all-text {
    color: #000;
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.00938rem;
    cursor: pointer;
}

/* Right Side Image */
.magazine-image {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(50% + 150px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.magazine-image img {
    width: 19.74181rem;
    height: 27.8515rem;
    transform: rotate(-7.037deg);
    flex-shrink: 0;
    object-fit: contain;
}

/* Logos Section */
.logos-section {
    padding: 50px 0;
    background: var(--back-grey);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-box {
    width: 13.375rem;
    height: 7.5rem;
    flex-shrink: 0;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo-box img {
    width: 11.5rem;
    height: 3.6875rem;
    flex-shrink: 0;
    aspect-ratio: 184/59;
    object-fit: contain;
}

/* Footer */
.footer {
    background: var(--Alternative, #20274F);

    height: 37.5rem;
    flex-shrink: 0;
    padding: 60px 0 0 0;
    margin: 0 auto;
    position: relative;
}

.footer-container {
    max-width: 89.625rem;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: calc(100% - 80px);
    gap: 60px;
}

/* Footer Left Section */
.footer-left {
    flex: 1;
    max-width: 350px;
    margin-right: 60px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-address {
    margin-bottom: 25px;
}

.footer-address p {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.00938rem;
    margin: 0 0 8px 0;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact p {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.00938rem;
    margin: 0 0 8px 0;
}

.footer-phone {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.00938rem;
    margin-top: 15px !important;
}

.footer-form {
    margin-top: 30px;
}

.form-title {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.00938rem;
    margin: 0 0 10px 0;
}

.form-text {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
    opacity: 0.8;
}

/* Footer Middle Section */
.footer-middle {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
}

.footer-column {
    min-width: 150px;
}

.footer-column h5 {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 20px 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer Copyright Wrapper */
.footer-copyright-wrapper {
    max-width: 89.625rem;
    margin: 30px auto 20px auto;
    padding: 0 20px;
    text-align: right;
}

.footer-copyright-wrapper p {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin: 0;
    opacity: 0.7;
    white-space: nowrap;
}

/* Footer Bottom */
.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.footer-bottom img {
    width: 100%;
    height: auto;
    max-width: 1422px;
}

/* ============================================
   NEWS DETAIL PAGE STYLES
   ============================================ */

/* News Header Section */
.news-header-section {
    width: 100%;
    max-width: 1920px;
    height: 140px;
    flex-shrink: 0;
    background-image: url('assets/images/haberback.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.news-header-container {
    width: 100%;
    max-width: 1434px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.news-header-title {
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 49px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.news-header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.breadcrumb {
    color: var(--white, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--fifth, #EE7203);
    transform: translateY(-2px);
}

/* News Content Section */
.news-content-section {
    width: 100%;
    max-width: 1920px;
    background: var(--back-grey, #EDF0F4);
    padding: 60px 0;
    margin: 0 auto;
}

.news-content-container {
    max-width: 1434px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 0 40px;
    align-items: flex-start;
}

/* Recent News Sidebar */
.recent-news-sidebar {
    width: 336px;
    min-width: 336px;
    background: #FFF;
    padding: 30px 20px;
    flex-shrink: 0;
}

.recent-news-title {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 25px;
}

.recent-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-news-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-news-item:hover {
    background: var(--fifth, #EE7203);
}

.recent-news-item:hover .recent-news-text {
    color: var(--white, #FFF);
}

.recent-news-image {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    overflow: hidden;
}

.recent-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-news-text {
    color: #999;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    transition: color 0.3s ease;
}

/* Main Article */
.news-article {
    flex: 1;
}

.news-date-badge {
    display: inline-flex;
    width: 110px;
    height: 30px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--fifth, #EE7203);
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.1px;
    margin-bottom: 20px;
}

.news-article-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.news-article-header-left {
    flex: 1;
}

.news-article-title {
    width: 100%;
    max-width: 458px;
    color: #000;
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.25px;
    margin-bottom: 0;
}

.news-article-image {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-article-text {
    color: #999;
    text-align: justify;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    margin-bottom: 40px;
}

/* Photo Gallery */
.news-gallery {
    width: 1434px;
    height: 340px;
    flex-shrink: 0;
    background: #FFF;
    padding: 30px;
    display: flex;
    gap: 20px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.gallery-item {
    width: 214px;
    height: 214px;
    flex-shrink: 0;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet and Mobile Breakpoints */
@media screen and (max-width: 1200px) {

    /* Hero Section */
    .hero-section {
        padding: 20px;
    }

    .header {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    .slider-content {
        flex-direction: column;
        gap: 30px;
    }

    .slider-left,
    .slider-right {
        width: 100%;
        text-align: center;
    }

    .bottom-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
}

/* ============================================
   VIZYON & MISYON PAGE STYLES
   ============================================ */

/* Vizyon Header Section */
.vizyon-header-section {
    width: 100%;
    background: var(--back-grey, #EDF0F4);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 243px;
}

.vizyon-header-img {
    width: 100%;
    max-width: 1434px;
    height: auto;
    display: block;
}

/* Vizyon Content Section */
.vizyon-content-section {
    width: 100%;
    background: var(--back-grey, #EDF0F4);
    padding: 50px 243px;
}

.vizyon-container {
    max-width: 1434px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Vizyon Row */
.vizyon-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
}

/* Images */
.vizyon-image-left,
.vizyon-image-right {
    width: 702px;
    height: 438px;
    flex-shrink: 0;
    overflow: hidden;
}

.vizyon-image-left img,
.vizyon-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text Content */
.vizyon-text-right,
.vizyon-text-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vizyon-title {
    color: #000;
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.25px;
    margin: 0;
}

.vizyon-description {
    width: 702px;
    color: #999;
    text-align: justify;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    margin: 0;
}

/* Responsive Design for Vizyon Page */
@media screen and (max-width: 1400px) {
    .vizyon-header-section {
        padding: 0 100px;
    }

    .vizyon-content-section {
        padding: 50px 100px;
    }

    .vizyon-image-left,
    .vizyon-image-right {
        width: 500px;
        height: 350px;
    }

    .vizyon-description {
        width: 100%;
        max-width: 500px;
    }
}

@media screen and (max-width: 1200px) {
    .vizyon-header-section {
        padding: 0 50px;
    }

    .vizyon-content-section {
        padding: 50px 50px;
    }
}

@media screen and (max-width: 1024px) {
    .vizyon-header-section {
        padding: 0 50px;
    }

    .vizyon-content-section {
        padding: 30px 50px;
    }

    .vizyon-row {
        flex-direction: column !important;
    }

    .vizyon-image-left,
    .vizyon-image-right {
        width: 100%;
        max-width: 600px;
        height: 350px;
    }

    .vizyon-text-right,
    .vizyon-text-left {
        width: 100%;
        padding: 30px;
    }

    .vizyon-description {
        width: 100%;
        max-width: 100%;
    }

    .vizyon-title {
        font-size: 30px;
    }

    .vizyon-description {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .vizyon-header-section {
        padding: 0 20px;
    }

    .vizyon-content-section {
        padding: 30px 20px;
    }

    .vizyon-container {
        gap: 15px;
    }

    .vizyon-text-right,
    .vizyon-text-left {
        padding: 20px;
    }

    .vizyon-image-left,
    .vizyon-image-right {
        height: 250px;
    }

    .vizyon-title {
        font-size: 26px;
    }

    .vizyon-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .vizyon-header-section {
        padding: 0 15px;
    }

    .vizyon-content-section {
        padding: 20px 15px;
    }

    .vizyon-container {
        gap: 12px;
    }

    .vizyon-text-right,
    .vizyon-text-left {
        padding: 15px;
    }

    .vizyon-image-left,
    .vizyon-image-right {
        height: 200px;
    }

    .vizyon-title {
        font-size: 22px;
    }

    .vizyon-description {
        font-size: 14px;
    }
}

/* ============================================
   KURUMSAL PAGE STYLES
   ============================================ */

/* Kurumsal Content Section */
.kurumsal-content-section {
    width: 100%;
    background: var(--back-grey, #EDF0F4);
    padding: 50px 243px;
}

.kurumsal-container {
    max-width: 1434px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Kurumsal Row */
.kurumsal-row {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

/* Kurumsal Box */
.kurumsal-box {
    width: 336px;
    height: 336px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

.kurumsal-box:hover {
    transform: translateY(-5px);
}

/* Kurumsal Box Content (White Panel) */
.kurumsal-box-content {
    width: 306px;
    height: 109px;
    flex-shrink: 0;
    opacity: 0.9;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
}

/* Kurumsal Box Title */
.kurumsal-box-title {
    color: var(--BLACK, #131313);
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

/* Kurumsal Box Button */
.kurumsal-box-btn {
    display: flex;
    width: 122px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 2px solid var(--Alternative, #20274F);
    background: transparent;
    color: var(--Alternative, #20274F);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kurumsal-box-btn:hover {
    background: var(--Alternative, #20274F);
    color: #FFF;
}

/* Responsive Design for Kurumsal Page */
@media screen and (max-width: 1400px) {
    .kurumsal-content-section {
        padding: 50px 100px;
    }

    .kurumsal-box {
        width: 300px;
        height: 300px;
    }

    .kurumsal-box-content {
        width: 270px;
        height: 100px;
    }

    .kurumsal-box-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 1200px) {
    .kurumsal-content-section {
        padding: 50px 50px;
    }

    .kurumsal-box {
        width: 280px;
        height: 280px;
    }

    .kurumsal-box-content {
        width: 250px;
    }

    .kurumsal-box-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .kurumsal-content-section {
        padding: 30px 50px;
    }

    .kurumsal-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .kurumsal-box {
        width: 300px;
        height: 300px;
    }

    .kurumsal-box-content {
        width: 270px;
    }
}

@media screen and (max-width: 768px) {
    .kurumsal-content-section {
        padding: 30px 20px;
    }

    .kurumsal-row {
        gap: 15px;
    }

    .kurumsal-box {
        width: 100%;
        max-width: 350px;
        height: 300px;
    }

    .kurumsal-box-content {
        width: calc(100% - 30px);
        max-width: 320px;
    }

    .kurumsal-box-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 480px) {
    .kurumsal-content-section {
        padding: 20px 15px;
    }

    .kurumsal-container {
        gap: 20px;
    }

    .kurumsal-row {
        gap: 12px;
    }

    .kurumsal-box {
        max-width: 100%;
        height: 280px;
    }

    .kurumsal-box-content {
        height: 100px;
        gap: 10px;
    }

    .kurumsal-box-title {
        font-size: 20px;
    }

    .kurumsal-box-btn {
        width: 110px;
        height: 36px;
        font-size: 14px;
    }
}

/* ============================================
   KURUMSAL DETAY PAGE STYLES
   ============================================ */

/* Kurumsal Detay Content Section */
.kurumsal-detay-content-section {
    width: 100%;
    background: var(--back-grey, #EDF0F4);
    padding: 50px 243px;
}

.kurumsal-detay-container {
    max-width: 1434px;
    margin: 0 auto;
}

.kurumsal-detay-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kurumsal-detay-paragraph {
    color: #999;
    text-align: justify;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    margin: 0;
}

.kurumsal-detay-closing {
    margin-top: 10px;
    font-weight: 600;
}

/* Responsive Design for Kurumsal Detay Page */
@media screen and (max-width: 1400px) {
    .kurumsal-detay-content-section {
        padding: 50px 100px;
    }

    .kurumsal-detay-paragraph {
        font-size: 19px;
    }
}

@media screen and (max-width: 1200px) {
    .kurumsal-detay-content-section {
        padding: 50px 50px;
    }

    .kurumsal-detay-paragraph {
        font-size: 18px;
    }
}

@media screen and (max-width: 1024px) {
    .kurumsal-detay-content-section {
        padding: 30px 50px;
    }

    .kurumsal-detay-text {
        gap: 15px;
    }

    .kurumsal-detay-paragraph {
        font-size: 17px;
    }
}

@media screen and (max-width: 768px) {
    .kurumsal-detay-content-section {
        padding: 30px 20px;
    }

    .kurumsal-detay-text {
        gap: 12px;
    }

    .kurumsal-detay-paragraph {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .kurumsal-detay-content-section {
        padding: 20px 15px;
    }

    .kurumsal-detay-text {
        gap: 10px;
    }

    .kurumsal-detay-paragraph {
        font-size: 14px;
    }
}

/* ============================================
   ORGANIZASYON YAPISI PAGE STYLES
   ============================================ */

/* Organizasyon Content Section */
.organizasyon-content-section {
    width: 100%;
    background: var(--back-grey, #EDF0F4);
    padding: 50px 243px;
}

.organizasyon-container {
    max-width: 1434px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Sol Sidebar - Tab Menü */
.organizasyon-sidebar {
    width: 336px;
    min-width: 336px;
    flex-shrink: 0;
    background: #FFF;
    padding: 20px;
}

.organizasyon-sidebar-title {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 20px 0;
}

.organizasyon-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.org-tab-item {
    width: 100%;
    max-width: 306px;
    height: 36px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.org-tab-item:hover {
    background: rgba(238, 114, 3, 0.1);
}

.org-tab-item.active {
    background: var(--Fifth, #EE7203);
    color: #FFF;
}

/* Sağ İçerik Alanı */
.organizasyon-content {
    flex: 1;
    min-height: 400px;
}

.org-tab-content {
    display: none;
}

.org-tab-content.active {
    display: block;
}

/* Tab 1: Organizasyon Şeması */
.org-content-title {
    color: #000;
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.25px;
    margin: 0 0 30px 0;
}

.org-content-image {
    width: 100%;
    margin-bottom: 30px;
}

.org-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.org-content-text {
    color: #999;
    text-align: justify;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    margin: 0;
}

/* Tab 2: Kişi Kartları */
.org-person-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.org-person-card {
    width: 336px;
    height: 300px;
    flex-shrink: 0;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.org-person-card:hover {
    background: var(--Alternative, #20274F);
}

.org-person-card:hover .org-person-name,
.org-person-card:hover .org-person-title {
    color: #FFF;
}

.org-person-card:hover .org-person-divider {
    background: #FFF;
}

.org-person-photo {
    width: 98px;
    height: 98px;
    border-radius: 60px;
    overflow: hidden;
    margin-bottom: 20px;
}

.org-person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-person-divider {
    width: 50px;
    height: 2px;
    background: var(--Fifth, #EE7203);
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.org-person-name {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.15px;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.org-person-title {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.1px;
    margin: 0;
    transition: color 0.3s ease;
}

.org-person-subtitle {
    color: var(--Primary, #CF0A0A);
    text-align: center;
    font-family: Poppins;
    font-size: 13px;
    font-weight: 600;
    line-height: 120%;
    margin: 8px 0 0 0;
    transition: color 0.3s ease;
}

.org-person-card:hover .org-person-subtitle {
    color: #FFB800;
}

/* Genel Sekreter Detail Styles */
.org-person-detail {
    background: #FFF;
    padding: 40px;
    margin-bottom: 30px;
}

.org-person-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #E5E5E5;
}

.org-person-photo-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.org-person-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-person-info {
    flex: 1;
}

.org-person-name-large {
    color: var(--Alternative, #20274F);
    font-family: Poppins;
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 10px 0;
}

.org-person-title-large {
    color: var(--Primary, #CF0A0A);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
}

.org-person-bio {
    color: #333;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
}

.org-person-bio p {
    margin: 0;
}

/* Responsive Design for Organizasyon Page */
@media screen and (max-width: 1400px) {
    .organizasyon-content-section {
        padding: 50px 100px;
    }

    .org-person-grid {
        gap: 20px;
    }

    .org-person-card {
        width: 300px;
        height: 280px;
    }
}

@media screen and (max-width: 1200px) {
    .organizasyon-content-section {
        padding: 50px 50px;
    }

    .org-person-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .org-person-card {
        width: 100%;
        max-width: 336px;
    }
}

@media screen and (max-width: 1024px) {
    .organizasyon-content-section {
        padding: 30px 50px;
    }

    .organizasyon-container {
        flex-direction: column;
    }

    .organizasyon-sidebar {
        width: 100%;
        height: auto;
    }

    .organizasyon-tabs {
        flex-direction: column;
    }

    .org-tab-item {
        width: 100%;
        max-width: 100%;
    }

    .org-person-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

@media screen and (max-width: 768px) {
    .organizasyon-content-section {
        padding: 30px 20px;
    }

    .organizasyon-sidebar {
        padding: 15px;
    }

    .organizasyon-sidebar-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .org-tab-item {
        font-size: 14px;
        height: 32px;
    }

    .org-content-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .org-content-text {
        font-size: 18px;
    }

    .org-person-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .org-person-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .org-person-detail {
        padding: 25px 20px;
    }

    .org-person-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .org-person-name-large {
        font-size: 24px;
    }

    .org-person-title-large {
        font-size: 16px;
    }

    .org-person-bio {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .organizasyon-content-section {
        padding: 20px 15px;
    }

    .organizasyon-tabs {
        flex-direction: column;
    }

    .org-tab-item {
        width: 100%;
        max-width: 100%;
    }

    .org-content-title {
        font-size: 24px;
    }

    .org-content-text {
        font-size: 16px;
    }

    .org-person-card {
        height: 280px;
        padding: 20px 15px;
    }

    .org-person-photo {
        width: 80px;
        height: 80px;
    }

    .org-person-name {
        font-size: 18px;
    }

    .org-person-title {
        font-size: 13px;
    }

    .org-person-detail {
        padding: 20px 15px;
    }

    .org-person-photo-large {
        width: 120px;
        height: 120px;
    }

    .org-person-name-large {
        font-size: 22px;
    }

    .org-person-title-large {
        font-size: 15px;
    }

    .org-person-bio {
        font-size: 14px;
    }
}

/* ============================================
   ŞEHİR DETAY PAGE STYLES
   ============================================ */

/* City Content Section */
.city-content-section {
    width: 100%;
    background: var(--back-grey, #EDF0F4);
    padding: 50px 243px;
}

.city-container {
    max-width: 1434px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* City Tabs Wrapper */
.city-tabs-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* City Tabs */
.city-tabs {
    width: 900px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #FFF;
    padding: 0 20px;
}

.city-tab {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    text-decoration: none;
    padding: 6px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    width: 117px;
    height: 50px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.city-tab:hover {
    opacity: 0.7;
}

.city-tab.active {
    background: var(--Fifth, #EE7203);
    color: #FFF;
    border-radius: 4px;
}

/* City Hero Section */
.city-hero {
    width: 1434px;
    height: 350px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.city-hero-title {
    color: #FFF;
    font-family: Poppins;
    font-size: 98px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin: 0;
}

/* City Statistics Table */
.city-stats-table {
    width: 1434px;
    flex-shrink: 0;
    border: 1px solid #FFF;
    background: var(--White, #FFF);
    display: flex;
    flex-direction: column;
}

.city-stats-row {
    width: 100%;
    height: 90px;
    flex-shrink: 0;
    background: #FFF;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 30px;
}

.city-stats-row-alt {
    background: #F4F4F4;
}

.city-stats-label {
    width: 278px;
    flex-shrink: 0;
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.15px;
}

.city-stats-value {
    width: 749px;
    flex-shrink: 0;
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
}

/* Responsive Design for City Detail Page */
@media screen and (max-width: 1400px) {
    .city-content-section {
        padding: 50px 100px;
    }

    .city-hero,
    .city-stats-table {
        width: 100%;
        max-width: 1200px;
    }

    .city-hero-title {
        font-size: 80px;
    }

    .city-stats-label {
        width: 250px;
    }

    .city-stats-value {
        width: auto;
        flex: 1;
    }
}

@media screen and (max-width: 1200px) {
    .city-content-section {
        padding: 50px 50px;
    }

    .city-tabs {
        width: 100%;
        max-width: 600px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .city-tab {
        font-size: 18px;
    }

    .city-tab.active {
        width: 100px;
        height: 45px;
    }

    .city-hero {
        height: 300px;
    }

    .city-hero-title {
        font-size: 70px;
    }

    .city-stats-row {
        height: 80px;
        padding: 0 20px;
        gap: 20px;
    }

    .city-stats-label {
        width: 200px;
        font-size: 18px;
    }

    .city-stats-value {
        font-size: 18px;
    }
}

@media screen and (max-width: 1024px) {
    .city-content-section {
        padding: 30px 50px;
    }

    .city-hero {
        height: 250px;
    }

    .city-hero-title {
        font-size: 60px;
    }

    .city-stats-row {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 10px;
        align-items: flex-start;
    }

    .city-stats-label,
    .city-stats-value {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .city-content-section {
        padding: 30px 20px;
    }

    .city-tabs-wrapper {
        width: 100% !important;
        padding: 20px 15px !important;
    }

    .city-tabs {
        width: 100% !important;
        flex-direction: column !important;
        gap: 10px !important;
        height: auto !important;
        padding: 0 !important;
    }

    .city-tab {
        width: 100% !important;
        font-size: 16px;
        padding: 12px 20px !important;
        text-align: left !important;
    }

    .city-tab.active {
        width: 100% !important;
        height: auto !important;
    }

    .city-hero {
        height: 200px;
    }

    .city-hero-title {
        font-size: 48px;
    }

    .city-stats-row {
        padding: 15px;
    }

    .city-stats-label {
        font-size: 16px;
    }

    .city-stats-value {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .city-content-section {
        padding: 20px 15px;
    }

    .city-tabs-wrapper {
        width: 100% !important;
        padding: 15px 10px !important;
    }

    .city-tabs {
        width: 100% !important;
        flex-direction: column !important;
        gap: 8px !important;
        height: auto !important;
        padding: 0 !important;
    }

    .city-tab {
        width: 100% !important;
        font-size: 14px;
        padding: 10px 15px !important;
        text-align: left !important;
    }

    .city-tab.active {
        width: 100% !important;
        height: auto !important;
    }

    .city-hero {
        height: 180px;
    }

    .city-hero-title {
        font-size: 36px;
    }

    .city-stats-row {
        padding: 12px;
    }

    .city-stats-label {
        font-size: 14px;
    }

    .city-stats-value {
        font-size: 14px;
    }
}

/* ============================================
   BÖLGEMIZ PAGE STYLES
   ============================================ */

/* Bölgemiz Content Section */
.bolgemiz-content-section {
    width: 100%;
    background: var(--back-grey, #EDF0F4);
    padding: 50px 243px;
}

.bolgemiz-container {
    max-width: 1434px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Başlık ve Açıklama */
.bolgemiz-main-title {
    color: #000;
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.25px;
    margin: 0 0 20px 0;
}

.bolgemiz-description {
    color: #999;
    text-align: justify;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    margin: 0 0 30px 0;
}

/* Accordion Container */
.bolgemiz-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

/* Accordion Item */
.accordion-item {
    width: 1434px;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Accordion Header (Tab) */
.accordion-header {
    width: 100%;
    height: 60px;
    flex-shrink: 0;
    background: #FFF;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    background: var(--fifth, #EE7203);
}

/* Icon */
.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 40px;
    flex-shrink: 0;
}

.accordion-icon svg {
    width: 46px;
    height: 40px;
}

/* Açık olmayan tablarda icon rengini değiştir */
.accordion-item:not(.active) .accordion-icon svg path {
    fill: #000;
}

/* Title */
.accordion-title {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    flex: 1;
}

.accordion-item.active .accordion-title {
    color: var(--white, #FFF);
}

/* Accordion Content */
.accordion-content {
    display: none;
    background: #FFF;
    padding: 0;
}

.accordion-item.active .accordion-content {
    display: block;
    padding: 30px;
}

/* Accordion Text */
.accordion-text {
    color: #999;
    text-align: justify;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    margin: 0;
}

/* Map Section (Beyaz Kutu) */
.bolgemiz-map-section {
    width: 1434px;
    height: 720px;
    flex-shrink: 0;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px;
}

.bolgemiz-map-title {
    color: #000;
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.25px;
    margin: 0 0 40px 0;
    text-align: center;
}

.bolgemiz-map-image {
    width: 1190px;
    height: 560px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bolgemiz-map-image img,
.bolgemiz-map-image iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
}

/* Responsive Design for Bölgemiz Page */
@media screen and (max-width: 1400px) {
    .bolgemiz-content-section {
        padding: 50px 100px;
    }

    .accordion-item,
    .bolgemiz-map-section {
        width: 100%;
        max-width: 1200px;
    }

    .bolgemiz-map-image {
        width: 100%;
        max-width: 1000px;
        height: auto;
    }
}

@media screen and (max-width: 1200px) {
    .bolgemiz-content-section {
        padding: 50px 50px;
    }

    .bolgemiz-main-title {
        font-size: 30px;
    }

    .bolgemiz-description,
    .accordion-text {
        font-size: 18px;
    }

    .accordion-title {
        font-size: 22px;
    }

    .bolgemiz-map-section {
        height: auto;
        min-height: 600px;
    }

    .bolgemiz-map-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .bolgemiz-content-section {
        padding: 30px 50px;
    }

    .accordion-header {
        height: 50px;
        padding: 0 20px;
    }

    .accordion-icon svg {
        width: 36px;
        height: 30px;
    }

    .accordion-title {
        font-size: 20px;
    }

    .accordion-item.active .accordion-content {
        padding: 20px;
    }

    .bolgemiz-map-section {
        padding: 30px 20px;
        min-height: 500px;
    }

    .bolgemiz-map-image {
        height: auto;
        max-height: 450px;
    }
}

@media screen and (max-width: 768px) {
    .bolgemiz-content-section {
        padding: 30px 20px;
    }

    .bolgemiz-main-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .bolgemiz-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .accordion-header {
        height: 45px;
        padding: 0 15px;
        gap: 15px;
    }

    .accordion-icon {
        width: 36px;
        height: 30px;
    }

    .accordion-icon svg {
        width: 30px;
        height: 25px;
    }

    .accordion-title {
        font-size: 18px;
    }

    .accordion-item.active .accordion-content {
        padding: 15px;
        max-height: none;
        overflow: visible;
    }

    .accordion-text {
        font-size: 16px;
    }

    .bolgemiz-map-section {
        padding: 20px 15px;
        min-height: 400px;
    }

    .bolgemiz-map-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .bolgemiz-map-image {
        max-height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .bolgemiz-content-section {
        padding: 20px 15px;
    }

    .bolgemiz-container {
        gap: 20px;
    }

    .bolgemiz-main-title {
        font-size: 22px;
    }

    .bolgemiz-description {
        font-size: 14px;
    }

    .accordion-accordion {
        gap: 15px;
    }

    .accordion-header {
        height: 40px;
        padding: 0 12px;
        gap: 10px;
    }

    .accordion-icon {
        width: 30px;
        height: 25px;
    }

    .accordion-icon svg {
        width: 26px;
        height: 22px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .accordion-item.active .accordion-content {
        padding: 12px;
        max-height: none;
        overflow: visible;
    }

    .accordion-text {
        font-size: 14px;
    }

    .bolgemiz-map-section {
        padding: 15px 10px;
        min-height: 350px;
    }

    .bolgemiz-map-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .bolgemiz-map-image {
        max-height: 300px;
    }
}

/* ============================================
   ŞEHİR DETAY PAGE STYLES
   ============================================ */

/* City Content Section */
.city-content-section {
    width: 100%;
    background: var(--back-grey, #EDF0F4);
    padding: 50px 243px;
}

.city-container {
    max-width: 1434px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* City Tabs Wrapper */
.city-tabs-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* City Tabs */
.city-tabs {
    width: 900px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #FFF;
    padding: 0 20px;
}

.city-tab {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    text-decoration: none;
    padding: 6px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    width: 117px;
    height: 50px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.city-tab:hover {
    opacity: 0.7;
}

.city-tab.active {
    background: var(--Fifth, #EE7203);
    color: #FFF;
    border-radius: 4px;
}

/* City Hero Section */
.city-hero {
    width: 1434px;
    height: 350px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.city-hero-title {
    color: #FFF;
    font-family: Poppins;
    font-size: 98px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin: 0;
}

/* City Statistics Table */
.city-stats-table {
    width: 1434px;
    flex-shrink: 0;
    border: 1px solid #FFF;
    background: var(--White, #FFF);
    display: flex;
    flex-direction: column;
}

.city-stats-row {
    width: 100%;
    height: 90px;
    flex-shrink: 0;
    background: #FFF;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 30px;
}

.city-stats-row-alt {
    background: #F4F4F4;
}

.city-stats-label {
    width: 278px;
    flex-shrink: 0;
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.15px;
}

.city-stats-value {
    width: 749px;
    flex-shrink: 0;
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
}

/* Responsive Design for City Detail Page */
@media screen and (max-width: 1400px) {
    .city-content-section {
        padding: 50px 100px;
    }

    .city-hero,
    .city-stats-table {
        width: 100%;
        max-width: 1200px;
    }

    .city-hero-title {
        font-size: 80px;
    }

    .city-stats-label {
        width: 250px;
    }

    .city-stats-value {
        width: auto;
        flex: 1;
    }
}

@media screen and (max-width: 1200px) {
    .city-content-section {
        padding: 50px 50px;
    }

    .city-tabs {
        width: 100%;
        max-width: 600px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .city-tab {
        font-size: 18px;
    }

    .city-tab.active {
        width: 100px;
        height: 45px;
    }

    .city-hero {
        height: 300px;
    }

    .city-hero-title {
        font-size: 70px;
    }

    .city-stats-row {
        height: 80px;
        padding: 0 20px;
        gap: 20px;
    }

    .city-stats-label {
        width: 200px;
        font-size: 18px;
    }

    .city-stats-value {
        font-size: 18px;
    }
}

@media screen and (max-width: 1024px) {
    .city-content-section {
        padding: 30px 50px;
    }

    .city-hero {
        height: 250px;
    }

    .city-hero-title {
        font-size: 60px;
    }

    .city-stats-row {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 10px;
        align-items: flex-start;
    }

    .city-stats-label,
    .city-stats-value {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .city-content-section {
        padding: 30px 20px;
    }

    .city-tabs-wrapper {
        width: 100% !important;
        padding: 20px 15px !important;
    }

    .city-tabs {
        width: 100% !important;
        flex-direction: column !important;
        gap: 10px !important;
        height: auto !important;
        padding: 0 !important;
    }

    .city-tab {
        width: 100% !important;
        font-size: 16px;
        padding: 12px 20px !important;
        text-align: left !important;
    }

    .city-tab.active {
        width: 100% !important;
        height: auto !important;
    }

    .city-hero {
        height: 200px;
    }

    .city-hero-title {
        font-size: 48px;
    }

    .city-stats-row {
        padding: 15px;
    }

    .city-stats-label {
        font-size: 16px;
    }

    .city-stats-value {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .city-content-section {
        padding: 20px 15px;
    }

    .city-tabs-wrapper {
        width: 100% !important;
        padding: 15px 10px !important;
    }

    .city-tabs {
        width: 100% !important;
        flex-direction: column !important;
        gap: 8px !important;
        height: auto !important;
        padding: 0 !important;
    }

    .city-tab {
        width: 100% !important;
        font-size: 14px;
        padding: 10px 15px !important;
        text-align: left !important;
    }

    .city-tab.active {
        width: 100% !important;
        height: auto !important;
    }

    .city-hero {
        height: 180px;
    }

    .city-hero-title {
        font-size: 36px;
    }

    .city-stats-row {
        padding: 12px;
    }

    .city-stats-label {
        font-size: 14px;
    }

    .city-stats-value {
        font-size: 14px;
    }
}

/* City Accordion Section */
.city-accordion {
    width: 100%;
    max-width: 1434px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

/* City Video Section */
.city-video-section {
    width: 1434px;
    height: 720px;
    flex-shrink: 0;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px;
    margin-bottom: 30px;
}

.city-video-title {
    color: #000;
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.25px;
    margin: 0 0 40px 0;
    text-align: center;
}

.city-video-container {
    width: 1190px;
    height: 560px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.city-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* City Gallery */
.city-gallery {
    width: 1434px;
    height: 340px;
    flex-shrink: 0;
    background: #FFF;
    padding: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.city-gallery .gallery-item {
    width: 214px;
    height: 214px;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.city-gallery .gallery-item:hover {
    transform: scale(1.05);
}

.city-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Responsive Design for City Video and Gallery */
@media screen and (max-width: 1400px) {

    .city-video-section,
    .city-gallery {
        width: 100%;
        max-width: 1200px;
    }

    .city-video-container {
        width: 100%;
        max-width: 1000px;
        height: auto;
        aspect-ratio: 16/9;
    }
}

@media screen and (max-width: 1200px) {
    .city-video-section {
        height: auto;
        min-height: 600px;
        padding: 30px 20px;
    }

    .city-video-title {
        font-size: 30px;
    }

    .city-gallery {
        height: auto;
        flex-wrap: wrap;
        padding: 20px;
    }

    .city-gallery .gallery-item {
        width: 180px;
        height: 180px;
    }
}

@media screen and (max-width: 1024px) {
    .city-video-section {
        padding: 30px 20px;
        min-height: 500px;
    }

    .city-video-container {
        height: auto;
        max-height: 450px;
    }

    .city-gallery .gallery-item {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 768px) {
    .city-video-section {
        padding: 20px 15px;
        min-height: 400px;
    }

    .city-video-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .city-video-container {
        max-height: 350px;
    }

    .city-gallery {
        padding: 15px;
        gap: 15px;
    }

    .city-gallery .gallery-item {
        width: 120px;
        height: 120px;
    }
}

@media screen and (max-width: 480px) {
    .city-video-section {
        padding: 15px 10px;
        min-height: 350px;
    }

    .city-video-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .city-video-container {
        max-height: 300px;
    }

    .city-gallery {
        padding: 10px;
        gap: 10px;
    }

    .city-gallery .gallery-item {
        width: 100px;
        height: 100px;
    }
}

/* City Lightbox */
.city-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.city-lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0.8)
    }

    to {
        transform: scale(1)
    }
}

.city-lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.city-lightbox-close:hover {
    color: #ccc;
}

.city-lightbox-prev,
.city-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    transition: background-color 0.3s;
}

.city-lightbox-prev:hover,
.city-lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.city-lightbox-prev {
    left: 20px;
}

.city-lightbox-next {
    right: 20px;
}

/* Mobil için lightbox */
@media (max-width: 768px) {

    .city-lightbox-prev,
    .city-lightbox-next {
        font-size: 30px;
        padding: 15px;
    }

    .city-lightbox-close {
        font-size: 40px;
        right: 20px;
    }
}

/* ============================================
   HABERLER LIST PAGE STYLES
   ============================================ */

/* News List Section */
.news-list-section {
    width: 100%;
    background: var(--back-grey, #EDF0F4);
    padding: 50px 243px;
}

.news-list-container {
    max-width: 1434px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* News Item Card */
.news-item-card {
    width: 702px;
    height: 360px;
    flex-shrink: 0;
    background: var(--White, #FFF);
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* News Item Image */
.news-item-image {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    position: relative;
    margin: 30px;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* News Item Date Badge */
.news-item-date-badge {
    display: flex;
    width: 151px;
    height: 40px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.news-item-date-text {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
}

/* News Item Content */
.news-item-content {
    flex: 1;
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item-title {
    color: #000;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.news-item-description {
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    opacity: 0.4;
    margin: 0;
    flex: 1;
}

.news-item-btn {
    display: flex;
    width: 140px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: var(--Alternative, #20274F);
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.news-item-btn:hover {
    background: #151a35;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn,
.pagination-number {
    padding: 10px 20px;
    background: #FFF;
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-number:hover {
    background: var(--Alternative, #20274F);
    color: #FFF;
}

.pagination-number.active {
    background: var(--Fifth, #EE7203);
    color: #FFF;
}

.pagination-dots {
    padding: 10px 5px;
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
}

/* ============================================
   ANNOUNCEMENTS PAGE STYLES
   ============================================ */

/* Announcements Header Section */
.announcements-header-section {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 150px;
    margin-bottom: 60px;
}

.announcements-header-container {
    width: 100%;
    max-width: 1434px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcements-header-title {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.announcements-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

/* Announcements Content Section */
.announcements-content-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 150px 80px;
    background: var(--back-grey);
}

.announcements-main-container {
    width: 100%;
    max-width: 1434px;
    display: flex;
    gap: 30px;
}

/* Left Sidebar - Tabs */
.announcements-sidebar {
    width: 336px;
    min-height: 200px;
    height: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: var(--White, #FFF);
    padding: 30px 15px;
    margin-top: 30px;
}

.announcements-sidebar-title {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 20px 0;
    text-align: center;
}

.announcements-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.announcements-tab {
    width: 100%;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.announcements-tab.active {
    background: var(--Fifth, #EE7203);
    color: var(--White, #FFF);
}

.announcements-tab:hover:not(.active) {
    background: rgba(238, 114, 3, 0.1);
}

/* Right Content - Announcements Grid */
.announcements-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Announcement Card */
.announcement-card {
    width: 336px;
    height: 300px;
    background: var(--White, #FFF);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Date Badge */
.announcement-date-badge {
    display: flex;
    width: 110px;
    height: 30px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--Fifth, #EE7203);
    flex-shrink: 0;
}

.announcement-date-text {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.1px;
}

/* Card Title */
.announcement-card-title {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    margin: 0;
    min-height: 60px;
}

/* Card Description */
.announcement-card-description {
    color: #999;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    margin: 0;
    flex: 1;
}

/* Card Button */
.announcement-card-btn {
    display: flex;
    width: 140px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 30px;
    background: var(--Alternative, #20274F);
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.announcement-card-btn:hover {
    background: #151a35;
}

/* No Announcements Message */
.no-announcements {
    width: 100%;
    padding: 60px;
    text-align: center;
}

.no-announcements p {
    color: #999;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
}

/* Responsive Design for Announcements */
@media screen and (max-width: 1400px) {
    .announcements-content-section {
        padding: 0 50px 80px;
    }

    .announcements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .announcements-main-container {
        flex-direction: column;
    }

    .announcements-sidebar {
        width: 100%;
        height: auto;
    }

    .announcements-tabs {
        flex-direction: row;
        justify-content: center;
    }

    .announcements-tab {
        width: auto;
        padding: 0 20px;
    }

    .announcements-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media screen and (max-width: 480px) {
    .announcements-header-section {
        height: 200px;
        padding: 0 20px;
    }

    .announcements-header-title {
        font-size: 32px;
    }

    .announcements-content-section {
        padding: 0 20px 40px;
    }

    .announcement-card {
        width: 100%;
        max-width: 336px;
    }
}

/* ============================================
   PROJECTS PAGE STYLES
   ============================================ */

/* Projects Content Section */
.projects-content-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 150px 80px;
    background: var(--back-grey);
}

.projects-container {
    width: 100%;
    max-width: 1434px;
    display: flex;
    flex-direction: column;
}

/* Projects Tabs */
.projects-tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    background: #FFF;
    padding: 20px;
    border-radius: 10px;
}

.project-tab {
    min-width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 30px;
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.project-tab.active {
    background: var(--Fifth, #EE7203);
    color: var(--White, #FFF);
    border-color: var(--Fifth, #EE7203);
}

.project-tab:hover:not(.active) {
    border-color: var(--Fifth, #EE7203);
    color: var(--Fifth, #EE7203);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Project Card */
.project-card {
    width: 458px;
    height: 274px;
    background: var(--White, #FFF);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-card-image {
    width: 428px;
    height: 154px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    margin: 15px auto 0;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.project-card-title {
    padding: 20px;
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

/* No Projects Message */
.no-projects {
    width: 100%;
    padding: 60px;
    text-align: center;
    background: #FFF;
    border-radius: 10px;
}

.no-projects p {
    color: #999;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
}

/* Project Popup */
.project-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.project-popup-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.project-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.project-popup-close:hover {
    color: #000;
}

.project-popup-title {
    color: var(--Alternative, #20274F);
    font-family: Poppins;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px 0;
    padding-right: 30px;
}

.project-popup-video {
    margin: 0 0 30px 0;
    display: none;
}

.project-popup-video iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.project-popup-text {
    color: #333;
    font-family: Poppins;
    font-size: 16px;
    line-height: 1.8;
}

.project-popup-text h3 {
    color: var(--Fifth, #EE7203);
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.project-popup-text p {
    margin: 15px 0;
    text-align: justify;
}

.project-popup-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.project-popup-text li {
    margin: 8px 0;
}

/* Popup Scrollbar */
.project-popup-content::-webkit-scrollbar {
    width: 8px;
}

.project-popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.project-popup-content::-webkit-scrollbar-thumb {
    background: #20274F;
    border-radius: 10px;
}

.project-popup-content::-webkit-scrollbar-thumb:hover {
    background: #151a35;
}

/* Responsive Design for Projects */
@media screen and (max-width: 1400px) {
    .projects-content-section {
        padding: 60px 50px 80px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

@media screen and (max-width: 900px) {
    .projects-content-section {
        padding: 40px 5px !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .projects-container {
        padding: 0 5px !important;
    }

    .projects-tabs {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 15px !important;
        width: 100% !important;
    }

    .project-tab {
        width: 100% !important;
        min-width: auto !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .projects-content-section {
        padding: 40px 3px !important;
    }

    .projects-container {
        padding: 0 3px !important;
    }

    .projects-tabs {
        padding: 8px !important;
        gap: 8px !important;
    }

    .project-tab {
        min-width: 160px !important;
        font-size: 13px !important;
    }

    .project-card {
        width: 100%;
        max-width: 458px;
        height: auto;
    }

    .project-card-image {
        width: calc(100% - 30px);
    }

    .project-popup-content {
        padding: 30px 20px;
        max-width: 95%;
    }

    .project-popup-title {
        font-size: 22px;
    }
}

/* Responsive Design for News List */
@media screen and (max-width: 1400px) {
    .news-list-section {
        padding: 50px 100px;
    }

    .news-item-card {
        width: 100%;
        max-width: 650px;
    }
}

@media screen and (max-width: 1200px) {
    .news-list-section {
        padding: 50px 50px;
    }

    .news-list-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-item-card {
        max-width: 100%;
        height: auto;
        min-height: 360px;
    }
}

@media screen and (max-width: 768px) {
    .news-list-section {
        padding: 30px 20px;
    }

    .news-item-card {
        flex-direction: column;
        height: auto;
    }

    .news-item-image {
        width: 100%;
        height: 250px;
        margin: 0;
    }

    .news-item-content {
        padding: 20px;
    }

    .news-item-title {
        font-size: 20px;
    }

    .news-item-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .news-list-section {
        padding: 20px 15px;
    }

    .news-item-image {
        height: 200px;
    }

    .news-item-title {
        font-size: 18px;
    }

    .news-item-description {
        font-size: 14px;
    }

    .pagination-btn,
    .pagination-number {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Document Center Section */
.document-center-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 150px 80px;
    background: var(--back-grey);
}

.document-center-container {
    width: 100%;
    max-width: 1434px;
    display: flex;
    gap: 0;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 0;
}

/* Left Side - Document Tabs Box */
.document-tabs-box {
    width: 336px;
    min-height: 270px;
    flex-shrink: 0;
    background: #FFF;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.document-tabs-title {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    padding: 0 15px;
}

.document-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.document-tab {
    width: 306px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.document-tab:hover {
    background: rgba(238, 114, 3, 0.1);
}

.document-tab.active {
    background: var(--Fifth, #EE7203);
    color: #FFF;
}

/* Right Side - Content Area */
.document-content-area {
    flex: 1;
    padding: 0 20px 0 30px;
    min-height: 500px;
    overflow: hidden;
    box-sizing: border-box;
}

.document-content-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-family: Poppins;
    font-size: 18px;
}

/* Responsive Design for Document Center */
@media screen and (max-width: 1200px) {
    .document-center-section {
        padding: 60px 50px 80px;
    }

    .document-center-container {
        flex-direction: column;
    }

    .document-tabs-box {
        width: 100%;
    }

    .document-tab {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .document-center-section {
        padding: 40px 20px;
    }

    .document-tabs-box {
        padding: 20px 15px;
    }

    .document-tabs-title {
        font-size: 20px;
    }

    .document-content-area {
        padding: 25px;
    }
}

/* Doka Dergi Cards */
.dergi-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1100px;
}

.dergi-card {
    width: 100%;
    max-width: 336px;
    height: 454px;
    background: var(--white, #FFF);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    justify-self: center;
}

.dergi-card-image {
    width: 228.815px;
    height: 278px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dergi-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dergi-card-title {
    color: var(--Alternative, #20274F);
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.dergi-card-subtitle {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.dergi-card-btn {
    display: flex;
    width: 122px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 2px solid var(--Alternative, #20274F);
    background: transparent;
    color: var(--Alternative, #20274F);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.dergi-card-btn:hover {
    background: var(--Alternative, #20274F);
    color: #FFF;
}

/* Responsive for Dergi Cards */
@media screen and (max-width: 1200px) {
    .dergi-cards-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 750px;
    }
}

@media screen and (max-width: 768px) {
    .dergi-cards-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .dergi-card {
        max-width: 100%;
    }
}

/* ============================================
   DESKTOP MENU STYLES
   ============================================ */

/* Desktop Menu Overlay */
.desktop-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.desktop-menu-overlay.active {
    display: block;
}

/* Desktop Menu */
.desktop-menu {
    position: fixed !important;
    top: 0 !important;
    right: -450px !important;
    width: 450px !important;
    height: 100% !important;
    background: #20274F !important;
    z-index: 999 !important;
    transition: right 0.4s ease !important;
    overflow-y: auto !important;
    padding: 40px 0 !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3) !important;
}

.desktop-menu.active {
    right: 0 !important;
}

.desktop-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 40px 30px;
}

.desktop-menu-close {
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.desktop-menu-close:hover {
    transform: rotate(90deg);
}

.desktop-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 40px;
}

.desktop-menu-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 0 !important;
}

.desktop-menu-title {
    color: #FFF !important;
    font-family: Poppins !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: normal !important;
    letter-spacing: 0.15px !important;
    text-decoration: none !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

.desktop-menu-title:hover {
    color: var(--fifth, #EE7203);
    padding-left: 10px;
}

.desktop-menu-submenu {
    display: flex;
    flex-direction: column;
    padding-left: 0 !important;
    margin-top: 0 !important;
}

.desktop-menu-link {
    color: #FFF !important;
    font-family: Poppins !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: normal !important;
    letter-spacing: 0.15px !important;
    text-decoration: none !important;
    padding: 15px 0 !important;
    transition: all 0.3s ease !important;
    display: block !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.desktop-menu-link:hover {
    color: #EE7203 !important;
    padding-left: 10px !important;
}

/* Scrollbar styling for desktop menu */
.desktop-menu::-webkit-scrollbar {
    width: 6px;
}

.desktop-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.desktop-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.desktop-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ============================================
   DESTEKLER CARDS STYLES
   ============================================ */

.destekler-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.destek-card {
    width: 320px;
    height: auto;
    flex-shrink: 0;
    background: #FFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.destek-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.destek-card-category {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--Primary, #CF0A0A);
    color: #FFF;
    font-family: Poppins;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 2;
}

.destek-card-image {
    width: 100%;
    max-width: 290px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}

.destek-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destek-card-title {
    width: 100%;
    max-width: 290px;
    height: auto;
    min-height: 25px;
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.15px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.destek-card-description {
    width: 100%;
    max-width: 290px;
    height: auto;
    max-height: 80px;
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.1px;
    margin-bottom: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.destek-card-dates {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    width: 100%;
    align-items: center;
}

.destek-date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.destek-date-label {
    color: #666;
    font-family: Poppins;
    font-size: 12px;
    font-weight: 500;
}

.destek-date-value {
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 600;
}

.destek-card-btn {
    display: flex;
    width: 140px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 30px;
    background: var(--Alternative, #20274F);
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.destek-card-btn:hover {
    background: var(--fifth, #EE7203);
    transform: scale(1.05);
}

/* ============================================
   DESTEK DETAY PAGE STYLES
   ============================================ */

.destek-detay-section {
    width: 100%;
    padding: 50px 200px;
    box-sizing: border-box;
}

.destek-detay-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.destek-detay-main {
    background: #FFF;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.destek-detay-category {
    display: inline-block;
    background: var(--Primary, #CF0A0A);
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.destek-detay-header-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.destek-detay-image {
    flex: 0 0 400px;
    border-radius: 8px;
    overflow: hidden;
}

.destek-detay-image img {
    width: 100%;
    height: auto;
    display: block;
}

.destek-detay-dates {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 8px;
    justify-content: center;
}

.destek-detay-date-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.destek-detay-date-label {
    color: #666;
    font-family: Poppins;
    font-size: 13px;
    font-weight: 500;
}

.destek-detay-date-value {
    color: var(--Primary, #CF0A0A);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 700;
}

.destek-detay-content {
    margin-bottom: 40px;
    color: #333;
    font-family: Poppins;
    font-size: 15px;
    line-height: 160%;
}

.destek-detay-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.destek-detay-content table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.destek-detay-content table td strong {
    color: var(--Alternative, #20274F);
}

.destek-detay-files {
    margin-bottom: 30px;
}

.destek-detay-files-title {
    color: var(--Alternative, #20274F);
    font-family: Poppins;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.destek-files-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.destek-file-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #F8F9FA;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.destek-file-item:hover {
    border-color: var(--Primary, #CF0A0A);
    background: #FFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.destek-file-icon {
    flex-shrink: 0;
}

.destek-file-info {
    flex: 1;
}

.destek-file-title {
    color: #333;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.destek-file-size {
    color: #666;
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
}

.destek-detay-back {
    text-align: center;
    margin-top: 40px;
}

.destek-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--Alternative, #20274F);
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.destek-back-btn:hover {
    background: var(--fifth, #EE7203);
    transform: scale(1.05);
}

/* Responsive Design for Destek Detay */
@media screen and (max-width: 1400px) {
    .destek-detay-section {
        padding: 50px 100px;
    }
}

@media screen and (max-width: 1024px) {
    .destek-detay-section {
        padding: 40px 50px;
    }

    .destek-detay-main {
        padding: 30px;
    }

    .destek-files-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .destek-detay-section {
        padding: 30px 20px;
    }

    .destek-detay-main {
        padding: 20px;
    }

    .destek-detay-dates {
        flex-direction: column;
        gap: 15px;
    }

    .destek-detay-files-title {
        font-size: 18px;
    }
}

/* ============================================
   DESTEKLER HAKKINDA - ACCORDION STYLES
   ============================================ */

.destekler-hakkinda-content {
    padding: 25px;
    background: #FFF;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.destekler-intro-text {
    color: #000;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 25px;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
}

.accordion-item {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    background: #FFF;
    transition: box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.accordion-item:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #F5F5F5;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 600;
    color: var(--Alternative, #20274F);
    text-align: left;
    box-sizing: border-box;
}

.accordion-header span {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.accordion-header:hover {
    background: #EEEEEE;
}

.accordion-header.active {
    background: var(--Alternative, #20274F);
    color: #FFF;
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    background: #FFF;
    box-sizing: border-box;
}

.accordion-content.active {
    display: block;
}

.accordion-content p {
    padding: 18px 20px;
    margin: 0;
    color: #333;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    text-align: justify;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.accordion-content p:not(:last-of-type) {
    padding-bottom: 8px;
}

.accordion-file-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 20px 18px 20px;
    padding: 10px 18px;
    background: var(--Alternative, #20274F);
    color: #FFF;
    text-decoration: none;
    border-radius: 6px;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
}

.accordion-file-link:hover {
    background: var(--fifth, #EE7203);
    transform: translateX(5px);
}

.accordion-file-link svg {
    flex-shrink: 0;
}

/* File List Styles */
.file-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #F8F8F8;
    border-radius: 8px;
    border-left: 4px solid var(--Alternative, #20274F);
    text-decoration: none;
    transition: all 0.3s ease;
}

.file-item:hover {
    background: #EEEEEE;
    border-left-color: var(--fifth, #EE7203);
    transform: translateX(3px);
}

.file-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    border-radius: 6px;
    color: var(--Alternative, #20274F);
}

.file-icon svg {
    width: 20px;
    height: 20px;
}

.file-item:hover .file-icon {
    color: var(--fifth, #EE7203);
}

.file-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.file-name {
    color: #333;
    font-family: Poppins;
    font-size: 13px;
    font-weight: 500;
    line-height: 130%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.file-size {
    color: #666;
    font-family: Poppins;
    font-size: 11px;
    font-weight: 400;
}

/* File List Responsive */
@media (max-width: 1024px) {
    .file-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Genel overflow kontrolü */
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .file-list {
        grid-template-columns: 1fr;
    }

    .file-name {
        font-size: 14px;
    }

    .file-size {
        font-size: 12px;
    }

    /* ============================================
       MOBİL DÜZENLEMELER - TÜM SAYFALAR
       ============================================ */

    /* announcement-detail.php, tender-detail.php, news-detail.php - Mobil düzenlemeler */
    .news-content-section {
        padding: 30px 20px;
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .news-content-container {
        flex-direction: column !important;
        padding: 0;
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    .recent-announcements-sidebar,
    .recent-tenders-sidebar,
    .recent-news-sidebar {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .news-article {
        width: 100% !important;
        margin-bottom: 30px !important;
    }

    /* destek-detay.php - Metinlerin taşmasını önle */
    .destek-detay-section {
        padding: 30px 20px;
    }

    .destek-detay-main {
        padding: 20px;
    }

    .destek-detay-content {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }

    .destek-detay-content table {
        width: 100% !important;
        display: block;
        overflow-x: auto;
    }

    /* destekler.php - Boşlukları azalt */
    .document-center-section {
        padding: 30px 10px !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .document-center-container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* dokuman-merkezi.php - Boşlukları azalt */
    .document-tabs-box {
        padding: 20px 5px;
        max-width: 100%;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
    }

    .document-content-area {
        padding: 20px 5px;
        max-width: 100%;
    }

    /* Accordion genişliği mobilde */
    .accordion-container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .accordion-item {
        max-width: 100% !important;
        margin: 0 !important;
    }

    .accordion-header {
        padding: 15px 10px !important;
        font-size: 14px !important;
        word-wrap: break-word !important;
        white-space: normal !important;
    }

    .accordion-item.active .accordion-content {
        padding: 15px 10px !important;
    }

    .accordion-content.active {
        padding: 15px 10px !important;
    }

    /* File cards mobilde tam genişlik */
    .file-card {
        max-width: 100% !important;
        padding: 12px 10px !important;
    }

    .file-name {
        font-size: 13px !important;
        word-wrap: break-word !important;
        white-space: normal !important;
    }

    /* duyurular.php - Tabları altalta yap */
    .announcements-content-section {
        padding: 30px 20px 40px !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .announcements-container {
        padding: 0 !important;
    }

    .announcements-sidebar {
        width: 100% !important;
        padding: 20px 15px !important;
        margin-bottom: 20px;
        max-height: none !important;
    }

    .announcements-sidebar-title {
        padding: 0 0 15px 0;
        font-size: 20px;
    }

    .announcements-tabs {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .announcements-tab {
        width: 100% !important;
        padding: 12px 20px !important;
        height: auto !important;
        white-space: normal !important;
        text-align: left !important;
    }

    .document-tabs {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .document-tab {
        flex: 0 0 auto !important;
        min-width: 150px !important;
        white-space: nowrap !important;
        text-align: center;
        padding: 12px 20px !important;
    }

    /* haber-detay.php - Güncel haberleri içerikten sonra göster */
    .recent-news-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }

    /* kurumsal.php - Boşlukları azalt */
    .kurumsal-content-section {
        padding: 30px 20px;
    }

    /* organizasyon.php - Kişileri ikili sıralama */
    .org-person-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .org-person-card {
        width: 100%;
        max-width: none;
    }

    /* sehir-detay.php - Tabları yatay scroll yap */
    .city-tabs-wrapper {
        padding: 20px 15px !important;
        max-width: 100vw !important;
        overflow: visible !important;
    }

    .city-tabs {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .city-tab {
        width: 100% !important;
        min-width: auto !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        text-align: left !important;
        white-space: normal !important;
    }

    .city-container {
        padding: 0 5px !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .city-content-section {
        padding: 0 5px !important;
    }
}

@media (max-width: 480px) {

    /* Genel overflow kontrolü */
    body,
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    /* announcement-detail.php */
    .news-content-section {
        padding: 20px 15px;
    }

    /* destek-detay.php */
    .destek-detay-section {
        padding: 20px 15px;
    }

    .destek-detay-main {
        padding: 15px;
    }

    /* destekler.php ve dokuman-merkezi.php */
    .document-center-section {
        padding: 20px 3px !important;
        max-width: 100vw !important;
    }

    .document-tabs-box {
        padding: 15px 3px;
    }

    .document-content-area {
        padding: 15px 3px;
    }

    .document-tabs {
        gap: 8px !important;
        padding: 0 !important;
    }

    .document-tab {
        min-width: 130px !important;
        padding: 10px 15px !important;
        font-size: 13px !important;
    }

    /* Accordion 480px için */
    .accordion-header {
        padding: 12px 8px !important;
        font-size: 13px !important;
    }

    .accordion-item.active .accordion-content {
        padding: 12px 8px !important;
    }

    .accordion-content.active {
        padding: 12px 8px !important;
    }

    .file-card {
        padding: 10px 8px !important;
    }

    .file-name {
        font-size: 12px !important;
    }

    /* Şehir tabları 480px için */
    .city-tabs-wrapper {
        padding: 15px 10px !important;
    }

    .city-tabs {
        flex-direction: column !important;
        gap: 8px !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .city-tab {
        width: 100% !important;
        min-width: auto !important;
        padding: 10px 15px !important;
        font-size: 13px !important;
        text-align: left !important;
    }

    .city-container {
        padding: 0 3px !important;
    }

    .city-content-section {
        padding: 0 3px !important;
    }

    /* duyurular.php */
    .announcements-content-section {
        padding: 0 3px 30px !important;
    }

    .announcements-container {
        padding: 0 3px !important;
    }

    .announcements-tabs {
        padding: 8px !important;
        gap: 6px !important;
    }

    .announcements-tab {
        min-width: 120px !important;
        padding: 10px 15px !important;
        font-size: 13px !important;
    }

    /* kurumsal.php */
    .kurumsal-content-section {
        padding: 20px 15px;
    }

    /* organizasyon.php */
    .org-person-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .org-person-card {
        padding: 15px 10px;
        height: auto;
    }

    .org-person-name {
        font-size: 16px;
    }

    .org-person-title {
        font-size: 12px;
    }
}
/* ============================================
   CONTACT PAGE STYLES (iletisim.php)
   ============================================ */

.contact-section {
    width: 100%;
    padding: 60px 150px;
    background: var(--back-grey);
}

.contact-container {
    max-width: 1434px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sol Taraf - İletişim Bilgileri */
.contact-info-box {
    flex: 0 0 610px;
    background: var(--Alternative, #20274F);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-main-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-region-title {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.contact-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--White, #FFF);
    border-radius: 5px;
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.map-button:hover {
    background: var(--White, #FFF);
    color: var(--Alternative, #20274F);
}

.map-button svg {
    transition: transform 0.3s ease;
}

.map-button:hover svg path {
    stroke: var(--Alternative, #20274F);
}

/* Yatırım Destek Ofisleri */
.investment-offices {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.investment-offices-title {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.office-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.office-tab {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.office-tab:hover {
    background: rgba(255, 255, 255, 0.2);
}

.office-tab.active {
    background: var(--fifth, #EE7203);
    border-color: var(--fifth, #EE7203);
}

.office-content {
    position: relative;
    min-height: 120px;
}

.office-info {
    display: none;
    flex-direction: column;
    gap: 10px;
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.office-info.active {
    display: flex;
}

.office-address {
    margin: 0;
}

.office-phone,
.office-fax {
    margin: 0;
}

/* Sağ Taraf - İletişim Formu */
.contact-form-box {
    flex: 1;
    background: var(--White, #FFF);
    padding: 40px;
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--fifth, #EE7203);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--White, #FFF);
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fifth, #EE7203);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    color: var(--BLACK, #131313);
    font-family: Poppins;
    font-size: 13px;
    font-weight: 400;
    line-height: 160%;
    cursor: pointer;
}

.kvkk-link {
    color: var(--fifth, #EE7203);
    text-decoration: underline;
}

.form-note {
    color: #666;
    font-family: Poppins;
    font-size: 12px;
    font-style: italic;
    margin: 0;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--fifth, #EE7203);
    border: none;
    border-radius: 5px;
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: var(--Alternative, #20274F);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-success-message {
    text-align: center;
    padding: 60px 40px;
    color: var(--Alternative, #20274F);
}

.form-success-message h4 {
    font-family: Poppins;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.form-success-message p {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.form-error-message {
    padding: 12px;
    background: #ffebee;
    border: 1px solid #ef5350;
    border-radius: 5px;
    color: #c62828;
    font-family: Poppins;
    font-size: 14px;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .contact-section {
        padding: 60px 50px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-info-box {
        padding: 30px 20px;
    }

    .contact-region-title {
        font-size: 24px;
    }

    .contact-info-item {
        font-size: 14px;
    }

    .investment-offices-title {
        font-size: 20px;
    }

    .office-tabs {
        gap: 8px;
    }

    .office-tab {
        font-size: 13px;
        padding: 6px 12px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 30px 15px;
    }

    .contact-info-box {
        padding: 25px 15px;
    }

    .contact-region-title {
        font-size: 20px;
    }

    .contact-info-item {
        font-size: 13px;
    }

    .map-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .contact-form-box {
        padding: 25px 15px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 14px;
    }

    .form-submit-btn {
        font-size: 15px;
        padding: 12px;
    }
}

/* Search Modal */
.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    background: white;
    border-radius: 16px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.search-modal-header h2 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 0;
}

.search-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.search-modal-body {
    padding: 20px 30px 30px;
    overflow-y: auto;
    flex: 1;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.search-input-wrapper svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-input-wrapper input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.search-results {
    margin-top: 20px;
}

.search-loading,
.search-no-results,
.search-error {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 16px;
}

.search-error {
    color: #e74c3c;
}

.search-category {
    margin-bottom: 30px;
}

.search-category h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.search-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    background: #f9f9f9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.search-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.search-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.search-item-content h4 {
    font-size: 16px;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.4;
}

.search-item-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.search-item-date {
    font-size: 12px;
    color: #999;
    margin-top: auto;
}

.search-icon {
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-icon:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .search-modal {
        width: 95%;
        max-height: 90vh;
    }

    .search-modal-header,
    .search-modal-body {
        padding: 15px 20px;
    }

    .search-modal-header h2 {
        font-size: 20px;
    }

    .search-item {
        flex-direction: column;
    }

    .search-item img {
        width: 100%;
        height: 150px;
    }
}
