/* Kampanyalar Bölümü - Yeni Tasarım */
.section.courses {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h6 {
  color: #cc9f52;
  font-size: 26px;
  
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-heading h2 {
  color: #1e1e1e;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

/* Kampanya Grid Sistemi */
#discount-places {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  padding: 0 15px;
}

/* Kampanya Kartları */
.discount-card {
  background: white;
  border-radius: 16px; 
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05); /* Hafif çerçeve */
}

.discount-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  border-color: rgba(204, 159, 82, 0.3); 
}

/* Görsel Alanı */
.discount-image {
  position: relative;
  height: 220px; 
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5, #e9e9e9); /* Gradient arkaplan */
}

.discount-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.98); /* Hafif parlaklık ayarı */
  will-change: transform; /* Performans optimizasyonu */
}

.discount-card:hover .discount-image img {
  transform: scale(1.06);
  filter: brightness(1.05) contrast(1.05); /* Daha canlı görüntü */
}

/* İndirim Balonu */
.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #AA1B2C, #cc9f52);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

.discount-badge:hover {
  transform: scale(1.1);
}

.discount-badge span {
  font-size: 18px;
  line-height: 1;
}

.discount-badge small {
  font-size: 12px;
  margin-top: 2px;
}

/* İçerik Alanı */
.discount-content {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.05); /* Ayırıcı çizgi */
}

.discount-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.discount-merchant {
  color: #cc9f52;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.discount-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-top: auto;
}

/* Events Grid Düzenlemesi */
.events_container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  padding: 0 15px;
  margin-bottom: 50px;
}

.events_item {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

.events_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  border-color: rgba(204, 159, 82, 0.3);
}

.events_item .thumb {
  position: relative;
  height: 360px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5, #e9e9e9);
}

.events_item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.98);
  will-change: transform;
  padding: 1px; /* Görsele nefes alacak alan */
}

.events_item:hover .thumb img {
  transform: scale(1.04);
  filter: brightness(1.05) contrast(1.05);
}

