.page-wrap {
    padding: 1.5rem 0 0 0;
}

a {
    color: #57DDCD
}

header .top-bar {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

header .top-bar li a {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 400;
    padding: .25rem 1rem;
    text-decoration: none;
    position: relative; /* ::after için gerekli */
    transition: color 0.3s ease;
}

header .top-bar li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #57DDCD; /* Çizgi rengi */
    transition: width 0.3s ease; /* Animasyon */
}

header .top-bar li a:hover {
    color: #57DDCD;
}

header .top-bar li a:hover::after {
    width: 100%; /* Çizgi genişliği */
}

.flag-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.swiper-container {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border-radius: 10px;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

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

  .swiper {
    margin-left: auto;
    margin-right: auto;
  }

  :root {
    --swiper-pagination-color: #57DDCD;
    --swiper-navigation-color: #fff;
    --swiper-navigation-size: 30px !important;
  }

    /* Swiper slide içeriği */
  .slide-content {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      color: #fff;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
      text-align: center;
  }
  
  .slide-content h2 {
      font-size: 24px;
      margin: 0 0 10px;
      font-weight: 600;
  }
  
  .slide-content p {
      font-size: 16px;
      margin: 0 0 10px 0;
      font-weight: 400;
  }
  
  /* Mobil cihazlar için aspect-ratio */
  @media (max-width: 768px) {
      .swiper-container {
          aspect-ratio: 16 / 9; /* Mobil cihazlar için daha yüksek bir oran */
      }
  }

.travel-section h2 {
      text-align: center;
      font-size: 2rem;
}

.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Kartın tamamının tıklanabilir olması için */
}

.btn-primary {
    background-color: #57DDCD;
    border-color: #57DDCD;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}

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

.section-separator {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}


.row {
    display: flex;
    flex-wrap: wrap;
}

h2#sports, h2#cultural, h2#business, h2#health {
    text-align: center;
}

.site-footer {
    background-color: #222; /* Koyu renk */
    color: #fff; /* Yazı rengi */
    padding: 40px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social li {
    display: inline-block;
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #57DDCD; /* Hover rengi */
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 0.8rem;
    color: #aaa;
}

.footer-logo-img {
    display: block;
    margin: 0 auto 10px; /* Ortalar ve alttan boşluk bırakır */
    max-width: 200px; /* Logonun maksimum genişliği */
    height: auto; /* Oranını korur */
}

/* Ana Menü Stilleri */
.top-bar {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 15px 0;
}

.top-bar > li {
    position: relative;
    margin: 0 10px;
}

.top-bar > li > a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* Ana Menü Alt Çizgi */
.top-bar > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #57DDCD;
    transition: width 0.3s ease;
}

.top-bar > li > a:hover {
    color: #57DDCD;
}

.top-bar > li > a:hover::after {
    width: 100%;
}

/* Mega Menü Stilleri */
.mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 1000px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    z-index: 1000;
    margin-top: 15px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.mega-menu-wrapper::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.mega-menu-item:hover .mega-menu-wrapper {
    visibility: visible;
    opacity: 1;
}

.mega-menu-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.mega-menu-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-submenu li {
    margin: 8px 0;
}

.mega-menu-submenu a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.mega-menu-submenu a:hover {
    color: #57DDCD;
}

/* Alt menüsü olan öğeler için cursor değişikliği */
.menu-item-has-children > a {
    cursor: pointer;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .swiper-container {
        aspect-ratio: 16 / 9; /* Mobil cihazlar için daha yüksek bir oran */
    }

    /* Ana menü mobil düzeni */
    .top-bar {
        flex-direction: column;
        padding: 0;
    }

    .top-bar > li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .top-bar > li > a {
        padding: 15px;
        display: block;
        width: 100%;
    }

    /* Mega menü mobil düzeni */
    .mega-menu-wrapper {
        position: static;
        min-width: 100%;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        border-radius: 0;
        background: #f8f8f8;
        display: none; /* Varsayılan olarak gizli */
        visibility: visible; /* visibility yerine display kullanacağız */
        opacity: 1;
    }

    .mega-menu-item:hover .mega-menu-wrapper,
    .mega-menu-item.active .mega-menu-wrapper {
        display: block; /* Hover veya active durumunda göster */
    }

    .mega-menu-wrapper .row {
        margin: 0;
    }

    .mega-menu-wrapper .row > div {
        padding: 0;
        margin-bottom: 0; /* Alt boşluğu kaldır */
    }

    .mega-menu-title {
        padding: 10px 15px;
        margin: 0;
        border-bottom: 1px solid #eee;
        background: #f0f0f0;
    }

    .mega-menu-submenu {
        padding: 0;
        margin: 0;
        background: #fff;
    }

    .mega-menu-submenu li:last-child {
        border-bottom: none; /* Son öğenin alt çizgisini kaldır */
    }

    /* Dikey menü düzeni */
    .top-bar > li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .top-bar > li:last-child {
        border-bottom: none;
    }

    .top-bar > li > a {
        padding: 15px;
        border-bottom: none;
    }

    /* Hamburger menü düzeni */
    .navbar-collapse {
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1000;
        border-top: 1px solid #eee;
    }

    /* Alt çizgi efektini mobilde kaldır */
    .top-bar > li > a::after {
        display: none;
    }

    /* Mobil görünümde alt menüsü olan öğeler için ok ikon ekleyelim */
    .menu-item-has-children > a::after {
        content: '\25BC'; /* Aşağı ok karakteri */
        font-size: 12px;
        margin-left: 8px;
    }

    .menu-item-has-children.active > a::after {
        content: '\25B2'; /* Yukarı ok karakteri */
    }
}

@media (max-width: 768px) {
  .expanding-slider-container {
    display: flex; /* Flexbox kullanarak hizalama */
    overflow-x: auto; /* Yatay kaydırmayı etkinleştir */
    white-space: nowrap; /* Öğelerin alt satıra kaymasını engelle */
    padding-bottom: 15px; /* Kaydırma çubuğu için boşluk */
    -webkit-overflow-scrolling: touch; /* iOS için akıcı kaydırma */
  }

  .expanding-slider-container .panel {
    flex: 0 0 auto; /* Öğelerin küçülmemesini ve orijinal boyutunu korumasını sağla */
    width: 70%; /* Mobil ekranda panel genişliği (ayarlayabilirsiniz) */
    margin-right: 10px; /* Paneller arasına boşluk ekle */
    display: inline-block; /* Yan yana dizilmelerini sağla */
    vertical-align: top; /* Dikey hizalamayı üste ayarla */
    height: 150px; /* Mobil için sabit bir yükseklik (ayarlayabilirsiniz) */
    background-size: cover; /* Arka plan resmini kapla */
    background-position: center; /* Arka plan resmini ortala */
    position: relative; /* İçerik konumlandırması için */
  }

  .expanding-slider-container .panel:last-child {
    margin-right: 0; /* Son panelin sağ boşluğunu kaldır */
  }

  .expanding-slider-container .panel h3 {
    /* Mobil için başlık stillerini ayarlayabilirsiniz */
    font-size: 1.2em;
    position: absolute; /* Konumlandırma */
    bottom: 10px; /* Alttan boşluk */
    left: 10px; /* Soldan boşluk */
    color: white; /* Okunabilirlik için */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7); /* Gölge ekle */
  }

}

