/* ============================================
   Mid-Term CampFest 2026 - Bootstrap Custom Styles
   ============================================ */

/* HP Simplified */
@font-face {
  font-family: "HPSimplified";
  src: url("../fonts/HP-Simplified-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HPSimplified";
  src: url("../fonts/HP-Simplified.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HPSimplified";
  src: url("../fonts/HP-Simplified-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


@font-face {
    font-family: 'BebasKaiRegular';
	src: url('../fonts/BebasKaiRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

 
@font-face {
    font-family: 'Bebas Kai';
	src: url('../fonts/BebasKaiRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}



/* ============ VARIABLES ============ */
:root {
  --primary-green: #3ab54b;
  --primary-green-dark: #2e9a3e;
  --primary-pink: #ed72e4;
  --text-pink: #ed72e4;
  --primary-pink-dark: #aa099e;
  --primary-blue: #188af1;
  --primary-indigo: #5638e9;
  --primary-orange: #f76f1a;
  --primary-yellow: #ffa700;
  --primary-brown: #964712;
  --primary-cyan: #0fbfef;
  --text-black: #312f2f;
  --text-gray: #8b8686;
  --text-gray-custom: #65605d;
  --bg-light: #f1f7ed;
  --bg-gray: #eceaf2;
  --indigo-100: #4b60e6;
  --indigo-500: #5638e9;
  --purple-100: #5a11be;
  --purple-500: #5a11be;
  --yellow-300: #e7d3a1;
  --yellow-500: #bea16c;
  --yellow-700: #8c7445;
  --red-100: #eb2c5f;
  --red-500: #eb2c5f;
  --red-700: #c41e4f;
}

/* ====== GLOBAL SCROLLBAR ====== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #2f4f4f,
    #7a5c4b
  );
  border-radius: 999px;
  border: 2px solid #f4f4f4;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #1f3b3b,
    #6a4a3a
  );
}

/* ====== FIREFOX ====== */
* {
  scrollbar-width: thin;
  scrollbar-color: #2f4f4f #f4f4f4;
}




/* ============ BASE STYLES ============ */
html {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "HPSimplified", sans-serif;
  overflow-x: hidden;
  font-size: 16px;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

/* ============ LOADING SCREEN ============ */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loading-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.loading-dot {
  width: 12px;
  height: 12px;
  background-color: var(--primary-green);
  border-radius: 50%;
  animation: bounce 1s infinite;
}

.loading-dot:nth-child(2) {
  animation-delay: 150ms;
}

.loading-dot:nth-child(3) {
  animation-delay: 300ms;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ============ HERO SECTION ============ */
#hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

#hero-inner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background-image: url("/assets/images/inner-background.png");

  min-height: 200px;
  width: 100%;
}

.heroSwiper .swiper-pagination {
  bottom: 10px;
}

#hero .swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 1 !important;
}

#hero .swiper-pagination-bullet-active {
  background-color: #f8d512 !important;
}

/* Hero Slider Styles */
.heroSwiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.heroSwiper .swiper-slide {
  overflow: hidden;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom, #d6d6d6, transparent);
  z-index: 1;
  pointer-events: none;
}
.scrolled .hero-fade-top {
  background: #fff;
  height: 74px;
}

@media (max-width: 576px) {
	.day-btn2 .day-title{
		font-size:1.3rem;
	}
  #hero {
    min-height: 55vh;
  }
  .hero-fade-top {
    height: 70px;
  }

  .no-pm {
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Overlay alan */
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* yatayda ortala */
  justify-content: center;
  /* hero-content ortada */
  z-index: 2;
}

/* Ortadaki içerik */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Yazı */
.hero-content h1 {
  color: #fff;
  font-weight: 700;
  margin-top: 16px;
}

.hero-child-img {
  max-width: 100%;
  height: auto;
}

/* ============ HEADER / NAVIGATION ============ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.logo-box:hover {
  transform: scale(1.05);
}

.mobile-menu-btn {
  background: white;
  border-radius: 12px;
  padding: 12px;
  border: none;
}

.mobile-menu-btn:hover {
  background: #f0fdf4;
}

#mobile-menu {
  z-index: 2000;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 0;
  box-shadow: none;
  justify-content: center;
}

.nav-link-mobile {
  color: #65605d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link-mobile:hover {
  color: var(--primary-green);
}

.nav-link-desktop {
  color: #65605d;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nav-link-desktop:hover {
  transform: scale(1.1);
  color: #86efac;
}

.btn-ticket {
  background: var(--primary-green);
  color: white;
  border: 1px solid white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.btn-ticket:hover {
  background: var(--primary-green-dark);
  color: white;
}

/* ============ HERO CONTENT ============ */
.hero-content {
  text-align: center;
  z-index: 20;
}

.hero-badge {
  max-width: 700px;
}

/* ALTTAKİ KARAKTER */
.hero-characters {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
}

@media (max-width: 767px) {
  .hero-characters {
    bottom: 22%;
  }

  .hero-badge {
    max-width: 100%;
  }
}

/* ============ ACTIVITY CARDS SECTION ============ */
.activity-cards-section {
  /*margin-top: -80px;*/
  z-index: 50;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.activity-card {
  padding: 20px 10px;
  text-align: center;
  color: white;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.activity-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  position: relative;
  z-index: 2;
  min-height: 76px;
}

.activity-card-icon {
  width: 80px;
  height: 80px;
  margin: auto auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.activity-card:hover .activity-card-icon {
  transform: scale(1.1) rotate(6deg);
}

.activity-card-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* SM */
@media (max-width: 575px) {
  .activity-card h3 {
    font-size: 1.15rem !important;
  }
}

/* MD */
@media (min-width: 576px) and (max-width: 767px) {
  .activity-card h3 {
    font-size: 1.15rem !important;
  }
}

/* LG */
@media (min-width: 768px) and (max-width: 991px) {
  .activity-card h3 {
    font-size: 1.1rem !important;
  }
}

/* LG-XL arası (992–1199) */
@media (min-width: 992px) and (max-width: 1199px) {
  .activity-card h3 {
    font-size: 1.1rem !important;
  }
}

/* XL */
@media (min-width: 1200px) and (max-width: 1399px) {
  .activity-card h3 {
    font-size: 1.11rem !important;
  }
}
@media (min-width: 1400px) {
  .activity-card h3 {
    font-size: 1.25rem !important;
  }
}

.text-green {
  color: var(--primary-green);
}

.text-pink-dark {
  color: var(--primary-pink-dark);
}
.bg-pink {
  background: #d63384;
}
.text-purple {
  color: var(--purple-100);
}

.text-black {
  color: var(--text-black);
}

.text-gray {
  color: var(--text-gray);
}

.text-yellow {
  color: var(--yellow-500);
}

.text-red {
  color: var(--red-100);
}

.text-indigo {
  color: var(--primary-indigo);
}

.card-green {
  background: var(--primary-green);
}

.card-orange {
  background: #f76f1a;
}

.card-cyan {
  background: #0fbfef;
}

.card-pink {
  background: #ff709e;
}

.card-brown {
  background: #964712;
}

.card-yellow {
  background: #ffa700;
}

.card-purple {
  background: #5a11be;
}

@media (max-width: 767px) {
  .activity-card {
    padding: 24px;
  }

  .activity-card h3 {
    font-size: 0.875rem;
  }

  .activity-card-icon {
    width: 64px;
    height: 64px;
  }

  .activity-card-icon img {
    width: 80px;
    height: 80px;
  }
}

/* ============ NEDIR SECTION ============ */
#nedir {
  background: white;
}

/* Video */

.video-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  width: fit-content;
  position: relative;
}

.video-card {
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 1. Resim - 334x413 (sol üst → sağ-alta yaslanır) */
.video-card:nth-child(1) {
  width: 250px;
  aspect-ratio: 334 / 413;
  justify-self: end;
  align-self: end;
}

/* 2. Resim - 422x345 (sağ üst → sol-alta yaslanır) */
.video-card:nth-child(2) {
  width: 316px;
  aspect-ratio: 422 / 345;
  justify-self: start;
  align-self: end;
}

/* 3. Resim - 388x365 (sol alt → sağ-üste yaslanır) */
.video-card:nth-child(3) {
  width: 291px;
  aspect-ratio: 388 / 365;
  justify-self: end;
  align-self: start;
  right: -72px;
}

/* 4. Resim - 317x430 (sağ alt → sol-üste yaslanır) */
.video-card:nth-child(4) {
  width: 238px;
  aspect-ratio: 317 / 430;
  justify-self: start;
  align-self: start;
  left: 73px;
}

/* Play Button */
.play-button-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  left: 40px;
}

.play-button-outer {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.3s ease;
}

.play-button-outer:hover {
  transform: scale(1.1);
}

.play-button-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.r-15 {
  right: 26px;
}

.photo-grid .play-button-center {
  left: 0 !important;
}



@media (max-width: 576px) {
  .video-grid {
    gap: 10px;
  }

  .video-card {
    border-radius: 14px;
  }

  .video-card:nth-child(1) {
    width: 134px;
  }
  .video-card:nth-child(2) {
    width: 169px;
  }
  .video-card:nth-child(3) {
    width: 155px;
  }
  .video-card:nth-child(4) {
    width: 127px;
  }

  .play-button-outer {
    width: 70px;
    height: 70px;
  }

  .play-button-inner {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }
}


@media (min-width: 768px) and (max-width: 991px) {
 .video-card:nth-child(1) {
  width: calc(134px * 1.2); /* 160.8px */
}
.video-card:nth-child(2) {
  width: calc(169px * 1.2); /* 202.8px */
}
.video-card:nth-child(3) {
  width: calc(155px * 1.2); /* 186px */
}
.video-card:nth-child(4) {
  width: calc(127px * 1.2); /* 152.4px */
}

  
  .video-grid{
	  margin:0 auto;
  }

}

/* LG-XL arası (992–1199) */
@media (min-width: 992px) and (max-width: 1199px) {
   .video-card:nth-child(1) {
    width: 184px;
  }
  .video-card:nth-child(2) {
    width: 232px;
  }
  .video-card:nth-child(3) {
    width: 213px;
  }
  .video-card:nth-child(4) {
    width: 174px;
  }

  .video-card {
    border-radius: 18px;
  }

  .play-button-outer {
    width: 90px;
    height: 90px;
  }

  .play-button-inner {
    width: 40px;
    height: 40px;
  }
}

/* XL */
@media (min-width: 1200px) and (max-width: 1399px) {
  .video-card:nth-child(1) {
    width: 184px;
  }
  .video-card:nth-child(2) {
    width: 232px;
  }
  .video-card:nth-child(3) {
    width: 213px;
  }
  .video-card:nth-child(4) {
    width: 174px;
  }
}


/* video end */

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 16px;
}

.info-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-box-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.btn-purple {
  background: var(--purple-100);
  color: white;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1.125rem;
}

.btn-purple:hover {
  background: var(--purple-500);
  color: white;
}
.btn-white {
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 12px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
}

.btn-white:hover {
    background-color: #eef4ff!important;
    border-color: #c7dbff!important;
     box-shadow: 0 4px 10px rgba(31, 63, 214, 0.2);
}

/* Active (basılı hali) */
.btn-white:active {
    background-color: #dbe7ff!important;
    border-color: #a9c2ff!important;
    color: #1a32b3;
    box-shadow: 0 2px 4px rgba(31, 63, 214, 0.25) inset;
}
.btn-indigo {
  background: var(--indigo-100);
  color: white;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1.125rem;
}

.btn-indigo:hover {
  background: var(--indigo-500);
  color: white;
}

.btn-red {
  background: var(--red-100);
  color: white;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1.125rem;
}

.btn-red:hover {
  background: var(--red-500);
  color: white;
}

.btn-yellow {
  background: var(--yellow-500);
  color: white;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1.125rem;
}

.btn-yellow:hover {
  background: var(--yellow-700);
  color: white;
}

.btn-primary-green {
  background: var(--primary-green);
  color: white;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1.125rem;
}

.btn-primary-green:hover {
  background: var(--primary-green-dark);
  color: white;
}

.btn-outline-green {
  background: transparent;
  color: var(--primary-green);
  font-weight: 700;
  padding: 10px 40px;
  border-radius: 50px;
  border: 2px solid var(--primary-green);
  font-size: 1.125rem;
}

.btn-outline-green:hover {
  background: var(--primary-green);
  color: white;
}

.fs-10 {
  font-size: 0.9rem !important;
}

/* ============ NEREDE SECTION ============ */
#nerede {
  background: #f3f4f6;
}

/* Swiper Gallery Styles */
.gallery-section {
  width: 100%;
  overflow: hidden;
}

.swiper_gallery,
.swiper_gallery2 {
  width: 100%;
  overflow: visible;
}

.swiper_gallery .swiper-slide,
.swiper_gallery2 .swiper-slide {
  width: auto;
}

.swiper_gallery .swiper-slide img,
.swiper_gallery2 .swiper-slide img {
  height: 200px;
  width: auto;
  border-radius: 16px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .swiper_gallery .swiper-slide img,
  .swiper_gallery2 .swiper-slide img {
    height: 300px;
  }
}

/* ============ MARQUEE SECTION ============ */

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-left {
  transform: rotateZ(2deg);
  background-color: #5a04d0;
  padding: 10px 0;
}

.marquee-right {
  transform: rotateZ(-1deg);
  background-color: #f77d20;
  padding: 10px 0;
  margin-top: -20px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-left 40s linear infinite;
}

.marquee-track.reverse {
  animation: marquee-right 40s linear infinite;
}

.js-marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee_text {
  font-size: 2.75rem;
  color: #fff;
  font-weight: 500;
  margin: 0 15px;
}

.marquee_separator {
  font-size: 2.75rem;
  color: #fff;
  margin: 0 15px;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* ============ PROGRAM SECTION ============ */
#program {
  background: var(--bg-gray);
}

.day-btn {
  padding: 12px 8px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  background: transparent;
  color: #6b7280;
}

.day-btn.active {
  background: #edeaf2;
  color: var(--text-black);
}

.day-btn .day-title {
  font-weight: bold;
  font-size: 1.1rem;
}

.day-btn .day-date {
  font-size: 0.9rem;
}

.day-btn.active .day-date {
  color: var(--indigo-100);
}

.category-btn {
  padding: 6px 34px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-weight: 700;
  white-space: nowrap;
  background: #edeaf2;
  color: var(--indigo-100);
  width: 100%;
}

.category-btn.active {
  background: #2684fc;
  color: #fff;
}

.program-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #707070;
  padding: 15px;
}

@media (min-width: 576px) {
  .program-item {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 16px;
  }
}

.program-time {
  font-weight: 700;
  font-size: 2rem;
  padding: 0 8px;
}

.program-content {
  color: #374151;
  font-size: 1.5rem;
  padding: 0 8px;
}

@media (min-width: 576px) {
  .program-content {
    padding: 0;
  }
}

.side-activities-bar {
  width: 100%;
  background: #4f46e5;
  color: white;
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.side-activities-bar {
  padding: 15px 20px;
  border-radius: 8px;
}

.side-activities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  align-items: center;
}

.side-activities-list span {
  white-space: nowrap;
}

.side-activities-list .separator {
  color: #fff;
}

/* Tablet ve altı */
@media (max-width: 768px) {
  .side-activities-list {
    gap: 6px 4px;
    font-size: 0.9rem;
  }

  .side-activities-title {
    font-size: 1rem;
  }
}

/* Mobil */
@media (max-width: 576px) {
  .side-activities-bar {
    padding: 12px 15px;
  }

  .side-activities-list {
    gap: 8px;
    justify-content: center;
  }

  /* Mobilde ayırıcıları gizle, grid yapısına geç */
  .side-activities-list .separator {
    display: none;
  }

  .side-activities-list span:not(.separator) {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .side-activities-bar {
    flex-direction: row;
    gap: 32px;
  }
}

.side-activities-title {
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.side-activities-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  opacity: 0.9;
}

.side-activities-list span:nth-child(even) {
  font-size: 1rem;
}

/* ============ NELER VAR SECTION ============ */
#neler-var {
  background: #f2f2f2;
}

.feature-card {
  position: relative;
}

.feature-card-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.feature-card-image img {
  width: 100%;
  object-fit: contain;
  border-radius: 40px;
}

.feature-card-title {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  padding: 12px;
  text-align: center;
}

.feature-card-title h3 {
  font-weight: 700;
  color: #65605d;
  margin: 0;
  font-size: 19px;
}

@media (max-width: 767px) {
  .feature-card-title h3 {
    font-size: 16px;
  }

  .feature-card-title {
    bottom: -6%;
  }
}

.feature-card-link {
  padding: 0px 16px 16px 16px;
  text-align: center;
}

.feature-card-link a {
  color: #6b7280;
  font-size: 0.875rem;
  text-decoration: underline;
}

.feature-card-link a:hover {
  color: #374151;
}

/* ============ KONSERLER SECTION ============ */
#konserler {
  background: black;
}

.concert-hero-image {
  width: 100%;
  height: 256px;
  object-fit: cover;
}

@media (min-width: 576px) {
  .concert-hero-image {
    height: 384px;
  }
}

@media (min-width: 768px) {
  .concert-hero-image {
    height: 500px;
  }
}

@media (min-width: 992px) {
  .concert-hero-image {
    height: 600px;
  }
}

.concert-category-links {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
}

.concert-category-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: background 0.3s ease;
}

.concert-category-link:last-child {
  border-right: none;
}

.concert-category-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.concert-category-label {
  padding: 12px 16px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 10px 10px 0 0;
  color: white;
  background: transparent;
  transition: all 0.3s ease;
}

/* Tablet */
@media (max-width: 991px) {
  .concert-category-label {
    padding: 10px 12px;
    font-size: 0.85rem;
    gap: 6px;
  }
}

/* Mobil */
@media (max-width: 767px) {
  .concert-category-label {
    padding: 8px 10px;
    font-size: 0.75rem;
    gap: 4px;
  }

  .concert-category-label i {
    font-size: 0.7rem;
  }
}

/* Küçük mobil */
@media (max-width: 575px) {
  .concert-category-label {
    padding: 6px 8px;
    font-size: 0.65rem;
    gap: 3px;
  }

  .concert-category-label i {
    font-size: 0.6rem;
  }
}

/* Çok küçük ekranlar */
@media (max-width: 400px) {
  .concert-category-label {
    padding: 5px 6px;
    font-size: 0.6rem;
    gap: 2px;
  }
}

.concert-category-link:hover .concert-category-label {
  background: white;
  color: #f77d20;
}

.concert-category-link.active .concert-category-label {
  background: white;
  color: #f77d20;
  border-radius: 0 10px 0 0;
}

@media (min-width: 576px) {
  .concert-category-label {
    padding: 24px;
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .concert-category-label {
    font-size: 1.5rem;
  }
}

.artist-card {
  position: relative;
  aspect-ratio: 3/4.5;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.artist-card:hover img {
  transform: scale(1.05);
}

.artist-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 16px;
    text-align: center;
    color: #fff;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
    z-index: 2;
}

.artist-card:hover .artist-info {
    opacity: 1;
    transform: translateY(0);
}

/* SADECE background opacity */
.artist-info::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    
}

.artist-info::before {
    background: rgba(151, 17, 140, 0.55);
}

.artist-info h4{
	margin-bottom:0;
	font-weight:bold!important;
}




@media (min-width: 576px) {
  .artist-card-name {
    bottom: 12px;
    left: 12px;
    font-size: 1rem;
  }
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 576px) {
  .slider-controls {
    gap: 16px;
  }
}

.slider-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 576px) {
  .slider-btn {
    width: 40px;
    height: 40px;
  }
}

.slider-progress {
  flex: 1;
  height: 4px;
  background: white;
  border-radius: 4px;
  overflow: hidden;
}

#konserler .slider-progress-fill {
  height: 100%;
  background: var(--primary-pink-dark);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.concert-content-section h2 span {
  color: #ec4899;
}

.btn-pink {
  background: #ec4899;
  color: white;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-pink:hover {
  background: #db2777;
  color: white;
}

.btn-pink-dark {
  background: var(--primary-pink-dark);
  color: white;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-pink-dark:hover {
  background: var(--primary-pink-dark);
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 10px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 1);
  transition: background 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 1);
  color: black;
}

/* ============ SANATCILAR SECTION ============ */
#sanatcilar {
  background: white;
}