.events_item .thumb span.category {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 11px;
  text-transform: uppercase;
  color: #cc9f52;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 5px 12px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.events_item .thumb span.price {
  position: absolute;
  right: -12px;
  top: -12px;
  background: linear-gradient(135deg, #AA1B2C, #cc9f52);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.events_item .thumb span.price:hover {
  transform: scale(1.1);
}

.events_item .down-content {
  padding: 15px;
  flex: 0 0 auto;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.events_item .down-content span.author {
  color: #cc9f52;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.events_item .down-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.events_item:hover .down-content h4 {
  color: #cc9f52;
}

/* Responsive Ayarlar */
@media (max-width: 1400px) {
  #discount-places,
  .events_container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  #discount-places,
  .events_container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .section-heading h2 {
    font-size: 30px;
  }
  
  .discount-image,
  .events_item .thumb {
    height: 350px;
  }
  
  .discount-badge {
    width: 50px;
    height: 50px;
  }
  
  .discount-badge span {
    font-size: 16px;
  }
  
  .discount-badge small {
    font-size: 10px;
  }
}

@media (max-width: 992px) {
  .events_item .thumb {
    height: 280px;
  }
  
  .events_item .thumb span.price {
    width: 50px;
    height: 50px;
    font-size: 13px;
  }
  
  .discount-content,
  .events_item .down-content {
    padding: 12px;
  }
}

@media (max-width: 768px) {
  #discount-places,
  .events_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .discount-image,
  .events_item .thumb {
    height: 250px;
  }
  
  .discount-title,
  .events_item .down-content h4 {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #discount-places,
  .events_container {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .section-heading h2 {
    font-size: 26px;
  }
  
  .discount-image,
  .events_item .thumb {
    height: 300px;
  }
  
  .events_item .down-content h4 {
    font-size: 15px;
  }
}




/* Search Box Styles */
.search-container {
  max-width: 900px;
  margin: 0 auto 0px;
  padding: 0 15px;
}

.search-box {
  position: relative;
  display: flex;
  flex-direction: row-reverse; /* Bu satır butonu sağa alır */
  align-items: center;
  background: white;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(204, 159, 82, 0.3);
}

.search-box:focus-within {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: #cc9f52;
}

.search-button {
  background: linear-gradient(135deg, #AA1B2C, #cc9f52);
  color: white;
  border: none;
  padding: 0 25px;
  height: 60px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1; /* Butonu sağa almak için */
}


.search-button:hover {
  opacity: 0.9;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 20px;
  font-size: 16px;
  background: transparent;
  color: #333;
  order: 2; /* Input'u sola almak için */
}

.search-input::placeholder {
  color: #999;
  font-weight: 300;
}

.clear-results {
  background: #f1f0fe;
  color: #AA1B2C;
  border: none;
  padding: 0 20px;
  height: 50px;
  margin: 5px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
   order: 3; /* Temizle butonunu en sağa almak için */
  margin-left: auto;
}

.clear-results:hover {
  background: #e0dff5;
}

.clear-results i {
  font-size: 12px;
}

.no-results i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #cc9f52;
}

.no-results p {
  font-size: 18px;
  margin-top: 10px;
}

/* Mevcut stillerinizi koruyarak ekleyeceğiniz responsive ayarlar */
@media (max-width: 768px) {
  .search-filter-container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 20px;
  }

  .category-filter,
  .search-container,
  .sort-container {
    max-width: 100%;
    width: 100%;
  }

  .category-filter select {
    width: 100%;
  }

  .search-box {
    flex-direction: row; /* Mobilde normal sıralama */
  }

  .search-input {
    order: 1; /* Input ilk sırada */
  }

  .search-button {
    order: 2; /* Arama butonu ikinci sırada */
  }

  .clear-results {
    order: 3; /* Temizle butonu üçüncü sırada */
    margin-left: 0;
  }

  .sort-container {
    justify-content: flex-start; /* Sıralama butonu sola yaslı */
  }

  .sort-button {
    width: 100%;
    justify-content: center;
  }
}

/* Tablet boyutları için geçiş ayarları */
@media (min-width: 769px) and (max-width: 992px) {
  .search-filter-container {
    flex-wrap: wrap;
  }
  
  .category-filter {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
  
  .search-container {
    flex: 1;
    min-width: 70%;
  }
  
  .sort-container {
    flex: 0 0 auto;
  }
}

/* Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');


/* CSS Stilleri */
.search-filter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 15px;
  gap: 15px;
}

.category-filter {
  flex: 1;
  max-width: 250px;
}

.category-filter select {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  padding: 0 20px;
  border: 1px solid rgba(204, 159, 82, 0.3);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.search-container {
  flex: 2;
}

.sort-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.category-badge {
  display: inline-block;
  background: #f1f0fe;
  color: #AA1B2C;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  margin-top: 8px;
}

/* Diğer stiller aynı kalacak */

/* Sıralama Kontrolleri */
.sort-container {
  max-width: 800px;
  margin: 0 auto 2px;
  padding: 0 15px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.sort-button {
  background: #f1f0fe;
  color: #AA1B2C;
  border: none;
  padding: 0 20px;
  height: 50px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-button:hover {
  background: #e0dff5;
}

.sort-button i {
  font-size: 12px;
}

/* ... (Diğer stiller aynı şekilde devam ediyor) ... */

/* Header Style */
/* Arka plan ve sabit header */
/* Sabit header - Sadece kaydırıldığında görünür */
.background-header {
  background-color: #cc9f52 !important;
  border-radius: 0px 0px 25px 25px;
  height: 80px !important;
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.5s ease 0s;
  z-index: 1000;
  padding: 0 20px;
}

/* Üst alan (ilk yüklendiğinde şeffaf) */
.header-area {
  position: absolute;
  background-color: transparent;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s ease 0s;
}

/* Ana navigasyon */
.header-area .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 15px;
}

/* Logo */
.header-area .main-nav .logo h1 {
  font-size: 36px;
  font-weight: 700;
  color: #AA1B2C;
  margin: 0;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Arama kutusu */
.header-area .main-nav #search {
  flex: 1;
  max-width: 300px;
  position: relative;
}

.header-area .main-nav #search input {
  width: 100%;
  height: 44px;
  border-radius: 25px;
  border: none;
  background-color: rgba(255, 255, 255, 0.15);
  color: #AA1B2C;
  font-size: 14px;
  font-weight: 300;
  padding: 0 50px 0 20px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.header-area .main-nav #search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header-area .main-nav #search input:focus {
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
  outline: none;
}

.header-area .main-nav #search i {
  position: absolute;
  color: #AA1B2C;
  right: 20px;
  top: 15px;
  font-size: 16px;
  pointer-events: none;
}

/* Menü (nav) - PC'de SAĞA hizalı */
.header-area .main-nav ul.nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 12px;
  flex: 1;
  justify-content: flex-end; /* SAĞA hizalı */
}

.header-area .main-nav .nav li {
  height: 40px;
  line-height: 40px;
  margin: 0;
  
}

.header-area .main-nav .nav li a {
  display: block;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #AA1B2C;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  
}

/* Hover efekti - Daha belirgin */
.header-area .main-nav .nav li a:hover,
.background-header .main-nav .nav li a:hover {
  background-color: #AA1B2C;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Aktif menü */
.header-area .main-nav .nav li a.active,
.background-header .main-nav .nav li a.active {
  color: #fff;
  background-color: #AA1B2C;
  font-weight: 600;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Sabit header'da menü yüksekliği */
.background-header .main-nav .nav {
  margin-top: 20px;

}

.background-header .main-nav .logo,
.background-header .main-nav #search {
  margin-top: 0;
}

/* Hamburger menü (mobil) */
.header-area .main-nav .menu-trigger {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 2px;
  width: 38px;
  height: 42px;
  z-index: 99;
  text-indent: -9999px;
}

/* Hamburger çizgileri -*/
.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 4px; 
  background-color: #AA1B2C;
  transition: all 0.4s ease;
  left: 0;
  border-radius: 2px;
}

.header-area .main-nav .menu-trigger span {
  top: 14px;
}

.header-area .main-nav .menu-trigger span:before {
  top: -9px;
}

.header-area .main-nav .menu-trigger span:after {
  top: 9px;
}

/* Aktif hamburger (çarpı) */
.header-area .main-nav .menu-trigger.active span {
  background-color: transparent;
}

.header-area .main-nav .menu-trigger.active span:before {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #AA1B2C;
  width: 30px;
}

.header-area .main-nav .menu-trigger.active span:after {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: #AA1B2C;
  width: 30px;
}

/* Mobil Uyumlu (768px ve altı) */
@media (max-width: 768px) {
  .header-area {
    top: 0;
    background-color: transparent !important;
  }

  /* Mobil menü konteyneri */
  .header-area .main-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    gap: 5px;
    background-color: transparent;
    position: relative;
  }
      /* Mobil menü konteynerinin de tam genişlikte olmasını sağla */
    .header-area .main-nav {
        width: 100vw !important;
        left: 0 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box;
        
    }


  /* Sadece scroll yapıldığında arka plan gelsin */
  .background-header .main-nav {
    background-color: #cc9f52;
    border-radius: 0 0 25px 25px;
    padding: 15px 20px;
    width: 100%;
  }

  /* Logo boyutu */
  .header-area .main-nav .logo h1 {
    font-size: 28px;
    padding: 0 5px;
  }

  /* Arama kutusu */
  .header-area .main-nav #search {
    max-width: 100%;
    order: 2;
  }

  /* Menü listesi */
  .header-area .main-nav ul.nav {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    display: none;
    margin: 0;
    box-sizing: border-box;
  }

  .header-area .main-nav ul.nav.show {
    display: flex;
  }

  /* Menü öğeleri */
  .header-area .main-nav .nav li a {
    padding: 5px 20px;
    margin-bottom: 20px;
    font-size: 16px;
    background-color: #cc9f52;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100% !important;
        box-sizing: border-box;
  }
   .header-area .main-nav .nav li {
        width: 100%;
    }


   /* Menü listesini tam genişliğe al */
    .header-area .main-nav .nav {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box;
    }


  .header-area .main-nav .nav li a:hover,
  .header-area .main-nav .nav li a.active {
    background-color: #AA1B2C;
    color: #fff;
  }

  /* Hamburger menü butonu - en üstte, sağda */
  .header-area .main-nav .menu-trigger {
    display: block;
    top: 20px;
    right: 20px;
    z-index: 999;
    position: absolute;
    width: 38px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .header-area .main-nav .menu-trigger span,
  .header-area .main-nav .menu-trigger span:before,
  .header-area .main-nav .menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 30px;
    height: 4px;
    background-color: #AA1B2C;
    border-radius: 2px;
    transition: all 0.4s ease;
  }

  .header-area .main-nav .menu-trigger span {
    top: -100px;
  }

  .header-area .main-nav .menu-trigger span:before {
    top: -9px;
  }

  .header-area .main-nav .menu-trigger span:after {
    top: 9px;
  }

  .header-area .main-nav .menu-trigger.active span {
    background-color: transparent;
  }

  .header-area .main-nav .menu-trigger.active span:before {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header-area .main-nav .menu-trigger.active span:after {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Scroll yapıldığında hamburger pozisyonu */
  .background-header .main-nav .menu-trigger {
    top: 15px;
  }
}

/* Ekstra: Sticky header aktifken aktif link rengi */
.header-area.header-sticky .nav li a.active {
  color: #AA1B2C;
}

.visible {
  display: inline !important;
}
/* Banner Style */

.carousel-item {
  margin-top: 40px;}
.main-banner {
  background-image: url(../images/banner-bg.jpg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 170px 0px 120px 0px;
}

.main-banner .item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 25px;
  padding: 100px 100px;
  margin-left: 130px;
}

.main-banner .item span.category {
  background-color: #cc9f52;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 50px;
}

.main-banner .item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 70px;
  width: 60%;
  margin-bottom: 40px;
}

.main-banner .item p {
  color: #fff;
  width: 65%;
}

.main-banner .item .buttons {
  display: flex;
  margin-top: 50px;
}

.main-banner .item .buttons .main-button {
  margin-right: 30px;
}

.main-banner .item .buttons .main-button a {
  font-size: 14px;
  color: #AA1B2C;
  background-color: #AA1B2C;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0px 25px;
  border-radius: 25px;
  font-weight: 500;
}

.main-banner .item .buttons .icon-button i {
  color: #cc9f52;
  background-color: #AA1B2C;
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
}

.main-banner .item .buttons .icon-button a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.main-banner .owl-nav {
  position: absolute;
  max-width: 1320px;
  bottom: 23px;
  left: 0;
  text-align: right;
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #AA1B2C;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.main-banner .owl-nav .owl-prev i {
  position: absolute;
  bottom: 65px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}

/* Services Style */
.services .service-item:hover .icon img {
  margin-top: -10px;
}

.services .service-item {
  position: relative;
  margin-top: 95px;
}

.services .service-item .icon {
  width: 190px;
  height: 190px;
  display: inline-block;
  text-align: center;
  line-height: 190px;
  background-color: #cc9f52;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -95px;
}

.services .service-item .icon img {
  max-width: 86px;
  transition: all .2s;
}

.services .service-item .main-content {
  border-radius: 25px;
  padding: 80px 30px 50px 30px;
  background-color: #f1f0fe;
  margin-bottom: 30px;
  margin-right: 80px;
  transition: all .4s;
}

.services .service-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
  transition: all .4s;
}