/* Tablet için ek düzenlemeler */
@media (min-width: 769px) and (max-width: 991px) {
    .mega-menu-wrapper {
        min-width: 500px;
    }
}

.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03); /* Çok daha açık gri, minimal çizgi */
}

/* Navbar Scroll Stilleri */
@media (min-width: 769px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        background: rgba(255, 255, 255, 0.98); /* Hafif transparan beyaz */
        transition: all 0.3s ease;
    }

    /* Navbar altındaki içeriğe padding ekle */
    body {
        padding-top: 80px; /* Navbar'ın yüksekliğine göre ayarlayın */
    }
}

/* Mobil görünümde fixed pozisyonu kaldır */
@media (max-width: 768px) {
    .navbar {
        position: relative;
    }

    body {
        padding-top: 0;
    }
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.card-text-content {
    flex-grow: 1;
    text-align: left;
}



.card-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    text-align: left;
    flex-grow: 1;
}

.card-button {
    margin-top: auto;
    text-align: left;
}

.card-button .btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #57DDCD;
    border: 1px solid #57DDCD;
    background: transparent;
    transition: all 0.3s ease;
}

.card-button .btn:hover {
    background-color: #57DDCD;
    color: #fff;
}

/* Hover efekti */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 768px) {
    .card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .card-button {
        width: 100%;
    }

    .card-button .btn {
        width: 100%;
        text-align: center;
    }
}

/* Business Detail Page Styles */
.business-detail-page {
    margin-top: 20px; /* Navigasyon ile hero arasındaki boşluğu azalttık */
}

.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    max-width: 1400px; /* Container genişliği */
    height: 100%;
    margin: 0 auto; /* Merkeze hizalama */
    padding: 0 15px; /* Container padding */
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px; /* Köşeleri yumuşatma */
}

.content-section {
    padding: 50px 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 50px 0;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Form Styles */
.wpcf7-form {
    display: grid;
    gap: 20px;
}

.wpcf7-form label {
    font-weight: 500;
    color: #333;
    display: block;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
}

.wpcf7-form textarea {
    height: 150px;
    resize: vertical;
}

.wpcf7-submit {
    background-color: #57DDCD;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.wpcf7-submit:hover {
    background-color: #40b0a3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        height: 300px;
        margin-bottom: 30px;
    }

    .business-detail-page {
        margin-top: 20px;
    }

    .page-title {
        font-size: 2rem;
    }

    .content-section {
        padding: 30px 0;
    }
    
    .contact-form-section {
        padding: 30px 15px;
    }
}

/* Activities Detail Page Styles */
.activities-detail-page {
    margin-top: 20px;
}

.activities-detail-page .hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

.activities-detail-page .hero-image {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.activities-detail-page .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .activities-detail-page {
        margin-top: 20px;
    }

    .activities-detail-page .hero-section {
        height: 300px;
        margin-bottom: 30px;
    }
}

/* About Us Page Styles */
.about-us-page {
    margin-top: 20px;
}

.about-us-page .hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

.about-us-page .hero-image {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.about-us-page .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-us-page .content-section {
    padding: 50px 0;
    max-width: 100%; /* Container genişliğinde olmasını sağlar */
}

.about-us-page .page-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.about-us-page .page-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c2c2c;
}

@media (max-width: 768px) {
    .about-us-page {
        margin-top: 20px;
    }

    .about-us-page .hero-section {
        height: 300px;
        margin-bottom: 30px;
    }

    .about-us-page .page-title {
        font-size: 2rem;
    }

    .about-us-page .content-section {
        padding: 30px 15px;
    }
}

/* Upcoming Events Section Styles */
.upcoming-events-section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.event-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    overflow: hidden; /* Görselin kartın dışına taşmasını engeller */
}

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

