.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.3s;
    text-decoration: none;
    border-radius: 0 0 5px 5px;
}

.skip-link:focus {
    top: 0;
    outline: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--color-text);
}

/* EriÅŸilebilirlik - GÃ¶rsel Olarak Gizli Metin */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Tab Gezintisi Ä°Ã§in Odak Stili */
:focus-visible {
    outline: 3px solid var(--color-secondary-1) !important;
    outline-offset: 3px;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: var(--color-primary);
    font-size: 15px;
    height: 50px;
    padding: 0;
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#topbar .topbar-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1265px;
    margin: 0 auto;
    padding: 0 0 0 0;
}

#topbar .topbar-left,
#topbar .topbar-right {
    display: flex;
    align-items: center;
}

#topbar .contact-info i {
    font-style: normal;
    color: var(--color-secondary-2);
    padding-right: 4px;
    margin-right: 15px;
}

#topbar .contact-info i:last-child {
    margin-right: 0;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}

#topbar .contact-info a {
    color: var(--color-secondary-2);
    transition: 0.3s;
    text-decoration: none;
}

#topbar .contact-info a:hover {
    color: var(--color-secondary-3);
    opacity: 0.7;
    text-decoration: none;
}

#topbar .social-links a {
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    transition: 0.3s;
    margin: 0 5px;
    text-decoration: none;
}

#topbar .social-links a:hover {
    background: #fff;
    color: var(--color-secondary-3);
    text-decoration: none;
}

.etkinlik-paylas {
    padding: 1.5rem;
    background-color: #fdfeff;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid #f8f8f8;
    text-decoration: none;
}

.etkinlik-paylas h5 {
    font-size: 1.1rem;
    text-decoration: none;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    display: block;
    width: 100%;
    padding-bottom: 0.5rem;

}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    color: #fff;
    margin: 0 3px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-share-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.social-share-btn {
    text-decoration: none !important;
}

.social-share-btn i {
    font-size: 16px;
    position: relative;
    z-index: 1;
    text-decoration: none !important;
}

/* Social Media Colors */
.social-share-btn.facebook {
    background-color: #3b5998;
    border: 1px solid #3b5998;
}

.social-share-btn.twitter {
    background-color: #1da1f2;
    border: 1px solid #1da1f2;
}

.social-share-btn.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    border: none;
}

.social-share-btn.whatsapp {
    background-color: #25d366;
    border: 1px solid #25d366;
}

.social-share-btn.link {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.social-share-btn.envelope {
    background-color: #34b7f1;
    border: 1px solid #34b7f1;
}

/* Hover Effects */

.social-share-btn.envelope:hover {
    background-color: #fff;
    color: #34b7f1;
}

.social-share-btn.facebook:hover {
    background-color: #fff;
    color: #3b5998;
}

.social-share-btn.twitter:hover {
    background-color: #fff;
    color: #1da1f2;
}

.social-share-btn.instagram:hover {
    opacity: 0.9;
    color: #fff;
}

.social-share-btn.whatsapp:hover {
    background-color: #fff;
    color: #25d366;
}

.social-share-btn.link:hover {
    background-color: #fff;
    color: var(--color-primary);
}

#topbar .language-select {
    margin-right: 0;
    color: var(--color-secondary-2);
}

#topbar .search-icon {
    margin-left: 5px;
}

#topbar .search-icon a {
    color: var(--color-secondary-2);
    font-size: 16px;
    transition: 0.3s;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    text-decoration: none;
}

#topbar .search-icon a:hover {
    color: var(--color-secondary-3);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
}

.topbar-divider {
    height: 25px;
    border-left: 1px solid var(--color-secondary-1);
    opacity: 0.5;
    margin: 0 10px;
}

/* Note: Bootstrap-select styles might need further customization */
.bootstrap-select .dropdown-toggle {
    background: transparent !important;
    border: none !important;
    color: var(--color-secondary-3) !important;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.section-title {
    position: relative;
    margin-bottom: 15px;
    text-align: left;
    padding-bottom: 5px;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary-1) 0%, rgba(156, 21, 34, 0) 100%);
}

.section-title h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.section-title .calendar-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.section-title .calendar-icon:hover {
    color: var(--color-secondary-1);
    transform: scale(1.1);
}

.section-title .photo-video-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.section-title .photo-video-icon:hover {
    color: var(--color-secondary-1);
    transform: scale(1.1);
}

/* Etkinlikler SayfasÄ± Stilleri */
.etkinlikler-container {
    padding: 20px 0;
}

/* Equal height for all cards in a row */
.etkinlikler-container .row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.etkinlikler-container .row>[class*='col-'] {
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.etkinlik-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: relative;
}

.etkinlik-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.etkinlik-item:hover .etkinlik-image img {
    transform: scale(1.05);
}

.etkinlik-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.etkinlik-content h3 {
    color: #1c4586;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.etkinlik-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.etkinlik-meta span {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.etkinlik-meta i {
    margin-right: 5px;
    color: var(--color-primary);
    font-size: 14px;
}

.etkinlik-tur {
    background-color: #f0f5ff;
    color: #1c4586 !important;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px !important;
    font-weight: 500;
}

.etkinlik-tur i {
    color: #1c4586 !important;
}

.etkinlik-aciklama {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    min-height: 4.8em;
    /* 3 lines of text */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: 4.8em;
    line-clamp: 3;
}