.services .service-item p {
  color: #4a4a4a;
  margin-bottom: 25px;
}

/* About Style */
.about-us {
  position: relative;
  padding: 0px;
  margin-top: 130px;
}

.about-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 84%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

.accordion {
  margin-top: -40px;
  margin-bottom: -40px;
  background-color: #cc9f52d8;
  border-radius: 40px;
  padding: 80px 50px 50px 50px;
}

.accordion-item {
  background-color: #fff;
  border-radius: 40px !important;
  margin-bottom: 30px;
  border: none;
}

.accordion-item .accordion-button {
  outline: none;
  box-shadow: none;
  border-radius: 40px !important;
}

.accordion-button:not(.collapsed) {
  color: #cc9f52;
  background-color: #fff;
}

h2.accordion-header button {
  padding: 15px 25px;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 600;
}

.accordion-button::after {
  font-size: 18px;
  font-weight: 500;
  background-image: none;
  content: '+';
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: #cc9f52;
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  line-height: 32px;
  content: '-';
}

.accordion-body {
  padding: 0px 25px 30px 25px;
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}

.about-us .section-heading {
  margin-left: 60px;
  margin-bottom: 0px;
}

.about-us .section-heading .main-button {
  margin-top: 50px;
}

/* Courses Style */
.courses {
  margin-top: 100px;
}