.event-date {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.event-date .date {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #57DDCD;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
}

.event-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.event-location,
.event-time {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.event-location i,
.event-time i {
    margin-right: 8px;
    color: #57DDCD;
    font-size: 1.2rem;
}

.event-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.event-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px;
}

.event-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.event-info {
    flex: 1;
    padding-right: 20px;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.event-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.event-datetime {
    text-align: right;
    min-width: 100px;
}

.event-date {
    color: #57DDCD;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.event-time {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-location i,
.event-time i {
    margin-right: 8px;
    color: #57DDCD;
    font-size: 1.2rem;
}

.event-card .btn {
    width: 100%;
    margin-top: 15px;
    align-self: flex-end;
    background-color: transparent;
    color: #57DDCD;
    border: 1px solid #57DDCD;
    padding: 8px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.event-card .btn:hover {
    background-color: #57DDCD;
    color: #fff;
}

@media (max-width: 576px) {
    .event-content {
        flex-direction: column;
    }

    .event-info {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .event-datetime {
        text-align: left;
    }

    .event-time {
        justify-content: flex-start;
    }

    .event-card .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .upcoming-events-section {
        padding: 30px 0;
        margin: 30px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .event-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-info {
        padding-right: 0;
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }

    .event-title {
        text-align: center;
    }

    .event-location {
        justify-content: center;
    }

    .event-datetime {
        text-align: center;
        width: 100%;
    }

    .event-date {
        text-align: center;
    }

    .event-time {
        justify-content: center;
    }

    .event-card .btn {
        width: 100%;
        text-align: center;
    }

    .event-location i,
    .event-time i {
        margin-right: 8px;
    }
}

/* Expanding Slider Styles */
.expanding-slider-container {
    display: flex;
    width: 100%;
    height: 70vh;
    /*Adjustheightasneeded*/overflow: hidden;
    margin-bottom: 30px;
    border-radius: 8px;
}

.panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    color: #fff;
    cursor: pointer;
    flex: 1; /* Initial equal width */
    margin: 0;
    position: relative;
    transition: flex 0.7s ease-in-out; /* Smooth transition for flex */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-decoration: none;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.panel h3 {
    font-size: 24px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
    opacity: 1; /* Always visible */
    transition: none; /* No transition needed if always visible */
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

/* Expand panel on hover */
.panel:hover {
    flex: 5; /* Expanded width on hover */
}

/* Remove active class styles as hover is used now */
/*
.panel.active {
    flex: 5;
}

.panel.active h3 {
    opacity: 1;
}
*/

/* Specific background images for each panel */
.travel-panel {
    background-image: url('../images/travel.jpg'); /* Adjust path if needed */
}

.business-panel {
    background-image: url('../images/business.jpg'); /* Adjust path if needed */
}

.sports-panel {
    background-image: url('../images/sports.jpg'); /* Adjust path if needed */
}

.health-panel {
    background-image: url('../images/health.jpg'); /* Adjust path if needed */
}

.cultural-panel {
    background-image: url('../images/cultural.jpg'); /* Adjust path if needed */
}

/* Optional: Add a subtle overlay */
.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.panel:hover::before {
    background-color: rgba(0, 0, 0, 0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .expanding-slider-container {
        height: 50vh; /* Adjust height for smaller screens */
    }

    .panel h3 {
        font-size: 18px;
        /* Opacity is already 1 */
    }
}

/* --- ÖNCEKİ MOBİL STİLLERİ SİLİN/YORUMLAYIN --- */
/* @media (max-width: ...) { .expanding-slider-container { ... } } */
/* @media (max-width: ...) { .panel { ... } } */
/* @media (max-width: ...) { .panel h3 { ... } } */


/* --- YENİ MOBİL SWIPER STİLLERİ --- */
@media (max-width: 767.98px) {

    /* Masaüstü slider'ı KESİN GİZLE */
    .expanding-slider-container {
        display: none !important;
    }

    /* Mobil Swiper Konteyneri */
    .mobile-swiper {
        display: block !important; /* Görünürlüğü garantile */
        width: 100%;
        max-width: 100%; /* Taşmayı önle */
        height: 250px; /* İstediğiniz yüksekliği ayarlayın */
        margin: 20px auto; /* Üst/alt boşluk ekleyebilirsiniz */
        overflow: hidden; /* Swiper için gerekli */
        position: relative;
        z-index: 1;
        border-radius: 8px; /* İsteğe bağlı: Köşeleri yuvarlat */
    }

    /* Swiper Wrapper */
    .mobile-swiper .swiper-wrapper {
        display: flex; /* Swiper bunu zaten yapar ama garanti olsun */
        height: 100%;
    }

    /* Swiper Slide Temel Stilleri */
    .mobile-swiper .swiper-slide {
        width: 100%; /* slidesPerView: 1 için %100 olmalı */
        height: 100%;
        flex-shrink: 0; /* Küçülmeyi engelle */
        background-size: cover;
        background-position: center;
        position: relative; /* İçerik konumlandırma için */

        /* İçeriği (link/başlık) ortalamak/konumlandırmak için */
        display: flex;
        align-items: flex-end; /* Başlığı alta yasla */
        justify-content: center; /* Başlığı ortala */
        text-align: center;
    }

    /* Slide İçindeki Link */
    .mobile-swiper .swiper-slide a {
        display: block; /* Tüm slide alanını kapla */
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: inherit; /* Üst elemandan renk al */
        padding: 15px; /* İç boşluk */
        box-sizing: border-box; /* Padding'i dahil et */

        /* Başlığın konumlanması için */
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    /* Slide Başlığı */
    .mobile-swiper .swiper-slide h3 {
        color: white;
        font-size: 1.4em; /* Boyutu ayarlayın */
        font-weight: 600;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        margin: 0;
        padding: 8px 15px;
        background-color: rgba(0, 0, 0, 0.55); /* Okunabilirlik için arka plan */
        border-radius: 5px;
        display: inline-block; /* Arka planın sadece metni sarması için */
    }

    /* Slide Arka Plan Resimleri (Yeni sınıflara göre) */
    .mobile-swiper .travel-slide { background-image: url('../images/travel.jpg'); } /* Resim yollarını kontrol edin */
    .mobile-swiper .business-slide { background-image: url('../images/business.jpg'); }
    .mobile-swiper .health-slide { background-image: url('../images/health.jpg'); }
    .mobile-swiper .sports-slide { background-image: url('../images/sports.jpg'); }
    .mobile-swiper .cultural-slide { background-image: url('../images/cultural.jpg'); }

    /* Pagination Stilleri */
    .mobile-swiper .swiper-pagination {
        position: absolute; /* Konteynerin altına konumlandır */
        bottom: 10px;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .mobile-swiper .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.6); /* Beyaz, yarı saydam */
        opacity: 1; /* Opaklığı buradan yönet */
        width: 8px;
        height: 8px;
        margin: 0 5px; /* Noktalar arası boşluk */
        transition: background-color 0.3s ease; /* Geçiş efekti */
    }
    .mobile-swiper .swiper-pagination-bullet-active {
        background: #ffffff; /* Aktif nokta tam beyaz */
    }
}
/* --- MOBİL SWIPER STİLLERİ BİTİŞİ --- */


/* --- MASAÜSTÜ GÖRÜNÜM AYARLARI --- */
@media (min-width: 768px) {
    /* Mobil Swiper'ı KESİN GİZLE */
    .mobile-swiper {
        display: none !important;
    }
    /* Masaüstü slider'ı GÖSTER (Bootstrap zaten yapmalı ama garanti) */
    .expanding-slider-container {
        display: flex !important;
    }
}
/* --- MASAÜSTÜ GÖRÜNÜM AYARLARI BİTİŞİ --- */

/* ... Diğer CSS kurallarınız ... */

/* wp-content/themes/temanizin-adi/css/main.css veya style.css */

.tour-detail .entry-title {
    /* Başlık stilleri */
    margin-bottom: 20px;
    font-size: 2.5em;
}

.tour-detail .entry-content h2 {
    /* Alan başlıkları için stiller */
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.tour-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tour-gallery img {
    max-width: 150px; /* Örnek boyut */
    height: auto;
    border: 1px solid #ddd;
    padding: 3px;
}

.tour-video-gallery .video-item {
    margin-bottom: 15px;
}

.tour-video-gallery .video-item iframe {
    max-width: 100%;
    height: auto;
    min-height: 300px; /* Veya istediğiniz bir yükseklik */
}


.tour-highlights ul,
.tour-included-services ul,
.tour-excluded-services ul {
    list-style: disc;
    margin-left: 20px;
}

.acf-map {
    width: 100%;
    height: 400px; /* Bu değeri !important ile zorlamayı deneyebilirsiniz, ama genellikle iyi bir pratik değildir */
    border: 1px solid #ccc; /* Sınırın görünüp görünmediğini kontrol edin */
    position: relative; /* Bazen marker konumlandırması için gerekebilir */
}


/* temanizin-adi/css/main.css veya style.css */
.tour-image-swiper .swiper-slide img {
    display: block;
    width: 100%;
    /* height: auto; */ /* Yüksekliği Swiper'a bırakmak veya sabit bir yükseklik vermek daha iyi olabilir */
    height: 450px; /* Örnek bir sabit yükseklik, isteğe bağlı */
    object-fit: cover;
}

.booking-form-placeholder {
    /* Rezervasyon alanı için stiller */
    background-color: #f8f9fa; /* Hafif bir arka plan rengi */
}

/* Eğer sticky-top için navbar gibi bir üst elementten dolayı boşluk gerekiyorsa */
.tour-booking-column .sticky-top {
    top: 100px; /* Navbar'ınızın yüksekliğine göre ayarlayın, eğer fixed navbar varsa */
    z-index: 1019; /* Diğer elementlerin altında kalmaması için, Bootstrap'in sticky-top z-index'i 1020'dir */
}

.tour-booking-column .booking-form-container {
    background-color: #f9f9f9; /* Örnek bir arka plan */
}

.tour-booking-column .booking-form-container h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Contact Form 7 Genel Stil İyileştirmeleri */
.wpcf7-form p { /* CF7 varsayılan olarak alanları p içine alır */
    margin-bottom: 15px; /* Tüm form paragrafları için tutarlı bir alt boşluk */
    /* VEYA margin-bottom: 0; eğer hiç boşluk istemiyorsanız */
}

.wpcf7-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.wpcf7-form-control { /* Tüm form kontrol elemanları için genel */
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    height: 40px; /* Örnek sabit yükseklik - SON ÇARE OLARAK DENEYİN */
    line-height: normal; /* Veya belirli bir değer, örn: 1.5 */
}

.wpcf7-form-control:focus {
    border-color: #57DDCD; /* Bootstrap primary rengi veya kendi renginiz */
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(11, 213, 207, 0.25); /* Bootstrap focus gölgesi */
}

.wpcf7-textarea {
    min-height: 100px;
    resize: vertical;
}

.wpcf7-submit { /* Gönder Butonu */
    background-color: #57DDCD; /* Temanızın ana rengi */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
    background-color: #43b9ab; /* Buton hover rengi */
}

/* Hata ve Başarı Mesajları için Stiller (Opsiyonel) */
.wpcf7-response-output {
    margin: 15px 0;
    padding: 10px;
    border-radius: 4px;
}

.wpcf7-validation-errors { /* Hata mesajı kutusu */
    border: 1px solid #dc3545; /* Kırmızı */
    background-color: #f8d7da;
    color: #721c24;
}

.wpcf7-mail-sent-ok { /* Başarılı gönderim mesajı kutusu */
    border: 1px solid #28a745; /* Yeşil */
    background-color: #d4edda;
    color: #155724;
}

span.wpcf7-not-valid-tip { /* Alan bazlı hata mesajları */
    color: #dc3545;
    font-size: 0.9em;
    display: block;
    margin-top: 3px;
}

.wpcf7-form p:last-child, /* Form içindeki son paragraf (genellikle submit butonunu içerir) */
.wpcf7-form > br:last-child { /* Formun sonundaki <br> etiketi (varsa) */
    margin-bottom: 0; /* Son elemanın alt boşluğunu sıfırla */
}

.wpcf7-response-output {
    margin-top: 15px; /* Yanıt çıktısının üst boşluğu */
    margin-bottom: 0; /* Yanıt çıktısının alt boşluğunu azalt veya sıfırla */
    /* Gerekirse padding değerlerini de ayarlayın */
}

/* Veya doğrudan submit butonunu içeren paragrafı hedefleyebilirsiniz */
.wpcf7-form p:has(input.wpcf7-submit) {
    margin-bottom: 0; /* Submit butonunu içeren paragrafın alt boşluğunu sıfırla */
}

.wpcf7-form label + .wpcf7-form-control-wrap {
    margin-top: 5px; /* Label ile input arasında boşluk (eğer label ve input-wrap kardeş ise) */
}

.wpcf7-spinner {
    display: none;
}

/* Temel Grid Yapısı (MDL olmadan) */
.mdl-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px; /* Hücre padding'ini dengelemek için */
    box-sizing: border-box;
}

.mdl-cell {
    box-sizing: border-box;
    margin: 0;
    padding: 0 8px; /* Hücreler arası boşluk */
}

.mdl-cell--6-col {
    width: 50%;
}

/* Daha küçük ekranlar için responsive ayar */
@media (max-width: 839px) { /* MDL tablet breakpoint'ine benzer */
    .mdl-cell--6-col {
        width: 100%;
    }
}

/* Material Design Benzeri Form Stilleri */
.mdl-textfield {
    position: relative;
    padding-top: 20px; /* Etiketin yukarı kayması için alan */
    margin-bottom: 24px;
    width: 100%;
}

.mdl-textfield__input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    font-size: 16px;
    padding: 8px 0;
    background-color: transparent;
    transition: border-bottom-color 0.3s ease, border-bottom-width 0.3s ease;
    display: block; /* Tam genişlik alması için */
    box-sizing: border-box;
}

.mdl-textfield__input:focus {
    outline: none;
    border-bottom: 2px solid #3f51b5; /* Örnek birincil renk */
}

.mdl-textfield__label {
    position: absolute;
    top: 28px; /* Input ile hizalı başlangıç pozisyonu */
    left: 0;
    font-size: 16px;
    color: rgba(0,0,0,0.54); /* İkincil metin rengi */
    pointer-events: none; /* Etiketin input olaylarını engellememesi için */
    transition: all 0.2s ease-in-out;
}

/* Kayan etiket efekti */
.mdl-textfield__input:focus + .mdl-textfield__label,
.mdl-textfield__input:not(:placeholder-shown) + .mdl-textfield__label {
    top: 0; /* Etiketi yukarı kaydır */
    font-size: 12px;
    color: #3f51b5; /* Aktif olduğunda birincil renk */
}

/* Textarea için özel ayar (satır yüksekliği nedeniyle) */
.mdl-textfield textarea.mdl-textfield__input + .mdl-textfield__label {
    top: 28px; /* Textarea için başlangıç pozisyonu */
}

.mdl-textfield textarea.mdl-textfield__input:focus + .mdl-textfield__label,
.mdl-textfield textarea.mdl-textfield__input:not(:placeholder-shown) + .mdl-textfield__label {
    top: 0;
    font-size: 12px;
    color: #3f51b5;
}

/* İletişim Bilgileri Kartı Stilleri */
.contact-info-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 
                0 1px 1px 0 rgba(0,0,0,.14), 
                0 1px 3px 0 rgba(0,0,0,.12);
    margin-bottom: 24px; /* Form ile aynı hizada olması için veya isteğe bağlı */
}

.contact-info-card h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.5em; /* H2 boyutunu ayarlayabilirsiniz */
}

.contact-info-card p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-info-card p strong {
    display: inline-flex; /* İkon ve metni hizalamak için */
    align-items: center;
    margin-bottom: 8px; /* Başlık ve içerik arası boşluk */
}

.contact-info-card p strong .bx {
    font-size: 1.2em; /* İkon boyutunu ayarla */
    margin-right: 8px; /* İkon ve metin arası boşluk */
    color: #3f51b5; /* Örnek birincil renk, form elemanlarıyla uyumlu */
}

.contact-info-card a {
    color: #3f51b5; /* Bağlantı rengi */
    text-decoration: none;
}

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

.contact-info-card .social-icon {
    text-decoration: none;
    margin-right: 10px;
    font-size: 1.8em; /* Sosyal medya ikon boyutu */
    color: rgba(0,0,0,0.54); /* İkincil metin rengi gibi */
    transition: color 0.3s ease;
}

.contact-info-card .social-icon:hover {
    color: #3f51b5; /* Hover durumunda birincil renk */
}

/* Buton Stilleri */
.mdl-button {
    background-color: transparent;
    color: rgb(63,81,181); /* Örnek birincil renk */
    border: none;
    padding: 0 16px;
    min-width: 64px;
    height: 36px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    display: inline-flex; /* İçeriği ortalamak için */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mdl-button:hover {
    background-color: rgba(63,81,181,0.12); /* Hover için hafif arka plan */
}

.mdl-button:active {
    background-color: rgba(63,81,181,0.20); /* Active için biraz daha koyu arka plan */
}

.mdl-button--raised {
    background-color: #e0e0e0; /* Varsayılan raised buton rengi */
    color: rgba(0,0,0,0.87);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}

.mdl-button--raised:hover {
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14), 0 1px 7px 0 rgba(0,0,0,0.12), 0 3px 1px -1px rgba(0,0,0,0.2);
    background-color: #d5d5d5; /* Hover için hafif koyulaşma */
}

.mdl-button--raised:active {
    box-shadow: 0 5px 5px -3px rgba(0,0,0,0.2), 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12);
    background-color: #c8c8c8; /* Active için daha koyu */
}

.mdl-button--accent {
    background-color: #ff4081; /* Örnek accent rengi */
    color: #fff;
}

.mdl-button--raised.mdl-button--accent:hover {
    background-color: #f50057; /* Accent hover */
}

.mdl-button--raised.mdl-button--accent:active {
    background-color: #c51162; /* Accent active */
}

/* Genel container için biraz padding */
.container {
    padding: 16px;
}
h1, h2 {
    font-weight: 400; /* Material Design'da başlıklar genellikle daha incedir */
}

/* --- Single Tour Page Styles --- */

.tour-detail {
    padding-top: 20px; /* Sayfa üstüne biraz boşluk ekler */
}

.tour-detail .entry-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.tour-detail .entry-title {
    font-size: 2.8em; /* Başlığı daha belirgin yapar */
    font-weight: 600;
    color: #333;
    /* margin-bottom: 20px; // Mevcut stil */
}

/* Sol sütun içeriği */
.tour-content-column .entry-content {
    padding-top: 15px;
}

.tour-detail .entry-content h2 {
    font-size: 1.6em; /* Ana başlık altında daha iyi bir hiyerarşi için */
    font-weight: 500;
    color: #444;
    margin-top: 40px; /* Bölüm başlıkları üstüne daha fazla boşluk */
    margin-bottom: 20px; /* Altına artırılmış boşluk */
    padding-bottom: 10px; /* Alt çizgi için padding */
    border-bottom: 2px solid #57DDCD; /* Tema rengiyle alt çizgi */
}

.tour-detail .entry-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

/* Swiper Galerisi */
.tour-image-swiper {
    border-radius: 8px; /* Swiper konteynerine yuvarlak köşeler */
    overflow: hidden; /* İçeriğin border-radius'a uymasını sağlar */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Hafif bir gölge */
    /* height: 450px; // Görseller için mevcut yükseklik ayarı */
}

/* Video Galerisi */
.tour-video-gallery .video-item {
    margin-bottom: 20px; /* Videolar arası daha fazla boşluk */
}

.tour-video-gallery .video-item iframe {
    border-radius: 8px; /* Video gömmeleri için yuvarlak köşeler */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Videolar için hafif gölge */
    width: 100%; /* Duyarlılığı sağlar */
    aspect-ratio: 16 / 9; /* En-boy oranını korur */
    height: auto; /* aspect-ratio kullanılıyorsa sabit min-height'ı geçersiz kılar */
}

/* Öne Çıkanlar, Dahil Olanlar, Hariç Olanlar Listeleri */
.tour-highlights ul,
.tour-included-services ul,
.tour-excluded-services ul {
    list-style: none; /* Varsayılan madde işaretlerini kaldırır */
    padding-left: 0; /* Varsayılan padding'i kaldırır */
    margin-left: 0; /* Mevcut margin-left: 20px; stilini geçersiz kılar */
}

.tour-highlights ul li,
.tour-included-services ul li,
.tour-excluded-services ul li {
    padding-left: 25px; /* Özel madde işareti için boşluk */
    position: relative;
    margin-bottom: 10px; /* Liste öğeleri arası boşluk */
    color: #555;
    line-height: 1.6;
}

.tour-highlights ul li::marker,
.tour-included-services ul li::marker {
    content: '\2713'; /* Dahil olanlar/öne çıkanlar için tik işareti */
    position: absolute;
    left: 0;
    color: #57DDCD; /* İkon için tema rengi */
    font-weight: bold;
    font-size: 1.1em;
}

.tour-excluded-services ul li::marker {
    content: '\2717'; /* Hariç olanlar için X işareti */
    position: absolute;
    left: 0;
    color: #dc3545; /* Hariç olanlar ikonu için kırmızı renk */
    font-weight: bold;
    font-size: 1.1em;
}

/* Gitmeden Önce Bilinmesi Gerekenler Bölümü */
.tour-good-to-know {
    background-color: #f8f9fa; /* Vurgu için açık arka plan */
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #57DDCD; /* Tema rengiyle vurgu çizgisi */
}
.tour-good-to-know p:last-child {
    margin-bottom: 0;
}

/* Tur Planı Akordiyonu (Bootstrap Özelleştirmesi) */
.tour-plan .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px; /* Akordiyon öğeleri arası boşluk */
    border-radius: 4px; /* Daha yumuşak köşeler */
    overflow: hidden; /* border-radius için */
}

.tour-plan .accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0; /* Kapalıyken ayırıcı */
}
.tour-plan .accordion-button:not(.collapsed) {
    background-color: #57DDCD; /* Aktif akordiyon başlığı için tema rengi */
    color: white;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125); /* Bootstrap'in alt gölgesini korur */
}

.tour-plan .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(87, 221, 205, 0.25); /* Tema rengiyle focus halkası */
    border-color: #57DDCD;
}