.btn-detay {
    display: inline-block;
    background-color: #1c4586;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-detay:hover {
    background-color: #9c1522;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Pagination Stilleri */
.pagination-container {
    margin-top: 40px;
}

.pagination .page-link {
    color: #1c4586;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 4px;
    padding: 8px 15px;
    transition: all 0.3s;
}

.pagination .page-item.active .page-link {
    background-color: #1c4586;
    border-color: #1c4586;
    color: #fff;
}

.pagination .page-link:hover {
    background-color: #f0f0f0;
    color: #9c1522;
}

/* Etkinlik Link Stilleri */
.etkinlik-link {
    display: inline-flex;
    align-items: center;
    color: #1c4586;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.etkinlik-bilgileri {
    margin-bottom: 20px;
}

.etkinlik-link:hover {
    color: #9c1522;
}

.etkinlik-link span {
    margin-right: 5px;
    transition: all 0.3s ease;
}

.etkinlik-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.etkinlik-link:hover i {
    transform: translateX(5px);
}

/* Responsive DÃ¼zenlemeler */
@media (max-width: 991.98px) {
    .etkinlik-item {
        margin-bottom: 30px;
    }

    .etkinlik-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .etkinlik-image {
        height: 180px;
    }

    .etkinlik-content {
        padding: 15px;
    }

    .etkinlik-meta {
        font-size: 0.85rem;
    }
}

.section-title .d-flex {
    align-items: center;
}

.section-title p {
    margin: 0 0 15px 0;
    position: relative;
    display: inline-block;
}

/* Section title styles */
.section-title {
    width: 100%;
    margin-bottom: 1.5rem;
}

.section-title h2 {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: inline-block;
}

/* Calendar icon styles */
.calendar-icon {
    color: var(--color-secondary-1);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
}

.calendar-icon:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* Description text styles */
.description-text {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #666;
    display: inline-block;
    text-align: right;
    flex-grow: 1;
    padding-right: 1rem;
}

.services {
    padding: 50px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('../images/bg1.jpg') center/cover no-repeat fixed;
    position: relative;
}

/* Hide services section on mobile */
@media (max-width: 767.98px) {
    .services {
        display: none;
    }
}

.section-bg {
    background-color: #f8f9fa;
}

.service-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    min-height: 130px;
}


.service-box:hover::before {
    background: var(--color-secondary-1);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.service-icon {
    position: absolute;
    left: 5px;
    top: -20px;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 8px;
    z-index: 2;
}

.service-icon i.material-icons-round {
    font-size: 2.5rem;
    color: white;
    font-family: 'Material Icons Round';
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.service-box:hover .service-icon i {
    transform: scale(1.1);
    animation: bounce 0.6s ease-in-out;
}

.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 15px;
}

.service-right {
    flex: 1;
    padding-left: 80px;
}

.service-right h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 15px 0;
    color: var(--color-primary);
    padding: 15px;
    border-radius: 8px;
}

.service-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-link i {
    transition: all 0.3s ease;
}

.service-link:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateX(5px);
}

.service-link:hover i {
    transform: rotate(-45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive styles have been moved to style-responsive.css */

/*--------------------------------------------------------------
# Events & Video Section
--------------------------------------------------------------*/
.events {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.events-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 10px;
    position: relative;
}

.event-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.event-item:last-child {
    border-bottom: none;
}

.event-item:hover {
    background-color: rgba(28, 69, 134, 0.03);
}

.event-image {
    width: 100%;
    height: 190px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 5px 0;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
    padding-top: 10px;
    color: #666;
    font-size: 13px;
    border-top: 1px solid #f0f0f0;
    align-items: center;
}

.event-meta span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.event-meta i {
    margin-right: 5px;
    color: var(--color-secondary-1);
}

.event-link {
    margin-top: 10px;
    color: var(--color-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.event-link:hover {
    color: var(--color-secondary-1);
    transform: translateX(3px);
}

/* Video Section */
.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    background: var(--color-primary);
    color: #fff;
}

.video-description {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-description h3 {
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.video-description p {
    color: #666;
    margin-bottom: 0;
}

/* Swiper Customization */
.events-swiper {
    height: 100%;
    padding: 15px 0;
    overflow: hidden;
}

.swiper-wrapper {
    height: 100%;
}

.swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.swiper-slide:last-child {
    margin-bottom: 0;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    margin: 0 10px;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 20px;
    border-radius: 4px;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .video-container {
        margin-top: 30px;
    }

    .event-item {
        padding: 15px;
    }

    .event-image {
        width: 70px;
        height: 70px;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 105px;
    transition: all 0.5s;
    z-index: 997;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 10px 30px;
    max-width: 100%;
    flex-wrap: nowrap;
}

#header .logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

#header .logo img {
    max-height: 110px;
    /* Increased size for better visibility */
    width: auto;
    transition: all 0.3s ease;
}

#header .navbar {
    display: flex;
    justify-content: center;
    padding: 0;
}

#header .navbar-nav {
    flex-wrap: nowrap;
}

#header .header-buttons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    white-space: nowrap;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.navbar .nav-link {
    color: var(--color-primary);
    font-weight: 500;
    padding: 10px 15px;
    transition: 0.3s;
    position: relative;
    white-space: nowrap;
}


/* Vertical divider between menu items */
.navbar-nav .nav-item {
    position: relative;
    margin: 0 1px;
}

.navbar-nav .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background-color: #ddd;
}

/* Remove divider after the last item */
.navbar-nav .nav-item:last-child::after {
    display: none;
}

/* Style for dropdown menu */
.navbar .dropdown-menu {
    border-radius: 4px;
    border: 0;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    padding: 5px 0;
    margin-top: 8px;
}

.navbar .dropdown-item {
    color: var(--color-primary);
    transition: 0.3s;
    padding: 8px 20px;
}

.navbar .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.navbar .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--color-secondary-1);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--color-secondary-1);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    color: var(--color-primary);
    font-size: 24px;
}