.event_filter {
  text-align: center;
  background-color: #f1f0fe;
  border-radius: 50px;
  padding: 15px 40px;
  list-style: none;
  margin: 0 auto 70px;
  max-width: max-content;
}

.event_filter li {
  display: inline-block;
  margin: 0px 20px;
}

.event_filter li a {
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  transition: all .3s;
}

.event_filter li a.is_active,
.event_filter li a:hover {
  color: #cc9f52;
}






/* Facts Style */
.fun-facts {
  position: relative;
  padding: 120px 0px 80px 0px;
  overflow: hidden;
}

.fun-facts:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 95%;
  height: 100%;
  background-color: #cc9f52;
  content: '';
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}

.fun-facts:after {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 15%;
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.fun-facts .counter {
  text-align: center;
  margin-bottom: 40px;
}

.fun-facts h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.fun-facts h2::after {
  content: '+';
  margin-left: 5px;
}

.fun-facts p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
}

/* Team Style */
.team {
  margin-top: 100px;
  padding-top: 140px;
}

.team-member {
  position: relative;
}

.team-member:hover img {
  top: -120px;
}

.team-member img {
  max-width: 220px;
  border-radius: 50%;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-110px);
  transition: all .3s;
}

.team-member .main-content {
  border-radius: 25px;
  padding: 140px 30px 40px 30px;
  background-color: #f1f0fe;
  text-align: center;
}