.artist-grid-card {
  cursor: pointer;
}

.artist-grid-image {
  position: relative;
  aspect-ratio: 3/5;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}

.artist-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.artist-grid-card:hover .artist-grid-image img {
  transform: scale(1.05);
}

.artist-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-play-btn > div {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.artist-grid-card:hover .artist-play-btn > div {
  transform: scale(1.1);
}

.artist-play-btn i {
  color: #374151;
  transform: translateX(2px);
}

.artist-grid-name {
  font-weight: 700;
  color: #65605d;
  text-align: center;
  font-size: 0.875rem;
}

/* ============ BILET SECTION ============ */
#bilet {
  background: var(--primary-pink);
}

.ticket-section-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eee;
}

.ticket-tab-btn {
  padding: 8px 32px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  transition: background 0.3s ease;
}

.ticket-tab-btn.active {
  background: var(--primary-pink-dark);
  color: white;
}

.ticket-tab-btn:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid white;
}

.ticket-tab-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.3);
}

.ticket-tab-pane .slider-progress-fill {
  background: var(--primary-pink-dark);
}

@media (min-width: 576px) {
  .ticket-tab-btn {
    padding: 12px 32px;
  }
}

.ticket-card {
  background: white;
  border-radius: 25px;
  padding: 20px;
}