.tour-plan .accordion-body {
    padding: 20px;
    background-color: #fff;
    color: #555;
    line-height: 1.7;
}
.tour-plan .accordion-body p:last-child {
    margin-bottom: 0;
}

/* Harita Bölümü */
.tour-map .acf-map {
    border-radius: 8px;
    overflow: hidden; /* Haritanın border-radius'a uymasını sağlar */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* height: 400px; // Mevcut yükseklik ayarı */
}

/* Rezervasyon Formu Sütunu */
.tour-booking-column .booking-form-container {
    background-color: #ffffff; /* Kart için beyaz arka plan */
    padding: 25px; /* Daha fazla padding */
    border-radius: 8px; /* Yuvarlak köşeler */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Daha yumuşak, modern gölge */
    border: 1px solid #e9ecef; /* Açık renk kenarlık, isteğe bağlı */
    /* sticky-top ile ilgili 'top' değeri main.css'de mevcut, navbar yüksekliğinize göre doğruluğunu kontrol edin */
}

.tour-booking-column .booking-form-container h3 {
    font-size: 1.5em; /* Mevcut boyut iyi */
    font-weight: 600;
    color: #333;
    margin-bottom: 20px; /* Başlık altı daha fazla boşluk */
    text-align: center; /* Başlığı ortalar */
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Rezervasyon konteyneri içindeki CF7 form elemanları için stiller */
.tour-booking-column .wpcf7-form p {
    margin-bottom: 20px; /* Form alanları için tutarlı boşluk */
}
.tour-booking-column .wpcf7-form label {
    font-weight: 500; /* Biraz daha az kalın */
    margin-bottom: 8px;
}

.tour-booking-column .wpcf7-submit {
    padding: 12px 25px; /* Buton için biraz daha padding */
    font-size: 1.05em; /* Biraz daha büyük buton metni */
    width: 100%; /* Butonu konteyneri içinde tam genişlik yapar */
    box-sizing: border-box;
}

/* Tur sayfası için duyarlı düzenlemeler */
@media (max-width: 767px) {
    .tour-detail .entry-title {
        font-size: 2.2em; /* Mobil için başlık boyutunu ayarlar */
    }

    .tour-detail .entry-content h2 {
        font-size: 1.4em; /* Mobil için bölüm başlıklarını ayarlar */
    }

    .tour-booking-column {
        margin-top: 30px; /* Mobil'de yığıldığında rezervasyon formu üstüne boşluk ekler */
    }
}

/* --- Page Hero Section (Country Listing etc.) --- */
.page-hero {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
}

.page-hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Yazı okunabilirliği için overlay */
    z-index: 1;
}

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