.team-member .main-content span.category {
  color: #cc9f52;
  font-size: 15px;
}

.team-member .main-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 15px;
}

.team-member .main-content ul li {
  display: inline-block;
  margin: 0px 2px;
}

.team-member .main-content ul li a {
  background-color: #fff;
  color: #cc9f52;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all .3s;
}

.team-member .main-content ul li a:hover {
  background-color: #cc9f52;
  color: #fff;
}

/* Testimonials Style */
.testimonials {
  position: relative;
  padding: 80px 0px;
  margin-top: 150px;
}

.testimonials:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

.testimonials .section-heading {
  margin-bottom: 0px;
  margin-left: 60px;
  vertical-align: middle;
}

.testimonials .section-heading p {
  margin-top: 50px;
   vertical-align: left;
}

.testimonials .item {
  background-color: #cc9f52;
  border-radius: 25px;
  padding: 80px;
}

.testimonials .item p {
  font-size: 18px;
  line-height: 40px;
  color: #fff;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 40px;
}

.testimonials .item img {
  border-radius: 50%;
  max-width: 100px;
  float: left;
  margin-right: 25px;
}

.testimonials .item span {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  color: #fff;
}

.testimonials .item h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
}

.testimonials .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-5px);
  right: -25px;
  text-align: right;
}

.testimonials .owl-nav .owl-prev i,
.testimonials .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #cc9f52;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.10);
  opacity: 1;
  transition: all .3s;
}

.testimonials .owl-nav .owl-prev i:hover,
.testimonials .owl-nav .owl-next i:hover {
  opacity: 1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

/* Events Style */
.events .section-heading {
  margin-bottom: 100px;
}

.events .item {
  background-color: #f1f0fe;
  border-radius: 25px;
  position: relative;
  padding: 40px;
  margin-bottom: 96px;
}

.events .item .image {
  position: relative;
}

.events .item .image img {
  position: absolute;
  border-radius: 25px;
  max-width: 260px;
  left: 0;
  top: -70px;
}

.events .item ul li {
  display: inline-block;
  width: 17.5%;
  vertical-align: middle;
}

.events .item ul li:first-child {
  width: 35%;
}

.events .item ul li:nth-of-type(2) {
  width: 28%;
}

.events .item ul li span.category {
  font-size: 14px;
  text-transform: uppercase;
  color: #cc9f52;
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}

.events .item ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.events .item ul li span {
  display: inline-block;
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 10px;
}

.events .item ul li h6 {
  font-size: 16px;
  color: #cc9f52;
  font-weight: 600;
}

.events .item a {
  position: absolute;
  right: 0;
  top: 22px;
  background-color: #cc9f52;
  width: 60px;
  height: 120px;
  display: inline-block;
  text-align: center;
  line-height: 120px;
  font-size: 18px;
  z-index: 1;
  color: #fff;
  border-radius: 60px 0px 0px 60px;
}

/* Contact Style */
.contact-us {
  margin-top: 80px;
  position: relative;
  padding: 50px 0px;
}

.contact-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}

.contact-us .section-heading {
  margin-right: 110px;
  margin-bottom: 0px;
}

.contact-us .section-heading p {
  margin-top: 50px;
}

.contact-us .special-offer {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 25px;
  padding: 30px 120px;
  display: inline-block;
  position: relative;
}

.contact-us .special-offer span.offer {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #cc9f52;
  width: 80px;
  padding: 30px 8px;
  line-height: 25px;
  height: 120px;
  border-radius: 15px 60px 60px 15px; 
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
}