.ticket-border {
  border: 1px solid #707070;
}

.ticket-header {
  background: #f0efef;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  margin-bottom: 24px;
}

.ticket-header h3 {
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 0px;
  font-size: 1.2rem;
}

.ticket-header h4 {
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 0px;
}

.ticket-price {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 35px;
}

.ticket-price.pink {
  color: #ec4899;
}

.ticket-price.indigo {
  color: #6366f1;
}

.ticket-features {
  padding: 0 13px;
}

.ticket-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.ticket-features li {
  display: block;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.ticket-features li i.pink {
  color: #ec4899;
}

.ticket-features li i.indigo {
  color: #6366f1;
}

.ticket-warning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  line-height: 14px;
}

.ticket-warning.pink {
  color: #ec4899;
}

.ticket-warning.indigo {
  color: #6366f1;
}

.btn-ticket-pink {
  width: 100%;
  padding: 12px;
  background: var(--primary-pink-dark);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.btn-ticket-pink:hover {
  background: var(--primary-pink-dark);
  color: white;
}

.btn-ticket-indigo {
  width: 100%;
  padding: 12px;
  background: #6366f1;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.btn-ticket-indigo:hover {
  background: #4f46e5;
  color: white;
}

/* Ticket Tab Panel Styles */
.ticket-tab-content {
  position: relative;
}

.ticket-tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ticket-tab-pane.active {
  display: block;
  opacity: 1;
}

/* Ticket Swiper Styles */
.ticketSwiper {
  width: 100%;
  padding: 10px 0;
}

.ticketSwiper .swiper-slide {
  width: 280px;
  height: auto;
}

@media (min-width: 576px) {
  .ticketSwiper .swiper-slide {
    width: 320px;
  }
}

/* Purple/Indigo Ticket Card Variant */
.ticket-card-purple {
  border: 3px solid #6366f1;
}

.ticket-header-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.ticket-header-purple h3,
.ticket-header-purple h4 {
  color: white !important;
}

.ticket-header-purple .ticket-price {
  color: white !important;
}

/* ============ KAMPANYALAR SECTION ============ */
#kampanyalar {
  background: white;
}