.page-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-hero-excerpt {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    .page-hero-title {
        font-size: 2.5rem;
    }
    .page-hero-excerpt {
        font-size: 1.1rem;
    }
}

/* Hero Section for Country Pages */
.hero-section-country-wrapper {
    width: 100%;
    /* İsteğe bağlı: Arka plan rengi veya padding eklenebilir */
    padding-bottom: 20px; /* Hero ve içerik arasında boşluk için, isteğe bağlı */
}

.hero-section-country {
    position: relative;
    width: 100%; /* Container içinde tam genişlik */
    height: 400px; /* İstenen yükseklik */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden; /* border-radius'un çalışması için */
}

.hero-section-country .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section-country .hero-content {
    position: relative;
    z-index: 2;
    padding: 20px; /* Başlık etrafında biraz boşluk */
}

.hero-title-country {
    font-size: 3.5em;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) { /* Tablet ve altı */
    .hero-section-country {
        height: 500px;
    }
}

@media (max-width: 768px) { /* Mobil */
    .hero-section-country {
        height: 400px; /* Mobil için hero yüksekliği */
    }
    .hero-title-country {
        font-size: 2.5em; /* Mobil için hero başlık boyutu */
    }
    .hero-section-country-wrapper {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Single Tour Page General Improvements */
.tour-detail .entry-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.tour-detail .entry-title {
    font-size: 2.8em;
    font-weight: 600;
    color: #333;
}

.tour-content-column .entry-content h2 {
    font-size: 1.8em;
    font-weight: 500;
    color: #444;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #57DDCD; /* Ana renk veya tema renginiz */
}

.tour-content-column .entry-content p,
.tour-content-column .entry-content li {
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.tour-content-column .entry-content ul {
    padding-left: 20px;
    list-style: disc; /* veya 'square', 'circle' */
}

/* Section Cards for better visual separation */
.tour-highlights,
.tour-video-gallery,
.tour-good-to-know,
.tour-included-services,
.tour-excluded-services,
.tour-plan,
.tour-map {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px !important; /* !important gerekebilir ACF bloklarının margin'ini ezmek için */
    border: 1px solid #e9ecef;
}

.tour-highlights ul,
.tour-included-services ul,
.tour-excluded-services ul {
    list-style: none;
    padding-left: 0;
}



/* Material Design-like Form Styles */
.booking-form-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-form-container h3 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
    color: #333;
}

.material-form .md-form-group {
    position: relative;
    margin-bottom: 25px;
}

.material-form .md-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-size: 16px;
    background-color: transparent;
    transition: border-color 0.3s;
}

.material-form .md-input:focus {
    outline: none;
    border-bottom-color: #57DDCD; /* Ana renk veya tema renginiz */
}

.material-form .md-label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.2s ease-out;
}