.contact-us .special-offer span.offer em {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
}

.contact-us .special-offer h6 {
  font-size: 15px;
  color: #4a4a4a;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-us .special-offer h6 em {
  font-style: normal;
  color: #cc9f52;
  font-weight: 600;
}

.contact-us .special-offer h4 {
  font-size: 22px;
  font-weight: 600;
}

.contact-us .special-offer h4 em {
  font-style: normal;
  color: #cc9f52;
}

.contact-us .special-offer a {
  position: absolute;
  right: 30px;
  top: 35px;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  background-color: #cc9f52;
  color: #fff;
  border-radius: 50%;
}

.contact-us .contact-us-content {
  border-radius: 25px;
  padding: 80px;
  background-color: #cc9f52;
  position: relative;
  z-index: 1;
}

.contact-us .contact-us-content::before {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 50%;
  transform: translateX(-149px);
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.contact-us .contact-us-content::after {
  background: url(../images/contact-dec-02.png);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 183px;
  height: 149px;
  content: '';
  z-index: 2;
}

#contact-form input {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: rgba(249, 235, 255, 0.15);
  border: none;
  outline: none;
  font-weight: 300;
  padding: 0px 20px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form input::placeholder {
  color: #fff;
}

#contact-form textarea {
  width: 100%;
  height: 120px;
  border-radius: 25px;
  background-color: rgba(249, 235, 255, 0.15);
  border: none;
  outline: none;
  font-weight: 300;
  padding: 20px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form textarea::placeholder {
  color: #fff;
}

#contact-form button {
  border: none;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  padding: 0px 25px;
  border-radius: 25px;
  color: #cc9f52;
  transition: all .4s;
  position: relative;
  z-index: 3;
}

#contact-form button:hover {
  opacity: 0.8;
}

.contact-us-content .more-info {
  text-align: center;
  background: rgb(85,0,227);
  background: linear-gradient(90deg, rgba(85,0,227,1) 0%, rgba(198,61,255,1) 100%);
  border-radius: 0px 0px 23px 23px;
  padding: 45px 30px 15px 30px;
}

.contact-us-content .more-info .info-item {
  text-align: center;
  margin-bottom: 30px;
}

.contact-us-content .more-info i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-us-content .more-info h4 a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

/* Footer Style */
footer {
  margin-top: 150px;
  position: relative;
  background-color: #cc9f52;
  vertical-align: middle;
  min-height: 150px;
  border-radius: 150px 150px 0px 0px;
}

footer p {
  text-align: center;
  line-height: 150px;
  color: #fff;
  font-weight: 400;
}

footer p a {
  color: #fff;
  transition: all .3s;
  position: relative;
  z-index: 3;
}

footer p a:hover {
  opacity: 0.75;
}

footer::before {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 30px;
  transform: rotate(180deg);
  opacity: 1;
  bottom: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

/* Responsive Style */
body {
  overflow-x: hidden;
}

/* Back to Top Button */
#yukari {
  display:none;
  position:fixed;
  bottom:25px;
  right:25px;
  background:#373838;
  width:50px;
  height:50px;
  text-align:center;
  line-height: 50px;
  border-radius:35px;
  transition:all .3s ease;
  z-index:999
}

#yukari i {
  color:#fff;
  font-size:20px;
}

#yukari:hover {
  background-color:#fcb100
}

/* Responsive Fixes */
@media (max-width: 1200px) {
  .header-area .main-nav #search input {
    width: 200px;
  }
  .fun-facts:before {
    width: 95%;
  }
}