.campaign-card {
  background: #f2f2f2;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.campaign-card-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.campaign-card-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-black);
  margin-bottom: 12px;
}

.campaign-card-content p {
  color: var(--text-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.campaign-card-content a {
  color: var(--text-black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
}

.campaign-card-content a span {
  text-decoration: underline;
}

.campaign-card-image {
  width: 100%;
  padding: 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .campaign-card-image {
    width: 240px;
  }
}

.campaign-card-image img {
  width: 100%;
  height: 192px;
  border-radius: 16px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .campaign-card-image img {
    height: 100%;
  }
}

.campaign-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .campaign-controls {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.campaign-slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

@media (min-width: 768px) {
  .campaign-slider-controls {
    width: auto;
    gap: 16px;
  }
}

.campaign-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: transparent;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.campaign-nav-btn:hover {
  background: #f3f4f6;
}

.campaign-progress {
  flex: 1;
  height: 4px;
  background: #d1d5db;
  border-radius: 4px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .campaign-progress {
    flex: none;
    width: 256px;
  }
}

.campaign-progress-fill {
  height: 100%;
  background: #65605d;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.campaign-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-black);
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
}

.campaign-all-link span:first-child {
  text-decoration: underline;
}

.campaign-all-link .icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ SSS SECTION ============ */
#sss {
  background: #f3f4f6;
}

.faq-container {
  border: 1px solid #707070;
  border-right: 0;
  border-radius: 24px 0 0 24px;
  padding: 12px 0;
}

.faq-item {
  overflow: hidden;
}

.faq-item:not(:last-child) {
  border-bottom: 1px solid #707070;
}

.faq-toggle {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
}

.faq-toggle span {
  font-weight: bold;
  color: #65605d;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

.faq-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content p {
  color: #6b7280;
  line-height: 1.6;
  padding-bottom: 20px;
}

/* ============ SPONSORLAR SECTION ============ */
.sponsor-1 {
  max-width: 1418px;
  width: 100%;
  margin: 0 auto;
}

#sponsor .row > * {
  margin-top: 1.875rem !important;
}

.sponsor-section {
  margin-bottom: 80px;
}

.sponsors-type {
  position: relative;
  /*left: 25px;*/
}

.sponsors-type h2 {
  font-weight: bold;
}

.sponsors-type::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: var(--indigo-100);
  left: -25px;
}

.sponsor-wrapper {
  --bs-border-color: rgba(104, 102, 102, 0.3);
  border: 2px solid var(--bs-border-color);
  border-radius: 10px;
  width: 264px;
  height: 80px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 3px;
  overflow: hidden;
}

@media (max-width: 1399.98px) {
  .sponsor-wrapper {
    width: 225px;
    height: 68px;
  }
}

@media (max-width: 1199.98px) {
  .sponsor-wrapper {
    width: 188px;
    height: 70px;
  }
}

@media (max-width: 767.98px) {
  .sponsor-wrapper {
    width: 100%;
    height: 60px;
  }
}

.sponsor-wrapper img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/* ============ UYGULAMA SECTION ============ */
#uygulama {
  background: var(--primary-blue);
}

.phone-mockup {
  width: 256px;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
}

@media (min-width: 768px) {
  .phone-mockup {
    width: 288px;
  }
}

.app-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
}

@media (min-width: 768px) {
  .app-title {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .app-title {
    font-size: 4.5rem;
  }
}

.app-subtitle {
  font-size: 1rem;
  color: white;
}

@media (min-width: 768px) {
  .app-subtitle {
    font-size: 1.875rem;
  }
}

@media (min-width: 992px) {
  .app-subtitle {
    font-size: 2.25rem;
  }
}

.app-description {
  color: white;
  font-size: 0.875rem;
  line-height: 1.6;
}

.app-description p {
  margin-bottom: 16px;
}

.store-badges a {
  display: inline-block;
}

.store-badges img {
  height: 48px;
}

/* ============ FOOTER ============ */
#iletisim {
  background: var(--bg-light);
}



@media (min-width: 768px) {
	.footer-logo {
        width: 100%;
        max-height: 230px;
        object-fit: contain;
    }
}

.footer-nav {
  display: block;
}

.footer-nav .nav-link {
  color: var(--text-black);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.25rem;
}