.material-form .md-input:focus + .md-label,
.material-form .md-input:not(:placeholder-shown) + .md-label {
    top: -12px;
    font-size: 12px;
    color: #57DDCD; /* Ana renk veya tema renginiz */
}
/* Tarih inputu için özel label davranışı */
.material-form .md-input[type="date"]:not(:placeholder-shown) + .md-label,
.material-form .md-input[type="date"]:focus + .md-label {
    top: -12px;
    font-size: 12px;
    color: #57DDCD;
}
.material-form .md-input[type="date"] + .md-label {
    /* Tarih inputları placeholder göstermediği için başlangıçta yukarıda olmalı */
     top: -12px;
    font-size: 12px;
}


.material-form .md-button {
    background-color: #57DDCD; /* Ana renk veya tema renginiz */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    text-transform: uppercase;
    font-weight: 500;
}

.material-form .md-button:hover {
    background-color: #0056b3; /* Ana rengin koyu tonu */
}

/* Swiper ve Diğer Galeri Stilleri (Mevcut stillerinizle birleştirin veya uyarlayın) */
.tour-image-swiper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px !important;
}

.tour-video-gallery .video-item iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

/* Akordiyon Stilleri (Bootstrap kullanılıyorsa, bunlar üzerine yazabilir) */
.tour-plan .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.tour-plan .accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 500;
}
.tour-plan .accordion-button:not(.collapsed) {
    background-color: #57DDCD; /* Ana renk veya tema renginiz */
    color: white;
}
.tour-plan .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); /* Ana renk veya tema renginiz (rgba) */
}
.tour-plan .accordion-body {
    padding: 20px;
    background-color: #fff;
}

/* Harita */
.tour-map .acf-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 400px; /* Yüksekliği koru veya ayarla */
}

/* Event List Container */
.event-list-container {
    margin-top: 30px;
}

/* Material Design Event Card */
.material-event-card {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    position: relative;
}

.material-event-card:hover {
                box-shadow: 0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);
}

.material-event-image {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    object-fit: cover; /* Resmin kartı düzgün doldurmasını sağlar */
    max-height: 200px; /* Resim için maksimum yükseklik, isteğe bağlı */
}

.material-event-card .card-body {
    padding: 16px;
}

.material-event-title {
    font-size: 1.25rem; /* 20px */
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 8px;
}

.material-event-title a {
    text-decoration: none;
    color: #212121; /* Koyu gri */
}

.material-event-title a:hover {
    color: #57DDCD; /* Ana renk veya tema renginiz */
}