@media (max-width: 992px) {
  .header-area .main-nav #search input,
  .header-area .main-nav #search i {
    display: none;
  }
  .header-area .main-nav .logo h1 {
    font-size: 34px;
  }
  .main-banner {
    padding-top: 100px;
  }
  .main-banner .item {
    padding: 100px 60px 140px 60px;
    margin-left: 0px;
    text-align: center;
  }
  .main-banner .item h2,
  .main-banner .item p {
    width: 100%;
  }
  .main-banner .item h2 {
    font-size: 36px;
    line-height: 50px;
  }
  .main-banner .item .buttons {
    display: inline-block;
    text-align: center;
  }
  .main-banner .item .buttons .main-button {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .main-banner .owl-nav {
    left: 50% !important;
    transform: translateX(-60px) !important;
    bottom: 60px;
  }
  .main-banner .owl-nav .owl-prev i {
    bottom: 0px;
  }
  .main-banner .owl-nav .owl-next i {
    bottom: 0px;
    position: absolute;
    left: 65px;
  }
  .services {
    margin-top: 80px;
  }
  .about-us {
    margin-top: 100px;
  }
  .accordion {
    padding: 40px 25px 10px 25px;
  }
  .services .service-item .icon {
    width: 170px;
    height: 170px;
    line-height: 170px;
  }
  .about-us .section-heading {
    margin-left: 0px;
    margin-top: 120px;
  }
  .about-us::before,
  .testimonials::before,
  .contact-us::before {
    display: none;
  }
  .about-us .section-heading p,
  .testimonials .section-heading p,
  .contact-us .section-heading p {
    margin-top: 30px;
  }
  .about-us .section-heading .main-button {
    margin-top: 30px;
  }
  .courses {
    margin-top: 50px;
  }
  .fun-facts {
    margin-top: 70px;
  }
  .team {
    margin-top: 160px;
  }
  .team-member {
    margin-bottom: 140px;
  }
  .testimonials {
    margin-top: -50px;
    padding: 0px;
  }
  .testimonials .section-heading {
    margin-left: 0px;
    margin-top: 40px;
  }
  .testimonials .item {
    padding: 40px 40px 60px 40px;
  }
  .testimonials .item h4 {
    font-size: 17px;
  }
  .testimonials .item img {
    margin-right: 15px;
  }
  .testimonials .owl-nav {
    display: none;
  }
  .events {
    margin-top: 80px;
  }
  .events .item {
    margin-bottom: 66px;
  }
  .events .item .image img {
    position: relative;
    max-width: 100%;
  }
  .events .item ul {
    margin-top: -40px;
  }
  .events .item ul li:first-child {
    width: 100% !important;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
  }
  .events .item ul li:nth-child(2) {
    width: 40% !important;
  }
  .events .item ul li {
    display: inline-block;
    width: 28% !important;
  }
  .events .item ul li:last-child {
    text-align: right;
  }
  .events .item a {
    bottom: 150px;
    top: auto;
  }
  .events .item ul li h6 {
    font-size: 14px;
  }
  .contact-us {
    padding-top: 20px;
  }
  .contact-us .section-heading {
    margin-right: 0px;
  }
  .contact-us .special-offer {
    background-color: #f1f0fe;
    margin-bottom: 60px;
    padding: 34px 30px 34px 100px;
    width: 100%;
  }
  .contact-us .special-offer h4 {
    font-size: 17px;
  }
  .contact-us .special-offer a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 15px;
    right: 15px;
  }
  .contact-us .contact-us-content {
    padding: 30px;
  }
  footer {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .header-area {
    top: 0px;
  }
  .header-area .main-nav .logo h1 {
    border-right: none;
  }
  .main-banner .item {
    padding: 80px 30px 120px 30px !important;
  }
  .main-banner .owl-nav {
    left: 30px !important;
  }
  .event_filter {
    padding: 15px 20px;
  }
  .event_filter li {
    display: inline-block;
    margin: 0px 10px;
  }
  #discount-places {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  #discount-places {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Popup Stilleri */
.discount-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

.discount-popup-container {
  background: white;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #AA1B2C;
  z-index: 10;
}

.popup-banner {
  width: 100%;
  max-height: 290px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.popup-content {
  padding: 20px;
}

.popup-content h2 {
  color: #AA1B2C;
  margin-bottom: 20px;
  text-align: center;
}

.popup-detail-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.detail-label {
  font-weight: bold;
  color: #333;
}

.detail-value {
  color: #666;
}

.popup-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 15px 0;
}

.popup-note {
  color: #666;
  font-size: 14px;
  margin: 10px 0;
  text-align: center;
}

.popup-button {
  display: block;
  background: linear-gradient(135deg, #AA1B2C, #cc9f52);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 5px;
  margin: 20px auto 0;
  text-decoration: none;
  font-weight: bold;
  max-width: 200px;
  transition: opacity 0.3s;
}

.popup-button:hover {
  opacity: 0.9;
  color: white;
}

.main-button a {
  display: inline-block;
  background-color: #fff;
  color: #cc9f52;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 25px;
  border-radius: 20px;
  transition: all .3s;
}

.main-button a:hover {
  background-color: #cc9f52;
  color: #fff;
}