.footer-nav .nav-link:hover {
  color: var(--primary-green);
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn-footer-ticket {
  background: var(--primary-green);
  color: white;
  font-weight: 600;
  padding: 10px 60px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-footer-ticket:hover {
  background: #43a047;
  color: white;
}

@media (max-width: 991px) {
  .btn-footer-ticket {
    padding: 10px 20px;
    margin-right: 0;
  }
}

.store-badge-sm {
  height: 40px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.social-link i {
  font-size: 1.125rem;
}

.contact-info-box {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.125rem;
}

.contact-details h4 {
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
  color: var(--text-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--primary-green);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 256px;
}

@media (min-width: 992px) {
  .map-container {
    height: auto;
  }
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
}

.footer-copyright {
  background: white;
  padding: 16px 0 32px;
}

.footer-copyright p {
  color: var(--text-black);
  font-size: 0.875rem;
  margin: 0;
}

/* ============ UTILITY CLASSES ============ */
.text-gray-custom {
  color: var(--text-gray);
}

.text-dark-custom {
  color: var(--text-black);
}

.bg-gray-custom {
  background: var(--bg-gray);
}

.bg-light-custom {
  background: var(--bg-light);
}

.rounded-2xl {
  border-radius: 16px;
}

.rounded-3xl {
  border-radius: 24px;
}

.shadow-custom {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.shadow-lg-custom {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.transition-custom {
  transition: all 0.3s ease;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Kampanyalar Swiper için özel stiller */
.kampanyalarSwiper {
  overflow: hidden;
}

.kampanyalarSwiper .swiper-slide {
  height: auto;
}

.kampanyalarSwiper .swiper-wrapper {
  padding-bottom: 40px;
}

.kampanyalarSwiper .swiper-pagination-bullets,
.kampanyalarSwiper .swiper-pagination-custom,
.kampanyalarSwiper .swiper-pagination-fraction {
  bottom: 0px !important;
}

.kampanyalarSwiper .swiper-pagination-bullet-active {
  background-color: #5a5c61;
}

/* ============ INLINE STYLE REPLACEMENTS ============ */
/* Loading Screen */
.loading-logo {
  width: 128px;
  height: auto;
  margin-bottom: 16px;
}

/* Logo Boxes */
.logo-box-sm img {
  width: 80px !important;
}

.logo-box-lg img {
  width: 111px !important;
}

/* Desktop Nav Layout */
.desktop-nav-layout {
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  position: relative;
  z-index: 1111;
}

/* Hero Characters */
.hero-child-img {
  width: 400px;
  max-width: 50vw;
}

/* Section Titles */
.section-title-lg {
  font-size: 2.5rem;
}

.section-title-xl {
  font-size: 3rem;
}

/* Nerede Section */
.nerede-description {
  max-width: 900px;
}

/* Program Section */
.program-highlight {
  color: var(--indigo-100);
}

/* Concert Section */
.concert-subtitle {
  color: var(--text-pink);
  font-size: 1.5rem;
}

/* Bilet Section */
#bilet {
  background: var(--primary-pink);
}

/* SSS Section */
.sss-title {
  color: var(--indigo-100);
  font-size: 2.5rem;
}

/* Uygulama Section */
#uygulama {
  background: var(--primary-blue);
}

/* Footer */
#iletisim {
  background: var(--bg-light);
}

.footer-logo-img {
  height: 40px;
}

/* Ek CSS */
.artistSwiper {
  overflow: hidden;
}

.artistSwiper .swiper-slide {
  height: auto;
}

.slider-progress-fill {
  transition: width 0.3s ease;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-progress {
  width: 150px;
  height: 4px;
  background-color: rgba(255, 255, 255);
  border-radius: 2px;
  overflow: hidden;
}

.slider-progress-fill {
  height: 100%;
  background-color: #ff4081;
  /* veya senin pink rengin */
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 0%;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.breadcrumb-item a {
  color: #d63384;
  text-decoration: none;
}

.brand-image {
  padding: 2px 0;
}

.white-backdrop {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
}

#popupModal .modal-content {
  border-radius: 40px !important;
}

.mt-6 {
  margin-top: 3rem !important;
}
.mt-7 {
  margin-top: 3.5rem !important;
}
.mt-8 {
  margin-top: 4rem !important;
}
.mt-9 {
  margin-top: 4.5rem !important;
}
.mt-10 {
  margin-top: 5rem !important;
}

.mb-6 {
  margin-bottom: 3rem !important;
}
.mb-7 {
  margin-bottom: 3.5rem !important;
}
.mb-8 {
  margin-bottom: 4rem !important;
}
.mb-9 {
  margin-bottom: 4.5rem !important;
}
.mb-10 {
  margin-bottom: 5rem !important;
}

.ml-6 {
  margin-left: 3rem !important;
}
.ml-7 {
  margin-left: 3.5rem !important;
}
.ml-8 {
  margin-left: 4rem !important;
}
.ml-9 {
  margin-left: 4.5rem !important;
}
.ml-10 {
  margin-left: 5rem !important;
}

.mr-6 {
  margin-right: 3rem !important;
}
.mr-7 {
  margin-right: 3.5rem !important;
}
.mr-8 {
  margin-right: 4rem !important;
}
.mr-9 {
  margin-right: 4.5rem !important;
}
.mr-10 {
  margin-right: 5rem !important;
}

.pt-6 {
  padding-top: 3rem !important;
}
.pt-7 {
  padding-top: 3.5rem !important;
}
.pt-8 {
  padding-top: 4rem !important;
}
.pt-9 {
  padding-top: 4.5rem !important;
}
.pt-10 {
  padding-top: 5rem !important;
}

.pb-6 {
  padding-bottom: 3rem !important;
}
.pb-7 {
  padding-bottom: 3.5rem !important;
}
.pb-8 {
  padding-bottom: 4rem !important;
}
.pb-9 {
  padding-bottom: 4.5rem !important;
}
.pb-10 {
  padding-bottom: 5rem !important;
}

.pl-6 {
  padding-left: 3rem !important;
}
.pl-7 {
  padding-left: 3.5rem !important;
}
.pl-8 {
  padding-left: 4rem !important;
}
.pl-9 {
  padding-left: 4.5rem !important;
}
.pl-10 {
  padding-left: 5rem !important;
}

.pr-6 {
  padding-right: 3rem !important;
}
.pr-7 {
  padding-right: 3.5rem !important;
}
.pr-8 {
  padding-right: 4rem !important;
}
.pr-9 {
  padding-right: 4.5rem !important;
}
.pr-10 {
  padding-right: 5rem !important;
}

/* ========== SM ========== */
@media (min-width: 576px) {
  /* margin */

  .mt-sm-6 {
    margin-top: 3rem !important;
  }
  .mt-sm-7 {
    margin-top: 3.5rem !important;
  }
  .mt-sm-8 {
    margin-top: 4rem !important;
  }
  .mt-sm-9 {
    margin-top: 4.5rem !important;
  }
  .mt-sm-10 {
    margin-top: 5rem !important;
  }

  .mb-sm-6 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 3.5rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 4.5rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 5rem !important;
  }

  .ml-sm-6 {
    margin-left: 3rem !important;
  }
  .ml-sm-7 {
    margin-left: 3.5rem !important;
  }
  .ml-sm-8 {
    margin-left: 4rem !important;
  }
  .ml-sm-9 {
    margin-left: 4.5rem !important;
  }
  .ml-sm-10 {
    margin-left: 5rem !important;
  }

  .mr-sm-6 {
    margin-right: 3rem !important;
  }
  .mr-sm-7 {
    margin-right: 3.5rem !important;
  }
  .mr-sm-8 {
    margin-right: 4rem !important;
  }
  .mr-sm-9 {
    margin-right: 4.5rem !important;
  }
  .mr-sm-10 {
    margin-right: 5rem !important;
  }

  /* padding */
  .pt-sm-6 {
    padding-top: 3rem !important;
  }
  .pt-sm-7 {
    padding-top: 3.5rem !important;
  }
  .pt-sm-8 {
    padding-top: 4rem !important;
  }
  .pt-sm-9 {
    padding-top: 4.5rem !important;
  }
  .pt-sm-10 {
    padding-top: 5rem !important;
  }

  .pb-sm-6 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 3.5rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 4.5rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 5rem !important;
  }

  .pl-sm-6 {
    padding-left: 3rem !important;
  }
  .pl-sm-7 {
    padding-left: 3.5rem !important;
  }
  .pl-sm-8 {
    padding-left: 4rem !important;
  }
  .pl-sm-9 {
    padding-left: 4.5rem !important;
  }
  .pl-sm-10 {
    padding-left: 5rem !important;
  }

  .pr-sm-6 {
    padding-right: 3rem !important;
  }
  .pr-sm-7 {
    padding-right: 3.5rem !important;
  }
  .pr-sm-8 {
    padding-right: 4rem !important;
  }
  .pr-sm-9 {
    padding-right: 4.5rem !important;
  }
  .pr-sm-10 {
    padding-right: 5rem !important;
  }
}

/* ========== LG ========== */
@media (min-width: 992px) {
  .mt-lg-6 {
    margin-top: 3rem !important;
  }
  .mt-lg-7 {
    margin-top: 3.5rem !important;
  }
  .mt-lg-8 {
    margin-top: 4rem !important;
  }
  .mt-lg-9 {
    margin-top: 4.5rem !important;
  }
  .mt-lg-10 {
    margin-top: 5rem !important;
  }

  .mb-lg-6 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 3.5rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 4.5rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 5rem !important;
  }

  .ml-lg-6 {
    margin-left: 3rem !important;
  }
  .ml-lg-7 {
    margin-left: 3.5rem !important;
  }
  .ml-lg-8 {
    margin-left: 4rem !important;
  }
  .ml-lg-9 {
    margin-left: 4.5rem !important;
  }
  .ml-lg-10 {
    margin-left: 5rem !important;
  }

  .mr-lg-6 {
    margin-right: 3rem !important;
  }
  .mr-lg-7 {
    margin-right: 3.5rem !important;
  }
  .mr-lg-8 {
    margin-right: 4rem !important;
  }
  .mr-lg-9 {
    margin-right: 4.5rem !important;
  }
  .mr-lg-10 {
    margin-right: 5rem !important;
  }

  .pt-lg-6 {
    padding-top: 3rem !important;
  }
  .pt-lg-7 {
    padding-top: 3.5rem !important;
  }
  .pt-lg-8 {
    padding-top: 4rem !important;
  }
  .pt-lg-9 {
    padding-top: 4.5rem !important;
  }
  .pt-lg-10 {
    padding-top: 5rem !important;
  }

  .pb-lg-6 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 3.5rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 4.5rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 5rem !important;
  }

  .pl-lg-6 {
    padding-left: 3rem !important;
  }
  .pl-lg-7 {
    padding-left: 3.5rem !important;
  }
  .pl-lg-8 {
    padding-left: 4rem !important;
  }
  .pl-lg-9 {
    padding-left: 4.5rem !important;
  }
  .pl-lg-10 {
    padding-left: 5rem !important;
  }

  .pr-lg-6 {
    padding-right: 3rem !important;
  }
  .pr-lg-7 {
    padding-right: 3.5rem !important;
  }
  .pr-lg-8 {
    padding-right: 4rem !important;
  }
  .pr-lg-9 {
    padding-right: 4.5rem !important;
  }
  .pr-lg-10 {
    padding-right: 5rem !important;
  }
}