.material-event-date {
    font-size: 0.875rem; /* 14px */
    display: flex;
    align-items: center;
}

.material-event-date .bx {
    margin-right: 5px;
    font-size: 1.1em;
}

.material-event-excerpt {
    font-size: 0.9rem; /* 14.4px */
    color: #757575; /* Orta gri */
    line-height: 1.6;
    margin-bottom: 16px;
}

.material-event-excerpt p {
    margin-bottom: 0; /* the_excerpt'ten gelen p'nin alt boşluğunu kaldır */
}

.material-event-button {
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    /* Bootstrap btn-primary stilini kullanır, gerekirse üzerine yazabilirsiniz */
}

/* Responsive Ayarlamalar */
@media (max-width: 767px) {
    .material-event-title {
        font-size: 1.1rem;
    }
}

/* Page Hero Section (Events Sayfası için) */
.page-hero-section-wrapper {
    margin-bottom: 30px; /* Hero ve içerik arasına boşluk */
}

.page-hero-section {
    position: relative;
    width: 100%;
    height: 450px; /* Hero yüksekliğini ayarlayabilirsiniz */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Karartma efekti */
    z-index: 1;
}

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

.page-hero-title {
    font-size: 3em; /* Hero başlık boyutunu ayarlayabilirsiniz */
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}


/* Material Event Card Güncellemeleri */
.material-event-card {
    position: relative; /* Kategori etiketi için */
    /* ...mevcut .material-event-card stilleri... */
}

.material-event-image-wrapper {
    position: relative; /* Kategori etiketi için */
    display: block; /* a etiketi gibi davranması için */
}

.material-event-image {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    object-fit: cover;
    max-height: 200px;
    width: 100%; /* Resmin tam genişlikte olmasını sağlar */
}

.event-card-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(87, 221,  205, 0.85); /* Kurumsal turkuaz, biraz transparan */
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem; /* 12px */
    font-weight: 500;
    border-radius: 3px;
    z-index: 10;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.material-event-title a {
    text-decoration: none;
    color: #57DDCD; /* Kurumsal Turkuaz */
}

.material-event-title a:hover {
    color: #45b8a9; /* Kurumsal Turkuazın biraz koyusu */
}

.material-event-button {
    /* ...mevcut .material-event-button stilleri... */
    margin-top: 10px; /* Buton ve üstündeki içerik arasına 10px boşluk ekler */
}

.material-event-meta {
    display: flex;
    flex-wrap: wrap; /* Mobil için gerekebilir */
    gap: 15px; /* Tarih ve yazar arasında boşluk */
    align-items: center;
    justify-content: space-between
}

.material-event-date,
.material-event-author {
    display: flex;
    align-items: center;
}

.material-event-date .bx,
.material-event-author .bx {
    margin-right: 5px;
    font-size: 1.1em; /* İkon boyutu */
}

.material-event-author a {
    color: #757575; /* Yazar adı için metin rengi */
    text-decoration: none;
    transition: color 0.3s ease;
}

.material-event-author a:hover {
    color: #57DDCD; /* Kurumsal turkuaz hover rengi */
    text-decoration: none;
}

/* Single Blog Post Styles */
.blog-post-single .entry-title {
    font-size: 2.5rem; /* Başlık boyutu */
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.blog-post-single .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Meta öğeleri arası boşluk */
    font-size: 0.875rem; /* 14px */
}

.blog-post-single .entry-meta span {
    display: inline-flex; /* İkon ve metni hizalamak için */
    align-items: center;
}

.blog-post-single .entry-meta .bx {
    margin-right: 5px;
    font-size: 1.1em; /* İkon boyutu */
    color: #777;
}

.blog-post-single .entry-meta a {
    color: #555;
    text-decoration: none;
}

.blog-post-single .entry-meta a:hover {
    color: #57DDCD; /* Tema ana renginiz */
    text-decoration: underline;
}

.blog-post-single .post-thumbnail img {
    max-width: 100%;
    height: auto;
    /* border-radius: 8px; img-fluid ve rounded zaten Bootstrap'ten geliyor */
}

.blog-post-single .entry-content {
    line-height: 1.75;
    font-size: 1.05rem; /* İçerik yazı tipi boyutu */
    color: #444;
}

.blog-post-single .entry-content h2,
.blog-post-single .entry-content h3,
.blog-post-single .entry-content h4 {
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    font-weight: 600;
    color: #333;
}

.blog-post-single .entry-content p {
    margin-bottom: 1.2em;
}

.blog-post-single .entry-content ul,
.blog-post-single .entry-content ol {
    margin-bottom: 1.2em;
    padding-left: 1.5em;
}

.blog-post-single .entry-content blockquote {
    border-left: 4px solid #57DDCD; /* Tema ana renginiz */
    padding: 10px 20px;
    margin: 20px 0;
    background-color: #f8f9fa;
    font-style: italic;
}

.blog-post-single .entry-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
}
.blog-post-single .entry-content img.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
    border-radius: 4px;
}
.blog-post-single .entry-content img.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
    border-radius: 4px;
}


.blog-post-single .entry-footer .tags-links {
    font-size: 0.9rem;
}
.blog-post-single .entry-footer .tags-links .bx {
    margin-right: 5px;
}
.blog-post-single .entry-footer .tags-links a {
    display: inline-block;
    background-color: #e9ecef;
    color: #495057;
    padding: 3px 8px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.blog-post-single .entry-footer .tags-links a:hover {
    background-color: #57DDCD; /* Tema ana renginiz */
    color: #fff;
}

.author-bio .author-title a {
    color: #333;
    text-decoration: none;
}
.author-bio .author-title a:hover {
    color: #57DDCD; /* Tema ana renginiz */
}

/* Comments Section (Temel stiller, temanızın yorum stilleri üzerine yazabilir) */
#comments .comment-list {
    list-style: none;
    padding: 0;
}
#comments .comment {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
#comments .comment-author img {
    border-radius: 50%;
    margin-right: 10px;
}
#comments .comment-meta {
    font-size: 0.9em;
    color: #777;
}
#comments .comment-reply-link {
    font-size: 0.9em;
}

/* Sidebar */
.widget-area .widget {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}
.widget-area .widget-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 500;
    border-bottom: 2px solid #57DDCD; /* Tema ana renginiz */
    padding-bottom: 8px;
}
.widget-area .widget ul {
    list-style: none;
    padding-left: 0;
}
.widget-area .widget ul li {
    margin-bottom: 8px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
}
.widget-area .widget ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.widget-area .widget a {
    text-decoration: none;
    color: #333;
}
.widget-area .widget a:hover {
    color: #57DDCD; /* Tema ana renginiz */
}