@media (max-width: 991.98px) {
    #header .logo-right {
        display: none;
    }

    #header .navbar {
        width: 100%;
        padding: 0;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #f9f9f9;
        padding: 0;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .navbar-collapse>.container {
        padding: 10px 10px;
    }

    .navbar-nav {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .navbar-nav .nav-item {
        text-align: left;
        padding: 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 12px 10px;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .navbar .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin: 0;
        padding: 0;
        border: none;
        box-shadow: none;
    }

    .navbar .dropdown-item {
        padding: 10px 25px;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-toggler {
        padding: 0.5rem;
        font-size: 1.25rem;
        line-height: 1;
        background: transparent;
        border: none;
        border-radius: 0.25rem;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-toggler i {
        color: var(--color-primary);
    }
}

/* Sticky Header Removed */


/* ======= Buttons ======= */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-secondary-2);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-bilet {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-bilet:hover {
    background-color: #9c1522;
    color: #fff;
    border-color: #9c1522;
}

/* Responsive Spacing for Right Column */
@media (max-width: 991.98px) {
    .etkinlik-detay-container .col-lg-4 {
        margin-top: 30px;
    }
}

/* Event Detail Card Styling */
.etkinlik-detay-container .card {
    padding: 1rem;
    border: none;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #002050;
    border-color: #002050;
    color: white;
}

/* Header Action Buttons */
.btn-tesis-kayit {
    background-color: var(--color-secondary-1) !important;
    color: white !important;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .btn-tesis-kayit {
        margin-left: 20px;
    }
}

.btn-tesis-kayit:hover {
    background-color: #7a0f1a !important;
    transform: translateY(-2px);
    color: white !important;
}



/* Footer & Other Inline Styles */
.footer-heart {
    color: #ff4d4d;
}

.map-iframe iframe {
    border: 0;
    width: 100%;
}

.events-swiper hr {
    color: rgb(226, 226, 226);
    opacity: 1;
}

/* ======= Tesisler List View & Filters ======= */
.tesis-intro .lead {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.tesis-intro .text-muted {
    font-size: 1.1rem;
}

.tesis-map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tesis-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.filter-bar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
}

.filter-bar .form-select {
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.95rem;
    border-color: #e0e0e0;
}

.filter-bar .btn-filter {
    background-color: var(--color-primary);
    color: white;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-bar .btn-filter:hover {
    background-color: #001a40;
    transform: translateY(-2px);
}

.tesis-list-item {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.tesis-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.tesis-item-image {
    width: 100%;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
}

.tesis-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tesis-item-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.tesis-item-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.tesis-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tesis-badges .badge {
    background: #f8f9fa;
    color: #555;
    border: 1px solid #eee;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.btn-tesis-detay {
    background-color: #f8f9fa;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-tesis-detay:hover {
    background-color: var(--color-primary);
    color: #fff;
}

/* ======= Hero Slider ======= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transform: scale(1);
    transition: transform 10s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    padding: 40px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-top: 200px;
    opacity: 1 !important;
    transform: none !important;
    margin-right: auto;
    text-align: left;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: none;
}

.slide-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: none;
}

/* Navigation buttons */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: transparent !important;
    /* Hide default arrow */
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) !important;
    top: 50% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Remove default arrows */
.hero-slider .swiper-button-prev:after,
.hero-slider .swiper-button-next:after {
    display: none !important;
}

/* Custom arrow using background image */
.hero-slider .swiper-button-prev:before,
.hero-slider .swiper-button-next:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-width: 2px 2px 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
    box-sizing: border-box;
}

.hero-slider .swiper-button-next:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.hero-slider .swiper-button-prev {
    left: 15px !important;
}

.hero-slider .swiper-button-next {
    right: 15px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        width: 35px !important;
        height: 35px !important;
    }

    .hero-slider .swiper-button-prev:before,
    .hero-slider .swiper-button-next:before {
        width: 10px;
        height: 10px;
    }
}

/* Thumbnails */
.swiper-thumbnails {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.swiper-thumbnail {
    width: 120px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.7;
}

.swiper-thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
    opacity: 0.9;
}

.swiper-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Active thumbnail */
.swiper-thumbnail.active {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-thumbnail:hover,
.swiper-thumbnail.active {
    opacity: 1;
}

.swiper-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pagination */
.hero-slider .swiper-pagination {
    position: relative;
    margin: 30px 0 0;
    padding: 15px 0 5px;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .slide-content {
        max-width: 60%;
        padding: 30px;
        margin-right: auto;
        text-align: left;
    }

    .swiper-thumbnail {
        width: 100px;
        height: 75px;
    }
}

@media (max-width: 991.98px) {
    .hero-slider {
        height: 500px !important;
    }

    .slide-content {
        max-width: 70%;
        margin-top: 150px;
        margin-right: auto;
        text-align: left;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-text {
        font-size: 16px;
    }

    .swiper-thumbnails {
        right: 20px;
        bottom: 20px;
        gap: 10px;
    }

    .swiper-thumbnail {
        width: 80px;
        height: 60px;
    }
}

@media (max-width: 767.98px) {
    .hero-slider {
        height: 400px !important;
    }

    .slide-content {
        max-width: 90%;
        margin-top: 120px;
        padding: 20px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
    }

    .slide-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .slide-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .swiper-thumbnails {
        display: none;
    }

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .hero-slider .swiper-button-prev {
        left: 10px;
    }

    .hero-slider .swiper-button-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px !important;
    }

    .slide-content {
        margin-top: 100px;
        padding: 15px;
    }

    .slide-title {
        font-size: 26px;
    }

    .slide-text {
        font-size: 14px;
    }
}



/* ======= News Section ======= */
.news {
    padding: 50px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('../images/bg1.jpg') center/cover no-repeat fixed;
}

.news-container {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    text-decoration: none;
}

.news-link i {
    margin-left: 5px;
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.news-link:hover {
    color: #fff;
    background-color: var(--color-primary);
    text-decoration: none;
}

.news-link:hover i,
.tum-haberler-btn:hover i {
    transform: translateX(3px);
    color: #fff;
}

.tum-haberler-btn {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    text-decoration: none;
    background-color: #fff;
}

.tum-haberler-btn i {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.tum-haberler-btn:hover {
    color: #fff;
    background-color: var(--color-primary);
    text-decoration: none;
}

/* ======= Statistics Section (SayÄ±larla Spor) ======= */
.sayilarla-spor {
    padding: 40px 0;
    background: #fdfdfd;
}

.stat-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    height: 60px;
}

.sayilarla-spor .section-title h2 {
    color: var(--color-primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-plus {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
}

.stat-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 1px;
}

.odometer.odometer-auto-theme {
    font-family: inherit !important;
}

@media (max-width: 767.98px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-title {
        font-size: 0.8rem;
    }

    .sayilarla-spor {
        padding: 50px 0;
    }
}

.etkinlikler {
    padding: 50px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('../images/bg1.jpg') center/cover no-repeat fixed;
}

.etkinlikler-container {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.etkinlik-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 320px;
    display: flex;
    flex-direction: column;
}

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

.etkinlik-image {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.etkinlik-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.etkinlik-item:hover .etkinlik-image img {
    transform: scale(1.05);
}

.etkinlik-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.etkinlik-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.etkinlik-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.etkinlik-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    text-decoration: none;
    background-color: #fff;
}

.etkinlik-link i {
    margin-left: 5px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.etkinlik-link:hover {
    color: #fff;
    background-color: var(--color-primary);
    text-decoration: none;
}

.etkinlik-link:hover i {
    transform: translateX(3px);
    color: #fff;
}

.tum-etkinlikler-btn {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 200;
    text-decoration: none;
    padding: 4px 5px;
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-left: 15px;
    background-color: #fff;
}

.tum-etkinlikler-btn i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.tum-etkinlikler-btn:hover {
    color: #fff;
    background-color: var(--color-primary);
    text-decoration: none;
}

.tum-etkinlikler-btn:hover i {
    transform: translateX(3px);
    color: #fff;
}

/* Etkinlikler Swiper Customization */
.etkinlikler-swiper {
    padding: 10px;
    margin: -10px;
}

.etkinlikler-swiper .swiper-slide {
    height: auto;
    padding: 10px;
}

/* Sidebar News Styles */
/* Mekan Detay SayfasÄ± Stilleri */
.mekan-detay-container {
    padding: 30px 0;
}

.mekan-detay-resim {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.mekan-detay-resim img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

.mekan-detay-resim:hover img {
    transform: scale(1.02);
}

.mekan-baslik {
    font-size: 26px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    position: relative;
}



.mekan-meta-mobile {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid var(--color-secondary-1);
}

.mekan-meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.mekan-meta-item:last-child {
    margin-bottom: 0;
}

.mekan-meta-item i {
    color: var(--color-secondary-1);
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.mekan-icerik {
    line-height: 1.8;
    color: #444;
}

.mekan-icerik h4 {
    color: var(--color-primary);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.mekan-icerik h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--color-secondary-1);
}

.mekan-icerik p {
    margin-bottom: 1.2rem;
}

.mekan-icerik ul.etkinlik-program {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.mekan-icerik ul.etkinlik-program li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-left: 3px solid var(--color-secondary-1);
    transition: all 0.3s ease;
}

.mekan-icerik ul.etkinlik-program li:hover {
    background: #f1f3f5;
    transform: translateX(5px);
}

.mekan-icerik ul.etkinlik-program li strong {
    color: var(--color-primary);
}

/* Video Gallery Styles */
.video-gallery {
    margin: 0 -10px;
}

.video-gallery [class*="col-"] {
    padding: 0 10px;
    margin-bottom: 30px;
    position: relative;
}

/* Video Thumbnail Container */
.video-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background-color: #f5f5f5;
    margin-bottom: 10px;
}

.video-thumbnail img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    top: 0;
    left: 0;
}

/* Video Title Below Thumbnail */
.video-caption {
    padding: 10px 5px 0;
    text-align: center;
}

.video-caption {
    padding: 10px 0;
    margin-top: 8px;
    position: relative;
}

.video-caption .video-title {
    color: #1c4586;
    /* Ana renk */
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #9c1522;
    /* YardÄ±mcÄ± renk 1 */
}

.video-item:hover .video-caption .video-title {
    background-color: #f0f3f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effect for title */
.video-item:hover .video-title {
    color: var(--color-primary);
}

.video-thumbnail:hover .video-title {
    opacity: 1;
    transform: translateY(0);
}

.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(156, 21, 34, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    opacity: 0.9;
}

.video-thumbnail:hover .play-button {
    background-color: var(--color-secondary-1);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

/* Ensure the link takes up full space */
.video-gallery a {
    display: block;
    height: 100%;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .video-gallery [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .video-caption .video-title {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .video-gallery [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .video-thumbnail {
        padding-bottom: 56.25%;
    }

    .video-caption .video-title {
        font-size: 14px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Video Popup Styles */
.mfp-iframe-holder .mfp-content {
    max-width: 900px;
    width: 90%;
}

.mfp-iframe-scaler iframe {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -40px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
    font-size: 36px;
    opacity: 0.8;
}

.mfp-iframe-holder .mfp-close:hover {
    opacity: 1;
}

/* Video Popup Styles */
.mfp-iframe-holder .mfp-content {
    max-width: 900px;
}

.mfp-iframe-scaler iframe {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mekan Galeri Stilleri */
.mekan-galeri h4 {
    color: var(--color-primary);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-secondary-2);
    position: relative;
}

.mekan-galeri h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: var(--color-secondary-1);
}

.gallery .col-6 {
    margin-bottom: 15px;
}

.gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery a:hover img {
    transform: scale(1.05);
}

/* Mekan Sidebar Stilleri */
.mekan-sidebar {
    padding-left: 0px;
}

.mekan-sidebar-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.mekan-sidebar-title {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-secondary-2);
    position: relative;
}

.mekan-sidebar-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: var(--color-secondary-1);
}

.mekan-sidebar-item {
    display: flex;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.mekan-sidebar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.mekan-sidebar-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mekan-sidebar-item:hover .mekan-sidebar-img {
    transform: scale(1.05);
}

.mekan-sidebar-content {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.mekan-sidebar-content h5 {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.mekan-sidebar-item:hover .mekan-sidebar-content h5 {
    color: var(--color-secondary-1);
}

/* Haber Sidebar Stilleri */
.haber-sidebar {
    padding-left: 20px;
}

.haber-sidebar-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.haber-sidebar-title {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-secondary-2);
}

.haber-sidebar-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s ease;
}

.haber-sidebar-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.haber-sidebar-item:hover {
    transform: translateX(5px);
}

.haber-sidebar-img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.haber-sidebar-content h5 {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

/* Quick Links in Sidebar */
.haber-sidebar-card .list-unstyled a {
    color: #333;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.haber-sidebar-card .list-unstyled a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.haber-sidebar-card .text-primary {
    color: var(--color-primary) !important;
}

.etkinlikler-swiper .swiper-pagination {
    position: relative;
    margin: 30px 0 0;
    padding: 15px 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.etkinlikler-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.etkinlikler-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

/* ======= Mekanlar Section ======= */
.mekanlar {
    padding: 30px 0;
    background-color: #f9f9f9;
}

.mekanlar-container {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

/* Haberler Grid Layout */
.haber-liste {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 20px 0;
}

/* Responsive Design for Haberler */
@media (max-width: 1200px) {
    .haber-liste {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .haber-liste {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .haber-liste {
        grid-template-columns: 1fr;
    }

    .haber-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

.haber-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.haber-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.haber-item:hover .haber-image img {
    transform: scale(1.05);
}

.haber-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.haber-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
    line-height: 1.4;
}

.haber-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.haber-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.haber-tarih-alt {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
}

.haber-tarih-alt i {
    color: var(--color-secondary-1);
    font-size: 16px;
}

.haber-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    text-decoration: none;
}

.haber-link i {
    margin-left: 5px;
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.haber-link:hover {
    color: #fff;
    background-color: var(--color-primary);
    text-decoration: none;
}

.haber-link:hover i {
    transform: translateX(3px);
    color: #fff;
}

.haberler-container {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

/* Etkinlikler Grid Layout */
.etkinlik-liste {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Responsive Design for Etkinlikler */
@media (max-width: 1200px) {
    .etkinlik-liste {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .etkinlik-liste {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .etkinlik-liste {
        grid-template-columns: 1fr;
    }

    .etkinlik-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

.etkinlik-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.etkinlik-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Etkinlik image container */
.etkinlik-image {
    position: relative;
    overflow: hidden;
    height: 190px;
    width: 100%;
    background: #f8f9fa;
}

/* Etkinlik image */
.etkinlik-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.etkinlik-item:hover .etkinlik-image img {
    transform: scale(1.05);
}

.etkinlik-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.etkinlik-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
    line-height: 1.4;
}

.etkinlik-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.etkinlik-tarih {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}

.etkinlik-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.etkinlik-tarih-alt {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
}

.etkinlik-tarih-alt i {
    color: var(--color-primary);
    font-size: 16px;
    margin-right: 5px;
}

.etkinlik-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    text-decoration: none;
}

.etkinlik-link i {
    margin-left: 5px;
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.etkinlik-link:hover {
    color: #fff;
    background-color: var(--color-primary);
    text-decoration: none;
}

.etkinlik-link:hover i {
    transform: translateX(3px);
    color: #fff;
}

.etkinlikler-container {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

/* Mekanlar Grid Layout */
.mekan-liste {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mekan-liste {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .mekan-liste {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mekan-liste {
        grid-template-columns: 1fr;
    }

    .mekan-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

.mekan-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.mekan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.mekan-item:hover .mekan-image img {
    transform: scale(1.05);
}

.mekan-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mekan-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.mekan-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.mekan-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 6px 12px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    text-decoration: none;
}

.mekan-link i {
    margin-left: 5px;
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.mekan-link:hover {
    color: #fff;
    background-color: var(--color-primary);
    text-decoration: none;
}

.mekan-link:hover i {
    transform: translateX(3px);
    color: #fff;
}

.tum-mekanlar-btn {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    text-decoration: none;
    background-color: #fff;
}

.tum-mekanlar-btn i {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.tum-mekanlar-btn:hover {
    color: #fff;
    background-color: var(--color-primary);
    text-decoration: none;
}

/* Mekanlar Swiper Customization */
.mekanlar-swiper {
    padding: 10px;
    margin: -10px;
}

.mekanlar-swiper .swiper-slide {
    height: auto;
    padding: 10px;
}

.mekanlar-swiper .swiper-pagination {
    position: relative;
    margin: 30px 0 0;
    padding: 15px 0 5px;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mekanlar-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.mekanlar-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

/* News Swiper Customization */
.news-swiper {
    padding: 10px;
    margin: -10px;
}

.news-swiper .swiper-slide {
    height: auto;
    padding: 10px;
}

.news-swiper .swiper-pagination {
    position: relative;
    margin: 30px 0 0;
    padding: 15px 0 5px;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.news-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.news-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

/* Mobile Styles for News Section */
@media (max-width: 991px) {
    .events {
        padding: 20px 0;
    }

    .video-container {
        margin: 20px 0 0;
    }

    .event-item {
        padding: 15px;
        margin: 0 -15px;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #eee;
    }

    .event-image {
        width: 100% !important;
        height: 200px !important;
        margin: 0 0 15px 0 !important;
        border-radius: 0 !important;
    }

    .event-content {
        padding: 0 15px;
    }

    .events-container {
        padding: 0 !important;
        box-shadow: none !important;
    }

    .section-title {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        padding: 0 1px;
    }

    .section-title h2 {
        font-size: 22px !important;
    }

    .section-title p {
        font-size: 14px;
    }

    .section-title .description p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

/*--------------------------------------------------------------
# Sayfa BaÅŸlÄ±k
--------------------------------------------------------------*/
.sayfa-baslik {
    position: relative;
    padding: 50px 0 50px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 100%),
        url('../images/header-bg.png') no-repeat center center/cover;
    background-attachment: local;
    color: #000;
    overflow: hidden;
}

.sayfa-baslik2 {
    position: relative;
    padding: 50px 0 50px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 100%),
        url('../images/header-bg2.jpg') no-repeat center center/cover;
    background-attachment: local;
    color: #000;
    overflow: hidden;
}


.sayfa-baslik-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0;
    padding: 0 15px;
}

.sayfa-baslik .sayfa-breadcrumb {
    margin-bottom: 14px;
}

.sayfa-baslik .sayfa-breadcrumb .breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    font-size: 0.9rem;
}

.sayfa-baslik .sayfa-breadcrumb .breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.sayfa-baslik .sayfa-breadcrumb .breadcrumb-item a:hover,
.sayfa-baslik .sayfa-breadcrumb .breadcrumb-item a:focus {
    text-decoration: underline;
}

.sayfa-baslik .sayfa-breadcrumb .breadcrumb-item.active {
    color: #333;
}

.sayfa-baslik2 .sayfa-breadcrumb {
    margin-bottom: 14px;
}

.sayfa-baslik2 .sayfa-breadcrumb .breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    font-size: 0.9rem;
}

.sayfa-baslik2 .sayfa-breadcrumb .breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.sayfa-baslik2 .sayfa-breadcrumb .breadcrumb-item a:hover,
.sayfa-baslik2 .sayfa-breadcrumb .breadcrumb-item a:focus {
    text-decoration: underline;
}

.sayfa-baslik2 .sayfa-breadcrumb .breadcrumb-item.active {
    color: #333;
}

.sayfa-baslik h1 {
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    color: #000;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 15px;
}

.sayfa-baslik h1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
}

.sayfa-baslik2 h1 {
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    color: #000;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 15px;
}

.sayfa-baslik2 h1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
}

/*--------------------------------------------------------------
# Sayfa Ä°Ã§erik
--------------------------------------------------------------*/
/* Organizational Chart Styles */
.org-chart {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.org-level {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

/* Level 1 (MÃ¼dÃ¼r) */
.level-1 {
    margin-bottom: 60px;
}

/* Level 2 (MÃ¼dÃ¼r YardÄ±mcÄ±larÄ±) */
.level-2 {
    margin-bottom: 60px;
    justify-content: center;
    gap: 60px;
}

/* Level 3 (Åefler) */
.level-3 {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.org-member {
    position: relative;
    margin: 10px;
    text-align: center;
}

.member-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 0;
    list-style: none;
    gap: 8px;
}

.pagination li {
    display: inline-block;
    margin: 0 2px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--color-primary);
    background-color: #fff;
    border: 1px solid var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 46, 113, 0.2);
}

.pagination .active {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.pagination .disabled {
    color: #ccc;
    border-color: #eee;
    pointer-events: none;
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

/* Responsive Pagination */
@media (max-width: 576px) {
    .pagination {
        flex-wrap: wrap;
    }

    .pagination li {
        margin: 2px;
    }

    .pagination a,
    .pagination span {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .pagination .prev,
    .pagination .next {
        padding: 0 12px;
    }
}

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

.member-photo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-primary);
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.member-card:hover .member-photo img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-card:hover .member-overlay {
    opacity: 1;
}

.member-detail {
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.member-detail:hover {
    transform: scale(1.2);
}

.member-info {
    padding: 15px;
    text-align: center;
}

.member-info h4 {
    margin: 0 0 5px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.member-info .position {
    color: var(--color-primary);
    font-size: 14px;
    margin: 0 0 10px;
    font-weight: 500;
}

.member-info .contact {
    font-size: 12px;
    color: #666;
    margin: 10px 0 0;
    text-align: left;
    line-height: 1.5;
}

.member-info .contact i {
    width: 16px;
    text-align: center;
    margin-right: 5px;
    color: var(--color-primary);
}

/* Connector lines */
.org-level:not(:first-child)::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    width: 2px;
    height: 30px;
    background: #ddd;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .level-2 {
        gap: 30px;
    }

    .level-3 {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .level-2,
    .level-3 {
        gap: 20px;
    }

    .org-level:not(:first-child)::before {
        display: none;
    }

    .member-card {
        max-width: 220px;
    }
}

.sayfa-icerik {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.sayfa-icerik-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .sayfa-baslik {
        padding: 100px 0 60px;
    }

    .sayfa-baslik h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .sayfa-baslik {
        padding: 80px 0 50px;
    }

    .sayfa-baslik h1 {
        font-size: 32px;
    }

    .sayfa-icerik-container {
        padding: 30px 20px;
    }
}

/*--------------------------------------------------------------
# Go to Top Button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background: var(--color-secondary-1);
    color: white;
    transform: translateY(-3px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--color-primary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'DM Sans', sans-serif;
    color: #fff;
}

.footer h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
    width: 100%;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary-1) 0%, rgba(156, 21, 34, 0) 100%);
}

/* Logo and KVKK Section */
.footer-logo img {
    max-width: 385px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.kvkk-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.kvkk-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.kvkk-link:hover {
    color: #fff;
    border-bottom-color: #fff;
    text-decoration: none;
}

/* Social Media Icons */
.social-links {
    margin-bottom: 0px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 20%;
    margin-right: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #fff;
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Visit Istanbul Logo */
.visit-istanbul img {
    max-width: 160px;
    height: auto;
    transition: transform 0.3s ease;
}

.visit-istanbul img:hover {
    transform: scale(1.05);
}

/* 153 Ã‡Ã¶zÃ¼m Merkezi */
.cozum-merkezi img {
    max-width: 120px;
    height: auto;
    margin: 10px 0;
    transition: transform 0.3s ease;
}

.cozum-merkezi img:hover {
    transform: scale(1.05);
}

/* Ä°stanbul Senin */
.istanbul-senin img {
    max-width: 140px;
    height: auto;
    margin: 10px 0;
    transition: transform 0.3s ease;
}

.istanbul-senin img:hover {
    transform: scale(1.05);
}

.copyright-bar {
    background-color: var(--color-copyrightbar);
    padding: 15px 0;
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer {
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links .d-flex {
        justify-content: center;
    }

    .footer>.container>.row>div {
        margin-bottom: 30px;
    }
}

/* Haritalar SayfasÄ± Stilleri */
.haritalar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0;
}

.harita-karti {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.harita-karti:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.harita-resim {
    height: 100%;
    padding: 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin: 10px;
    box-sizing: border-box;
}

.harita-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.harita-detay {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.harita-detay h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.harita-detay p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.indir-butonu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.indir-butonu:hover {
    background: var(--color-secondary-1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.indir-butonu i {
    margin-right: 8px;
}

/* Responsive TasarÄ±m */
@media (max-width: 768px) {
    .harita-karti {
        margin-bottom: 20px;
    }

    .harita-resim {
        height: 200px;
        margin: 10px;
    }
}

/* Haritalar Grid Layout */
.haritalar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.harita-karti {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0;
}

.harita-karti:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.harita-resim {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 10px;
}

.harita-resim img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.harita-karti:hover .harita-resim img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 991px) {
    .haritalar-grid {
        grid-template-columns: 1fr;
    }

    .harita-karti {
        max-width: 100%;
    }
}

/* BroÅŸÃ¼rler Grid Layout */
/* BroÅŸÃ¼rler Grid Layout - Mirrored from Haritalar */
.brosurler-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.brosur-karti {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brosur-karti:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.brosur-resim {
    height: 200px;
    padding: 10px;
    margin: 10px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.brosur-resim img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 2px;
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 5px;
}

.brosur-karti:hover .brosur-resim img {
    transform: scale(1.05);
}

.brosur-detay {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.brosur-detay h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.brosur-detay p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for BroÅŸÃ¼rler */
@media (max-width: 991px) {
    .brosurler-grid {
        grid-template-columns: 1fr;
    }

    .brosur-karti {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .brosur-resim {
        height: 200px;
        margin: 10px;
    }
}


/* Filtre BÃ¶lÃ¼mÃ¼ Stilleri */
.sayfa-icerik-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.haber-detay {
    flex: 1;
    min-width: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.haber-sidebar {
    width: 350px;
}

.haber-sidebar-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.haber-sidebar-title {
    color: #1c4586;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #9c1522;
    position: relative;
}

.haber-sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #1c4586;
}

.haber-sidebar-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.haber-sidebar-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.haber-sidebar-item:hover {
    transform: translateX(5px);
}

.haber-sidebar-img {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 15px;
}

.haber-sidebar-content {
    flex: 1;
}

.haber-sidebar-content h5 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.3;
}

.haber-sidebar-date {
    font-size: 0.8rem;
    color: #6c757d;
}

@media (max-width: 991.98px) {
    .haber-sidebar {
        width: 100%;
        margin-top: 30px;
    }
}

/* Filtre BÃ¶lÃ¼mÃ¼ Stilleri */
.filtre-bolumu {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 25px 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Filtre Formu Stilleri */
.filtre-formu .filtre-grup {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filtre-formu .form-label {
    color: var(--color-primary);
    margin: 0;
    font-size: 18px;
    width: 30px;
    text-align: center;
}

.filtre-formu .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 15px;
    height: 40px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: none;
    flex: 1;
}

.filtre-formu .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 46, 113, 0.15);
}

.filtre-formu .form-select option {
    padding: 8px 15px;
}

.filtre-uygula-buton {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 20px;
    font-weight: 500;
    font-size: 14px;
    height: 40px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filtre-uygula-buton:hover {
    background-color: var(--color-secondary-1);
    color: #fff;
}

.filtre-uygula-buton i {
    font-size: 16px;
    margin: 0;
}

/* Responsive DÃ¼zenlemeler */
@media (max-width: 768px) {
    .filtre-bolumu {
        padding: 15px;
    }

    .filtre-formu .form-select {
        height: 38px;
        font-size: 13px;
        padding: 6px 12px;
    }

    .filtre-uygula-buton {
        height: 38px;
        padding: 0 15px;
        font-size: 13px;
    }

    .filtre-formu .form-label {
        font-size: 16px;
        width: 25px;
    }
}


/* Contact Section Styles */
.sayfa-icerik-container {
    width: 100%;
    max-width: 100%;
    padding: 15px 15px 15px 15px;
    margin: 0 auto;
}

.contact-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.contact-section .row {
    margin-right: 0;
    margin-left: 0;
}

.contact-section [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.section-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-secondary-1);
}

.contact-info {
    background: var(--color-primary);
    padding: 0rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-page {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-secondary-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.contact-text p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

.map-container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-left: 0;
    margin-right: 0;
}

.map-iframe {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.solution-center {
    background: linear-gradient(135deg, var(--color-primary), #1a3a7a);
    border-radius: 8px;
    padding: 2rem;
    color: white;
    margin-top: 1rem;
}

.solution-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.solution-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    color: white;
}

.solution-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
}

.solution-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.solution-button .btn {
    background-color: white;
    color: var(--color-primary);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.solution-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .contact-item {
        margin-bottom: 1.25rem;
    }

    .solution-content {
        flex-direction: column;
        text-align: center;
    }

    .solution-icon {
        margin: 0 0 1rem 0;
    }

    .solution-button {
        margin-top: 1.5rem;
        width: 100%;
    }

    .solution-button .btn {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# AÃ§Ä±k Alan Egzersizleri
--------------------------------------------------------------*/
.egzersiz-hero {
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.egzersiz-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.egzersiz-hero .lead {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #fff;
}

/* Egzersiz SayfasÄ± Ã–zel Stilleri */
.filter-bar.animate__fadeInUp {
    animation-duration: 0.8s;
}

.egzersiz-search-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.egzersiz-search-wrapper label {
    margin-right: 10px;
    font-weight: 600;
}

.egzersiz-search-wrapper input {
    max-width: 200px;
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 5px 10px;
}

.egzersiz-tablo-wrapper {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

.egzersiz-tablo {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.egzersiz-tablo th {
    background-color: #dbe4f0;
    color: #333;
    font-weight: 700;
    text-align: left;
    padding: 10px 12px;
    border: 1px solid #c8d2df;
}

.egzersiz-tablo td {
    padding: 8px 12px;
    border: 1px solid #eee;
    color: #555;
}

.egzersiz-tablo th:nth-child(n+3),
.egzersiz-tablo td:nth-child(n+3) {
    font-size: 12px;
    width: 95px;
    min-width: 95px;
    text-align: center;
    padding: 8px 4px;
}

.egzersiz-tablo tr:nth-child(even) {
    background-color: #f9f9f9;
}

.egzersiz-tablo tr:hover {
    background-color: #f1f5f9;
}

.egzersiz-tablo .time-slot {
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .egzersiz-hero h1 {
        font-size: 1.8rem;
    }

    .egzersiz-search-wrapper {
        justify-content: flex-start;
        margin-top: 15px;
    }
}