/* ========== XL ========== */
@media (min-width: 1200px) {
  .mt-xl-6 {
    margin-top: 3rem !important;
  }
  .mt-xl-7 {
    margin-top: 3.5rem !important;
  }
  .mt-xl-8 {
    margin-top: 4rem !important;
  }
  .mt-xl-9 {
    margin-top: 4.5rem !important;
  }
  .mt-xl-10 {
    margin-top: 5rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 5rem !important;
  }

  .ml-xl-6 {
    margin-left: 3rem !important;
  }
  .ml-xl-7 {
    margin-left: 3.5rem !important;
  }
  .ml-xl-8 {
    margin-left: 4rem !important;
  }
  .ml-xl-9 {
    margin-left: 4.5rem !important;
  }
  .ml-xl-10 {
    margin-left: 5rem !important;
  }

  .mr-xl-6 {
    margin-right: 3rem !important;
  }
  .mr-xl-7 {
    margin-right: 3.5rem !important;
  }
  .mr-xl-8 {
    margin-right: 4rem !important;
  }
  .mr-xl-9 {
    margin-right: 4.5rem !important;
  }
  .mr-xl-10 {
    margin-right: 5rem !important;
  }

  .pt-xl-6 {
    padding-top: 3rem !important;
  }
  .pt-xl-7 {
    padding-top: 3.5rem !important;
  }
  .pt-xl-8 {
    padding-top: 4rem !important;
  }
  .pt-xl-9 {
    padding-top: 4.5rem !important;
  }
  .pt-xl-10 {
    padding-top: 5rem !important;
  }

  .pb-xl-6 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 5rem !important;
  }

  .pl-xl-6 {
    padding-left: 3rem !important;
  }
  .pl-xl-7 {
    padding-left: 3.5rem !important;
  }
  .pl-xl-8 {
    padding-left: 4rem !important;
  }
  .pl-xl-9 {
    padding-left: 4.5rem !important;
  }
  .pl-xl-10 {
    padding-left: 5rem !important;
  }

  .pr-xl-6 {
    padding-right: 3rem !important;
  }
  .pr-xl-7 {
    padding-right: 3.5rem !important;
  }
  .pr-xl-8 {
    padding-right: 4rem !important;
  }
  .pr-xl-9 {
    padding-right: 4.5rem !important;
  }
  .pr-xl-10 {
    padding-right: 5rem !important;
  }
}

.days-grid,
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  width: auto;
}

@media (max-width: 767px) {
  .flex-fill-mobile {
    flex: 1 1 auto;
  }
}
@media (max-width: 767.98px) {
  #header {
    position: absolute;
    padding-top: 0 !important;
  }

  .m-menu {
    position: relative;
    top: 15px;
  }

  #mobile-menu-btn {
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 1001;
  }
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 55;
  text-decoration: none;
}

.sponsor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sponsor-item {
    width: calc(33.333% - 10px);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 20px;
}

.sponsor-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


#logo-scrolled {
  display: none;
}

#header.scrolled #logo-default {
  display: none;
}

#header.scrolled #logo-scrolled {
  display: block;
}

#cookiePopup {
  background-color: #ffffff;
  position: fixed;
  font-size: 14px;
  width: 70vw;
  max-width: 42.85em;
  box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
  font-family: "Poppins", sans-serif;
  text-align: justify;
  line-height: 1.8em;
  padding: 2em 1.4em;
  border-radius: 6px;
  transition: all 0.5s ease-in;
  z-index: 1000;
}
#cookiePopup img {
  display: block;
  width: 3.75em;
  transform: translateZ(0);
  position: relative;
  margin: auto;
}
#cookiePopup p {
  text-align: center;
  margin: 1.4em 0;
}
#cookiePopup button {
  background-color: #6859fe;
  border: none;
  color: #ffffff;
  font-size: 1.2em;
  padding: 1em 1.4em;
  display: block;
  position: relative;
  margin: auto;
  border-radius: 5px;
}
#cookiePopup a {
  color: #6859fe;
}

.hide {
  visibility: hidden;
  bottom: 0;
  right: 2em;
}
.show {
  visibility: visible;
  bottom: 2em;
  right: 2em;
}
@media only screen and (max-width: 37.5em) {
  #cookiePopup {
    width: 100%;
  }
  .hide {
    bottom: 2em;
    right: 0;
  }
  .show {
    right: 0;
    bottom: 0;
  }
}

/* Kampanyalar Swiper için özel stiller */
#biletler {
  overflow: hidden;
}

#biletler .swiper-slide {
  height: auto;
}

#biletler .swiper-wrapper {
  padding-bottom: 40px;
}

#biletler .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
}
#biletler .swiper-pagination-bullets,
#biletler .swiper-pagination-custom,
#biletler .swiper-pagination-fraction {
  bottom: 0px !important;
}

#biletler .swiper-pagination-bullet-active {
  background-color: #5a5c61;
}

.day-btn2 {
  border-radius: 12px;
  align-items: center;
  border: none;
  background: transparent;
  color: #fff;

  padding-top: 10px;
  padding-bottom: 10px;
}

.day-btn2 .day-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.6;
  font-weight: 400;
}
.day-btn2.active {
  background: #a81663;
  opacity: 1 !important;
  border-radius: 12px;
  color: #fff;
}
.day-btn2.active .day-title {
  color: #fff;
  opacity: 1;
  font-weight: bold;
}
.day-btn2 .day-date {
  font-size: 0.9rem;
}

.day-btn2.active .day-date {
  color: var(--indigo-100);
}

.ticket-sponsor {
  width: 130px; /* hepsi aynı genişlik */
  height: 80px; /* hepsi aynı yükseklik */
  border-radius: 29px;
  border: 1px #707070 solid;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.ticket-sponsor img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

footer .ticket-sponsor {
  width: 90px;
  height: 50px;
  border: 0px;
  padding-top: 0;
  padding-bottom: 0;
}
.ticket-sponsor-container .ticket-sponsor {
  width: 100px;
  height: 60px;
  border: 0px;
  padding-top: 0;
  padding-bottom: 0;
}
.tcket-border {
  border: 1px #707070 solid;
  border-radius: 15px;
}

.ticket-sponsor-container .ticket-sponsor:hover {
  transform: scale(1.1);
}

.ticket-card {
  position: relative;
  overflow: hidden;
}

.ticket-slide-panel {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f0efef;
  border-top: 2px solid #eaeaea;
  transition: bottom 0.4s ease;
  z-index: 10;
  padding: 20px;
  padding-top: 12px;
}

.ticket-slide-panel.active {
  bottom: -35%;
}
.ticket-slide-panel.active.bttm-26 {
  bottom: -26%;
}
.ticket-slide-panel.active.bttm-38 {
  bottom: -38%;
}
#bilet .ticket-slide-panel.active {
  padding: 0;

  padding-top: 12px;
}

@media (max-width: 576px) {
  #bilet .ticket-slide-panel.active {
    padding: 5px 12px;
    padding-bottom: 0;
  }
  .ticket-slide-panel.active {
    bottom: -42%;
  }

  .ticket-slide-panel.active.bttm-26 {
    bottom: 0;
  }
  .ticket-slide-panel.active.bttm-38 {
    bottom: -20%;
  }
}