/* --- Vertical Tour Card Style (Updated) --- */
.tour-card-vertical {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* İçeriği aşağıya yaslar */
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tour-card-vertical:hover {
    transform: scale(1.03);
}

.tour-card-vertical::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.tour-card-vertical .tour-card-content {
    position: relative;
    z-index: 2;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between; /* Öğeleri iki uca yaslar */
    align-items: center; /* Dikey olarak ortalar */
    width: 100%;
    gap: 1rem; /* Başlık ve ikon arasına boşluk ekler */
}

.tour-card-vertical .tour-card-title {
    /* padding-right: 1rem; Bu satırı kaldırıyoruz, yerine gap kullandık */
    flex-grow: 1; /* Başlığın mevcut boşluğu doldurmasını sağlar */
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.tour-card-vertical .tour-card-icon {
    font-size: 2.5rem;
    color: #fff;
    transition: transform 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    flex-shrink: 0; /* İkonun küçülmesini engeller */
}

.tour-card-vertical:hover .tour-card-icon {
    transform: translateX(5px); /* Üzerine gelince oku hafifçe sağa kaydırır */
}

/* --- Tour Card Duration Pill --- */
.tour-card-duration-pill {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3; /* Diğer katmanların üzerinde kalması için */
    background-color: rgba(87, 221, 205, 0.9); /* Tema rengi, hafif transparan */
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px; /* Tam yuvarlak köşeler için büyük bir değer */
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- Horizontal Destination Card (Front Page) --- */
.destination-card-horizontal {
    display: block;
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

/* Gradient overlay for text readability */
.destination-card-horizontal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.destination-card-horizontal .card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.destination-card-horizontal .text-content .card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.destination-card-horizontal .text-content .card-excerpt {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.destination-card-horizontal .card-icon {
    font-size: 2.5rem;
    color: #fff;
    transition: transform 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    flex-shrink: 0;
    margin-left: 1rem;
    opacity: 0;
    transform: translateX(-10px);
}

.destination-card-horizontal:hover .card-icon {
    opacity: 1;
    transform: translateX(0);
}

/* --- Homepage Quote Section --- */
.homepage-quote {
    text-align: center;
    margin: 0 auto 0 auto;
    max-width: 800px;
    border: none;
    padding: 20px 0;
}

.homepage-quote .quote-text {
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.homepage-quote .quote-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #777;
    text-align: right;
}

/* --- Tour Detail Photo Grid --- */
.tour-photo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Sol sütun sağın 2 katı genişliğinde */
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
}

.tour-photo-grid .secondary-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.tour-photo-grid .grid-photo-item {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.tour-photo-grid .grid-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.tour-photo-grid .grid-photo-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.tour-photo-grid .grid-photo-item .show-all-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 1;
    transition: background-color 0.3s ease;
    pointer-events: none; /* Tıklamanın alttaki <a> etiketine gitmesini sağlar */
}

.tour-photo-grid .grid-photo-item:hover .show-all-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.show-all-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.show-all-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Tur Detay Sayfası Fotoğraf Galerisi --- */

/* Masaüstü: Grid Düzeni */
.tour-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
}

.tour-photo-grid .grid-photo-item {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

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

.tour-photo-grid .grid-photo-item:hover img {
    transform: scale(1.05);
}

/* Ana fotoğrafın 2x2 alan kaplaması */
.tour-photo-grid .grid-photo-item.main-photo {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Son resimdeki "Tümünü Göster" katmanı */
.grid-photo-item .show-all-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1; /* Opaklığı 1 yaparak sürekli görünür hale getiriyoruz */
    transition: background-color 0.3s ease;
    pointer-events: none; /* Tıklamaların alttaki <a> etiketine gitmesini sağlar */
}

/* Katmanın üzerine gelindiğinde arka planı koyulaştırarak geri bildirim verelim */
.tour-photo-grid .grid-photo-item:last-child:hover .show-all-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

/* --- ESKİ MOBİL SLIDER STİLLERİNİ BU YENİ BLOKLA DEĞİŞTİRİN --- */
/* --- Mobil Tur Fotoğrafı Swiper Stilleri --- */
.tour-photo-swiper {
    /* Bu sınıf d-md-none ile sadece mobilde görünür olacak */
    height: 300px; /* Mobil slider için yükseklik */
    width: 100%;
}

.tour-photo-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin oranını bozmadan alanı kaplamasını sağlar */
}

/* Swiper Navigasyon Okları */
.tour-photo-swiper .swiper-button-next,
.tour-photo-swiper .swiper-button-prev {
    color: #fff; /* Ok rengi */
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.tour-photo-swiper .swiper-button-next:hover,
.tour-photo-swiper .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.tour-photo-swiper .swiper-button-next::after,
.tour-photo-swiper .swiper-button-prev::after {
    font-size: 18px; /* Ok ikonu boyutu */
    font-weight: bold;
}

/* Swiper Pagination Noktaları */
.tour-photo-swiper .swiper-pagination {
    position: absolute;
    bottom: 10px !important; /* Konumunu zorla */
}

.tour-photo-swiper .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.tour-photo-swiper .swiper-pagination-bullet-active {
    background: #ffffff;
}

/*
 * main.css - AB Gençlik Programları Listeleme Stilleri (euyp- ön ekli)
 */

/* ============================
   1. Hero Section Stilleri
   ============================ */

.euyp-hero-section {
    min-height: 400px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.euyp-hero-overlay {
    /* Opak kutu arka planını kaldırıyoruz */
    background-color: transparent;
    padding: 15px; /* Mobil cihazlarda kenarlara yapışmaması için */
    border-radius: 0;
    color: #ffffff;
}

.euyp-page-title {
    font-size: 3.5em; /* Yazıyı biraz büyütelim */
    font-weight: 600;
    margin: 0;
    padding: 0;
    /* Okunurluğu artırmak için metin gölgesi ekliyoruz */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* ============================
   2. Program Kartları Stilleri
   ============================ */

.euyp-card-grid {
    display: grid;
    /* 3 sütunlu düzen */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.euyp-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.euyp-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.euyp-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.euyp-card-image-wrap {
    margin: 0;
    padding-top: 56.25%; /* 16:9 oranı */
    position: relative;
    overflow: hidden;
}

.euyp-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.euyp-card-content {
    padding: 20px;
}

.euyp-card-title {
    font-size: 1.5em;
    margin-top: 0;
    color: #333;
}

.euyp-card-excerpt {
    color: #666;
}

/* EU Youth Detail Page Styles */
.eu-detail-hero {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.eu-youth-detail-page h1 {
    font-size: 2.2rem; /* İstediğiniz boyuta ayarlayabilirsiniz */
    margin-bottom: 20px;
}

/* Partnerler Bölümü Stilleri */
.partners-section .partners-title {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #444;
}

.partners-section .partner-logo {
    max-width: 100%;
    height: 120px; /* Logo yüksekliğini sabitle */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.partners-section .partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Partner logolarının mobil görünümde alt alta gelmesi için */
@media (max-width: 576px) {
    .partners-section .row > div[class^="col-"] {
        flex-basis: 100%;
        max-width: 100%;
    }

    .partners-section .row > div:not(:last-child) {
        margin-bottom: 2.5rem; /* Alt alta gelen logolar arasına boşluk ekler */
    }
}