.modern-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
  transition: all .4s ease;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0,0,0,.22);
}

/* IMAGE */
.modern-card-image {
  position: relative;
  padding: 20px;
}

.modern-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}

/* BADGE */
.modern-badge {
  position: absolute;
  top: 26px;
  right: 26px;
  background: #7a5c4b;
  color: #fff;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
}

/* ICON */
.modern-icon {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 44px;
  height: 44px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BODY */
.modern-card-body {
  padding: 8px 24px 28px;
}

.modern-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f1f1f;
}

.modern-card-body p {
  font-size: 14.5px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* LIST */ 
.modern-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
}
@media (max-width: 576px) {
	.modern-list {
	  grid-template-columns: repeat(2, 1fr);

	}
	.modern-list li{
		    margin-bottom: 5px;
	}
	
	.modern-card-image{
		    padding: 15px;
	}
	.modern-card-body {
		padding: 8px 15px;
	}
}
.modern-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: #3a3a3a;
}

.modern-list li::before {
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url("../images/check.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 576px) {
	.day-btn2 .day-title{
		font-size:1.3rem;
	}
}


.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    display: flex;
    align-items: center;

    background-color: #25D366;
    color: #fff;
    text-decoration: none;

    padding: 12px 10px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);

    transition: all 0.3s ease;
}

/* Hover efekti */
.whatsapp-btn:hover {
    background-color: #128C7E !important;
    transform: translateY(-4px);
}

/* Yazı başlangıçta kapalı */
.whatsapp-text {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;

    margin-left: 0;
    transition: max-width .4s ease, margin .3s ease;
    font-weight: 600;
}

/* Hover olunca açılıyor */
.whatsapp-btn:hover .whatsapp-text {
    max-width: 160px;
    margin-left: 10px;
}

/* MOBİLDE whatsapp butonu normal buton gibi davransın */
@media (max-width: 767.98px) {

    .whatsapp-btn {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;

        justify-content: center;
        padding: 12px 10px; 
        border-radius: 12px;
        box-shadow: none;
    }

    /* Mobilde yazı gizlenmesin */
    .whatsapp-text {
        max-width: none !important;
        margin-left: 8px !important;
    }

    .whatsapp-btn:hover {
        transform: none;
    }
}





/** güvelnik **/
/* ===============================
   GÜVENLİK SECTION
==================================*/
.guvenlik-section {
    background-color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-top: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
}

/* ===============================
   TYPOGRAPHY
==================================*/
.section-badge {
    color: #f79431;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.text-light-gray {
    color: #666;
}

.text-gold {
    color: #f79431; /* Turuncu zeminde kontrast için koyu */
}

/* ===============================
   GLASS CARDS
==================================*/
.glass-panel {
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #f79431;
}


/* ===============================
   ALT BİLGİ BOX
==================================*/
.info-box2 {
    background: #fff8f1;
    border: 1px solid rgba(247, 148, 49, 0.3);
    transition: all 0.3s ease;
}

.info-box2:hover {
    background: #fff1e6;
}

/* ===============================
   IMAGE SIDE
==================================*/

.guvenlik-section img {
    border-radius: 1.5rem;
    border: 1px solid #eeeeee;
}

/* Floating Card */
.floating-card {
    bottom: -20px;
    right: 0;
    max-width: 220px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

/* ===============================
   ICON STYLES
==================================*/

.guvenlik-section i {
    min-width: 28px;
    transition: transform 0.3s ease;
}

.glass-panel:hover i {
    transform: scale(1.1);
}

/* ===============================
   RESPONSIVE FIXES
==================================*/

@media (max-width: 991px) {
    .floating-card {
		position: relative !important;
		bottom: auto;
		right: auto;
		margin-top: -55px;
		
		margin-left: auto;
		margin-right: auto;
		display: block; 
		width: 80%; 
	}
}

.ticket-sponsor-wrapper {
    display: grid;
    gap: 1rem;
}

/* Mobilde 3'lü */
@media (max-width: 576px) {
    .ticket-sponsor-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
	
	#biletinfo .ticket-sponsor {
		width: 100px;
		height: 70px;
	}
}

/* Tablet */
@media (min-width: 577px) and (max-width: 991px) {
    .ticket-sponsor-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop */
@media (min-width: 992px) {
    .ticket-sponsor-wrapper {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 999px;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;


  
}


.swiper-button-next:active,
.swiper-button-prev:active {
  transform: scale(0.98);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px; /* ok boyutu */
  font-weight: 700;
}

/* Disabled state */
.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Daha erişilebilir odak görünümü */
.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible {

  outline-offset: 3px;
}

/* Mobilde biraz küçült */
@media (max-width: 640px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }
}

.swiper-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  
  display: flex;
  gap: 16px; /* buton arası boşluk */
  z-index: 10;
}

/* Swiper default left/right konumlarını iptal et */
.swiper-button-next,
.swiper-button-prev {
  position: static; /* absolute yerine normal akış */
  margin: 0;
}



      :root {
        --bg: #0b1220;
        --card: rgba(255, 255, 255, .08);
        --card2: rgba(255, 255, 255, .06);
        --stroke: rgba(255, 255, 255, .12);
        --text: rgba(255, 255, 255, .92);
        --muted: rgba(255, 255, 255, .68);
        --shadow: 0 26px 80px rgba(0, 0, 0, .55);
        --shadow2: 0 18px 44px rgba(0, 0, 0, .45);
        --r: 18px;
        --g1: linear-gradient(135deg, #22c55e 0%, #16a34a 40%, #0ea5e9 115%);
        --g2: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 55%, #ec4899 140%);
        --g3: linear-gradient(135deg, #0ea5e9 0%, #6366f1 55%, #a855f7 140%);

        /* ✅ SADECE FEATURED için ek */
        --gFeatured: linear-gradient(135deg, #f59e0b 0%, #f97316 55%, #ec4899 140%);
        --featuredStroke: rgba(245, 158, 11, .38);
      }

      /* Section background */
      .pricing-wrap {
        padding: 64px 16px;
        background:
          radial-gradient(900px 500px at 12% 10%, rgba(34, 197, 94, .35), transparent 60%),
          radial-gradient(900px 500px at 85% 30%, rgba(168, 85, 247, .30), transparent 55%),
          radial-gradient(900px 500px at 65% 95%, rgba(14, 165, 233, .25), transparent 60%),
          var(--bg);
        color: var(--text);
      }

      .pricing-grid {
        max-width: 1160px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr 1fr 1fr;
        gap: 16px;
        align-items: stretch;
      }

      /* Left panel (hero/info) */
      .pricing-info {
        border-radius: var(--r);
        overflow: hidden;
        position: relative;
        background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .06));
        border: 1px solid var(--stroke);
        box-shadow: var(--shadow2);
        min-height: 560px;
      }

      .pricing-info::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(180deg, rgba(11, 18, 32, .15) 0%, rgba(11, 18, 32, .65) 62%, rgba(11, 18, 32, .92) 100%);
        pointer-events: none;
        z-index: 1;
      }

      .pricing-info .media {
        position: absolute;
        inset: 0;
        background: #111827;
      }

      .pricing-info .media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1.05);
        filter: saturate(1.02) contrast(1.02);
      }

      .pricing-info .content {
        position: relative;
        z-index: 2;
        padding: 36px 30px;
        display: flex;
        flex-direction: column;
        height: 100%;
      }

      .pricing-info .kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        letter-spacing: .6px;
        text-transform: uppercase;
        font-size: 12px;
        color: rgba(255, 255, 255, .85);
      }

      .pricing-info .kicker .pill {
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .16);
        backdrop-filter: blur(10px);
      }

      .pricing-info h2 {
        margin: 14px 0 10px;
        font-size: clamp(32px, 3.2vw, 46px);
        line-height: 1.05;
        letter-spacing: -.6px;
      }

      .pricing-info p {
        margin: 0 0 18px;
        color: var(--muted);
        max-width: 38ch;
        font-size: 16px;
        line-height: 1.55;
      }

      .info-list {
        list-style: none;
        padding: 0;
        margin: 8px 0 0;
        display: grid;
        gap: 12px;
      }

      .info-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        color: rgba(255, 255, 255, .86);
        font-size: 15px;
      }

      .dot {
        width: 18px;
        height: 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        margin-top: 1px;
      }

      .dot::after {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 99px;
        background: rgba(255, 255, 255, .75);
      }

      .pricing-info .footer {
        margin-top: auto;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, .14);
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        align-items: center;
      }

      .mini {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .10);
        border: 1px solid rgba(255, 255, 255, .14);
        backdrop-filter: blur(10px);
        color: rgba(255, 255, 255, .86);
        font-size: 13px;
      }

      .mini i {
        opacity: .9;
      }

      /* Plan cards */
      .plan-card {
        border-radius: var(--r);
        background: linear-gradient(180deg, var(--card), var(--card2));
        border: 1px solid var(--stroke);
        box-shadow: var(--shadow2);
        overflow: hidden;
        position: relative;
        min-height: 560px;
        display: flex;
        flex-direction: column;
        transform: translateZ(0);
        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      }

      .plan-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: rgba(255, 255, 255, .18);
      }

      .plan-head {
        padding: 26px 22px 16px;
        display: flex;
        align-items: flex-start;
        gap: 14px;
      }

      .icon-bubble {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .16);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
        flex: 0 0 auto;
      }

      .icon-bubble i {
        font-size: 20px;
        color: rgba(255, 255, 255, .92);
      }

      .plan-title {
        display: flex;
        flex-direction: column;
        gap: 3px;
        min-width: 0;
      }

      .plan-title .name {
        font-weight: 900;
        letter-spacing: .2px;
        font-size: 18px;
        line-height: 1.15;
      }

      .plan-title .sub {
        font-size: 12px;
        letter-spacing: .55px;
        text-transform: uppercase;
        color: var(--muted);
      }

      .plan-price .label {
        font-size: 12px;
        color: rgba(255, 255, 255, .72);
        letter-spacing: .4px;
      }

      .plan-price .value {
        font-size: 22px;
        font-weight: 900;
        letter-spacing: .3px;
      }

      .plan-list {
        list-style: none;
        padding: 18px 22px 0;
        margin: 0;
        display: grid;
        gap: 12px;
        flex: 1;
      }

      .plan-list li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 12px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .10);
        color: rgba(255, 255, 255, .88);
      }

      .plan-list .key {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: rgba(255, 255, 255, .86);
      }

      .plan-price {
        margin: 0 22px;
        padding: 18px;
        border-radius: 16px;
        background: rgba(0, 0, 0, .18);
        border: 1px solid rgba(255, 255, 255, .10);
        display: flex;
        flex-direction: column;
        gap: 14px;
      }

      .plan-price .price-title {
        font-size: 13px;
        letter-spacing: .6px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .75);
        font-weight: 700;
      }

      .price-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);
        font-size: 14px;
      }

      .price-row span {
        color: rgba(255, 255, 255, .85);
      }

      .price-row strong {
        font-size: 15px;
        font-weight: 800;
        letter-spacing: .3px;
      }

      .badge {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        font-weight: 900;
        border: 1px solid rgba(255, 255, 255, .18);
        background: rgba(255, 255, 255, .12);
        flex: 0 0 auto;
      }

      .badge.ok {
        background: rgba(34, 197, 94, .20);
        border-color: rgba(34, 197, 94, .35);
      }

      .badge.no {
        background: rgba(244, 63, 94, .18);
        border-color: rgba(244, 63, 94, .32);
      }

      /* CTA */
      .plan-cta {
        padding: 18px 22px 24px;
        display: flex;
        gap: 12px;
        align-items: center;
      }

      .choose-btn {
        width: 100%;
        border: 0;
        cursor: pointer;
        border-radius: 14px;
        padding: 12px 14px;
        font-weight: 900;
        letter-spacing: .6px;
        text-transform: uppercase;
        background: rgba(255, 255, 255, .92);
        color: rgba(11, 18, 32, .92);
        box-shadow: 0 12px 26px rgba(0, 0, 0, .35);
        transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
      }

      .choose-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(0, 0, 0, .42);
        filter: brightness(1.02);
      }

      .choose-btn:focus-visible {
        outline: 3px solid rgba(14, 165, 233, .55);
        outline-offset: 3px;
      }

      /* =========================================================
     ✅ SADECE FEATURED OVERRIDE (GENELİ BOZMADAN)
     ========================================================= */

      /* Featured kartın border/shadow */
      .plan-card.featured {
        border-color: var(--featuredStroke);
        box-shadow: 0 26px 90px rgba(0, 0, 0, .62);
      }

      /* üstte ince gradient şerit (layout bozmaz) */
      .plan-card.featured::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gFeatured);
        opacity: .95;
        pointer-events: none;
      }

      /* Önerilen etiketi farklı renk */
      .plan-card.featured::before {
        content: "Önerilen";
        position: absolute;
        top: 14px;
        right: 14px;
        padding: 8px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .92);
        background: rgba(245, 158, 11, .18);
        border: 1px solid rgba(245, 158, 11, .34);
        backdrop-filter: blur(10px);
      }

      /* Featured içindeki accent alanlarını da farklılaştır */
      .plan-card.featured .icon-bubble {
        background: rgba(245, 158, 11, .18);
        border-color: rgba(245, 158, 11, .34);
      }

      .plan-card.featured .plan-price {
        background: rgba(245, 158, 11, .10);
        border-color: rgba(245, 158, 11, .22);
      }

      /* Featured buton: gradient + beyaz yazı */
      .plan-card.featured .choose-btn {
        background: var(--gFeatured);
        color: rgba(255, 255, 255, .95);
      }

      .plan-card.featured .choose-btn:focus-visible {
        outline: 3px solid rgba(245, 158, 11, .55);
        outline-offset: 3px;
      }

      /* Featured içindeki ok badge’leri de featured rengine uy */
      .plan-card.featured .badge.ok {
        background: rgba(245, 158, 11, .18);
        border-color: rgba(245, 158, 11, .34);
      }

      /* Color accents (orijinal) */
      .accent-green .icon-bubble {
        background: rgba(34, 197, 94, .22);
        border-color: rgba(34, 197, 94, .35);
      }

      .accent-green .plan-price {
        background: rgba(34, 197, 94, .12);
        border-color: rgba(34, 197, 94, .22);
      }

      .accent-purple .icon-bubble {
        background: rgba(168, 85, 247, .20);
        border-color: rgba(168, 85, 247, .34);
      }

      .accent-purple .plan-price {
        background: rgba(168, 85, 247, .12);
        border-color: rgba(168, 85, 247, .22);
      }

      /* Responsive */
      @media (max-width: 1020px) {
        .pricing-grid {
          grid-template-columns: 1fr;
        }

        .pricing-info {
          min-height: 440px;
        }

        .plan-card {
          min-height: unset;
        }
      }

      @media (prefers-reduced-motion: reduce) {

        .plan-card,
        .choose-btn {
          transition: none;
        }

        .plan-card:hover {
          transform: none;
        }

        .choose-btn:hover {
          transform: none;
        }
      }

      .badge {
        padding: 0;
      }
	  
.hero-youtube-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-youtube-wrapper iframe {
  position: absolute;
 
  top: 50%;
  left: 50%;
  width: 177.78vh;   
  height: 56.25vw;  
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.hero-youtube-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: none;
}

iframe {
  pointer-events: none;
}