:root {
  --bg-primary: #101010;
  --text-light: white;
  --text-light-rgb: rgb(255, 255, 255);
  --accent-1: #19b5f8;
  --accent-2: #095779;
  --accent-3: #00aaff;
  --accent-4: #00b4d8;
  --accent-5: rgb(136, 224, 36);
  --accent-6: #0077b6;
  --accent-7: #0096c7;
  --accent-8: #005f8f;
  --accent-9: rgb(136, 224, 36, 0.1);
  --gradient-start-1: rgba(9, 87, 121, 1);
  --gradient-end-1: rgba(16, 16, 16, 1);
  --border-light-translucent: rgba(255, 255, 255, 0.205);
  --shadow-dark-1: rgba(0, 0, 0, 0.27);
  --shadow-dark-2: rgba(0, 0, 0, 0.35);
  --shadow-dark-3: rgba(0, 0, 0, 0.45);
  --shadow-accent-1: rgba(0, 180, 216, 0.3);
  --shadow-accent-2: rgba(0, 180, 216, 0.45);
  --shadow-light-1: rgba(255, 255, 255, 0.3);
  --bg-transparent: transparent;
  --text-hover-light: #e8e8e8;
  --border-accent-translucent-1: #50c5ff57;
  --shadow-inset-1: #09577979;
  --shadow-inset-2: #00aaff83;
  --shadow-green-1: #0085009a;
  --shadow-green-2: #3a832c8c;
  --bg-card-1: #2f2f31;
  --bg-card-2: #212123;
  --border-popular: #90e0ef;
  --text-dark: #111111;
  --shadow-text-1: rgba(0, 0, 0, 0.2);
  --text-medium-light-1: #aaaaaa;
  --text-medium-light-2: #bbbbbb;
  --text-medium-light-3: #cccccc;
  --bg-popular-light-1: #caf0f8;
  --bg-popular-light-2: #e0f7fa;
  --font-montserrat: "Montserrat", sans-serif;
  --font-oswald: "Oswald", sans-serif;
  --font-gothic: "Special Gothic Expanded One", sans-serif;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  margin: 0;
  padding: 0;
  background-color: #101010;
  height: calc(100% - 3.8rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--text-light);
}

* h1,
* h2,
* h3 {
  font-size: 2rem;
  font-family: var(--font-gothic);
  color: var(--accent-5);
}

* p {
  color: var(--text-medium-light-2);
  font-family: var(--font-montserrat);
}

* section {
  height: 100%;
  padding: 2rem 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--text-light);
}

.wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  filter: blur(2px);
  background-size: cover;
}

header {
  background-color: rgba(136, 224, 36, 0.024);
  border-bottom: 1px solid var(--bg-card-2);
  box-shadow: 0rem 0.01rem 0rem var(--shadow-accent-1);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  justify-content: space-between;
  backdrop-filter: blur(5px);
  height: 3.8rem !important;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

header h1 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: var(--font-gothic);
}

#Layer_1 {
  fill: var(--accent-5);
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: -1;
  top: 2px;
  left: 27px;
  transform: rotate(0deg);
}

nav {
  position: fixed;
  top: 3.8rem;
  left: 0;
  width: 100%;
  height: calc(100% - 3.8rem);
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.7s ease-in-out;
}

.navbar {
  display: flex;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 2.7rem;
  width: 80%;
  background-color: rgba(136, 224, 36, 0.024);
  backdrop-filter: blur(5px);
  height: 100%;
  transform: translateX(-100%);
  transition: all 0.4s ease-in-out;
}

.navbar-item {
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 1.3rem;
  padding: 1rem 0;
  border-bottom: var(--accent-9) 1px solid;
}

.navbar-item i {
  margin-right: 1rem;
  color: var(--accent-5);
}

#blog-desktop {
  display: none;
}

#event-desktop {
  display: none;
}

.active {
  transform: translateX(0%);
  transition: all 0.4s ease-in-out;
  opacity: 1;
  pointer-events: all;
}

header i {
  font-size: 1.6rem;
  color: var(--text-light);
}

.main-section {
  overflow: hidden;
  background: url(/assets/img/new.png);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 2rem;
  height: calc(100vh - 3.8rem);
  gap: 2rem;
}

.main-article {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.main-article h1 {
  text-align: center;
  font-family: var(--font-gothic);
  letter-spacing: 2px;
}

.main-article p {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.splitter {
  width: 20%;
  height: 0.5rem;
  background-color: var(--accent-9);
  border: 1px solid var(--border-light-translucent);
  border-radius: 5px;
  z-index: 2;
  margin: 0;
}

.main-elements {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

button {
  position: relative;
  background-color: var(--accent-9);
  border: 1px solid var(--border-light-translucent);
  padding: 0.3rem;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-oswald);
  width: 60%;
  text-transform: uppercase;
  border-radius: 0.35rem;
  transition: all 250ms ease-in-out;
  overflow: hidden;
  z-index: 2;
  user-select: none;
}

button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--accent-5);
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px var(--shadow-dark-1);
  box-shadow: 4px 8px 19px -3px var(--shadow-dark-1);
  transition: all 250ms ease-in-out;
}

button:active::after {
  color: var(--text-hover-dark);
  transform: scale(1.2);
  width: 100%;
}

button:active {
  color: black;
  transform: scale(1.2);
}

.about-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.about-header-wrapper {
  position: absolute;
  top: -250px;
  left: 0;
  width: 100%;
  height: 500px;
  z-index: 1;
  background: #09577979;
  background: -webkit-linear-gradient(
    360deg,
    rgba(9, 87, 121, 0) 0%,
    rgba(16, 16, 16, 1) 50%,
    rgba(9, 87, 121, 0) 100%
  );
  background: -moz-linear-gradient(
    360deg,
    rgba(9, 87, 121, 0) 0%,
    rgba(16, 16, 16, 1) 50%,
    rgba(9, 87, 121, 0) 100%
  );
  background: linear-gradient(
    360deg,
    rgba(9, 87, 121, 0) 0%,
    rgba(16, 16, 16, 1) 50%,
    rgba(9, 87, 121, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#09577978", endColorstr="#09577978", GradientType=0);
}

.about-bg-wrapper {
  background: url(/assets/img/about.webp);
  background-size: cover;
}

.about-text {
  z-index: 2;
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 2.5rem;
  height: 100%;
  width: 100%;
  padding: 7rem 1.5rem;
}

.about-text h2 {
  font-size: 3.2rem;
  text-align: center !important;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text p {
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.about-text-image img {
    float: left;
    margin-right: 20px;
    margin-bottom: 5px; 
    border-radius: 10px;
}
.about-st {
  color: var(--accent-5);
}

.programs-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 3rem 0;
}

.programs-bg-wrapper {
  background: url(/assets/img/programs-mobile.webp);
  background-size: cover;
}

.programs-section-title {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  z-index: 2;
}

.programs-section-title h2 {
  text-align: center;
  font-size: 3rem;
}

.programs-section-title p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
  padding: 1rem 1rem;
  width: 100vw;
  background-color: var(--accent-9);
}

.program-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  padding: 10px;
}

.program-card {
  background: linear-gradient(
    145deg,
    var(--bg-primary) 50%,
    var(--accent-9) 150%
  );
  border-radius: 1rem;
  padding: 3rem 2rem;
  flex: 1 1 300px;
  max-width: 95%;
  box-shadow: 0 6px 20px var(--shadow-dark-2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease-out, border-color 0.35s ease;
  border: 1px solid var(--bg-card-2);
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -3px;
  border-radius: inherit;
  background: #88ff00;
  background: linear-gradient(
    44deg,
    rgba(136, 255, 0, 0.28) 1%,
    rgba(16, 16, 16, 1) 31%
  );
  opacity: 0.2;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.program-card:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 0 20px 5px var(--accent-9);
}

.program-card:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.program-icon {
  width: 80px;
  height: 80px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(45deg, var(--accent-5), var(--text-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px var(--accent-5);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    border-radius 0.4s ease, background 0.4s ease;
}

.program-card:hover .program-icon {
  transform: rotate(360deg) scale(1.15);
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-5), var(--bg-primary));
}

.program-icon i {
  font-size: 35px;
  color: var(--bg-primary);
  transition: transform 0.4s ease;
}

.program-card:hover .program-icon i {
  transform: scale(0.9);
  color: var(--text-light);
}

.program-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.4;
  transition: color 0.4s ease;
}

.program-description {
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-medium-light-3);
  line-height: 1.2;
  flex-grow: 1;
  transition: color 0.4s ease;
}

.program-card:hover .program-description {
  color: var(--text-light);
}

.paketler {
  position: relative;
  padding: 80px 0 50px 0;
  box-sizing: border-box;
  position: relative;
  background-color: var(--bg-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8rem;
}

.paket-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/img/packs.webp);
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
  filter: blur(2.5px) grayscale(50%);
}

.paket-section-title {
  margin-top: 0;
  margin-bottom: 30px;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.paket-section-title h2 {
  color: var(--accent-5);
  letter-spacing: 1px;
  font-size: 32px;
  font-family: "Special Gothic Expanded One", sans-serif;
  margin-bottom: 10px;
  text-shadow: 0 1px 3px var(--shadow-dark-2);
}

.paket-swiper-container {
  margin-top: -10rem;
  width: 100%;
  padding: 20px 0 40px 0;
  position: relative;
  z-index: 1;
}

.swiper-slide {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 15px 5px;
}

.paket-card {
  background: linear-gradient(
    145deg,
    var(--accent-9) -10%,
    var(--bg-primary) 40%
  );
  border-radius: 16px;
  padding: 25px 20px;
  width: 100%;
  box-shadow: 0 5px 18px var(--shadow-green-2);
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid rgba(136, 224, 36, 0.25);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.paket-card.popular {
  background: linear-gradient(145deg, var(--accent-5) 0%, #4a7d19 110%);
  box-shadow: 0 8px 25px var(--shadow-green-1);
  border: 2px solid var(--accent-5);
  z-index: 1;
}

.paket-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-5);
  color: var(--text-dark);
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 3px 10px var(--shadow-dark-2);
  z-index: 99 !important;
}

.paket-badge.best-value {
  background-color: greenyellow;
  color: var(--text-dark);
}

.paket-card.popular .paket-badge {
  background-color: var(--text-light);
  color: #4a7d19;
}

.paket-title {
  font-family: var(--font-oswald);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.paket-card.popular .paket-title {
  color: var(--text-light);
}

.paket-price {
  margin: 10px 0 5px 0;
  color: var(--accent-5);
  line-height: 1.1;
}

.paket-card.popular .paket-price {
  color: var(--text-light);
  text-shadow: 0 1px 4px var(--shadow-dark-2);
}

.original-price {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-medium-light-1);
  text-decoration: line-through;
  margin-bottom: 3px;
  height: 18px;
}

.paket-card.popular .original-price {
  color: var(--bg-popular-light-1);
}

.paket-price .price-amount {
  font-family: var(--font-oswald);
  font-size: 40px;
  font-weight: 700;
}

.paket-price .price-currency {
  font-size: 18px;
  font-weight: 500;
  vertical-align: baseline;
  margin-left: 2px;
}

.paket-price .price-term {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-medium-light-2);
  margin-left: 4px;
}

.paket-card.popular .price-term {
  color: var(--bg-popular-light-1);
}

.paket-savings {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-5);
  margin-bottom: 20px;
  min-height: 18px;
}

.paket-savings.placeholder {
  visibility: hidden;
}

.paket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
  flex-grow: 1;
  font-family: var(--font-montserrat);
  font-size: 13px;
  color: var(--text-light);
}

.paket-card.popular .paket-features {
  color: var(--bg-popular-light-2);
}

.paket-features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.paket-features i.fa-check {
  color: var(--accent-5);
  margin-right: 8px;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.paket-card.popular .paket-features i.fa-check {
  color: var(--text-light);
}

.paket-button {
  display: inline-block;
  background-color: var(--accent-5);
  color: var(--text-dark);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  border: 2px solid var(--accent-5);
  transition: background-color 0.3s ease, border-color 0.3s ease,
    color 0.3s ease, transform 0.2s ease;
  margin-top: auto;
  align-self: stretch;
  cursor: pointer;
}

.paket-button:active {
  background-color: #76c41f;
  border-color: #76c41f;
  transform: scale(0.98);
}

.paket-card.popular .paket-button {
  background-color: var(--text-light);
  color: #4a7d19;
  border-color: var(--text-light);
}

.paket-card.popular .paket-button:active {
  background-color: var(--bg-popular-light-1);
  border-color: var(--bg-popular-light-1);
  color: #335711;
  transform: scale(0.98);
}

.paket-swiper-container .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 25px;
}

.paket-swiper-container .swiper-pagination-bullet {
  background-color: var(--text-medium-light-1);
  opacity: 0.6;
  width: 10px;
  height: 10px;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.paket-swiper-container .swiper-pagination-bullet-active {
  background-color: var(--accent-5);
  opacity: 1;
}

.yorum-card {
  background: linear-gradient(
    160deg,
    var(--bg-primary) 0%,
    var(--accent-5) 200%
  );
  flex: 1 1 100%;
  box-sizing: border-box;
  border-radius: 12px;
  padding: 45px 30px 10px 30px;
  width: 100%;
  height: 230px;
  max-height: 230px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent-5);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.yorum-quote-bg {
  position: absolute;
  top: 5px;
  left: 15px;
  font-size: 100px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.08);
  z-index: 0;
  line-height: 1;
  font-family: serif;
  user-select: none;
}

.yorum-icerik {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-light, #f0f0f0);
  margin-bottom: 10px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.yorum-kisi {
  display: flex;
  align-items: center;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.yorum-resim {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--accent-5);
}

.yorum-isim {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light, #ffffff);
  letter-spacing: 0.5px;
}

.danisan-yorumlari-slider {
  max-width: 100%;
  box-sizing: border-box;
  height: 230px;
  position: relative;
  margin-top: -1.5rem;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
}

.yorumlar-container {
  display: flex;
  gap: 0rem;
  width: 100%;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 0px;
  position: relative;
  transition: transform 0.8s ease-in-out;
}

.slider-btn {
  position: absolute;
  top: 50%;
  /* Dikey olarak ortala */
  transform: translateY(-50%);
  /* Tam dikey ortalama için */
  background-color: rgba(0, 0, 0, 0.1);
  /* Yarı şeffaf arka plan */
  color: white;
  border: none;
  width: 30px;
  height: 100%;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  z-index: 10;
  /* Diğer öğelerin üzerinde kalması için */
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.slider-btn.prev {
  left: 0;
  /* Soldaki boşluk */
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.slider-btn.next {
  right: 0;
  /* Sağdaki boşluk */
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.slider-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.yorum-ekle {
  margin-top: -7rem;
  color: #00e676;
  text-transform: uppercase;
  font-family: var(--font-montserrat);
  font-weight: bold;
  padding: 10px 50px;
  background-color: var(--accent-9);
  transition: all 0.4s;
  pointer-events: all;
  z-index: 99;
  border-radius: 6px;
  /* border: 1px solid var(--border-light-translucent); */
}

.yorum-ekle:hover {
  background-color: var(--accent-5);
  color: var(--text-light);
}

.contact-section {
  position: relative;
  flex-direction: column;
  color: var(--text-light);
  gap: 40px;
}

.iletisim-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/assets/img/contact.webp);
  background-size: cover;
  background-position: center;
  opacity: .3;
  z-index: -1;
  pointer-events: none;
  filter: blur(2px);
}

.iletisim-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 50px;
}

.iletisim-section-title h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  font-family: "Special Gothic Expanded One", sans-serif;
}

.iletisim-section-title p {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 1.2rem;
  padding: 20px 20px;
  font-weight: 400;
  width: 100%;
  letter-spacing: 1px;
  color: var(--text-light);
  background-color: var(--accent-9);
  margin-bottom: 30px;
  display: block;
}

.iletisim-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 100px;
}

.iletisim-details {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-5);
  gap: 20px;
  width: 95%;
  padding: 10px 30px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 50%,
    var(--accent-5) 150%
  );
  transition: all 0.5s;
}

.iletisim-details:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0px 10px var(--shadow-accent-2);
}

.iletisim-details h4 {
  font-size: 23px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 50px;
  color: var(--accent-5);
  border-bottom: 1px solid var(--accent-9);
}

.iletisim-details a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  margin-left: 24px;
  line-height: 30px;
  transition: all 0.5s;
}

.iletisim-details a:hover {
  color: var(--accent-1);
  text-decoration: underline;
  transform: scale(1.1);
}

.iletisim-details i {
  color: var(--accent-5);
  font-size: 22px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
}

address {
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  margin-left: 24px;
  font-weight: 500;
  font-size: 12px;
  line-height: 30px;
}

.iletisim-map {
  width: 95%;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

iframe {
  width: 100%;
  height: 355px;
  border: 2px solid var(--accent-5);
}

.map-btn {
  padding: 10px 0;
  border-radius: 6px;
  font-family: "Oswald", sans-serif;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--text-light);
  font-size: 23px;
  background-color: var(--accent-9);
  width: 100%;
  transition: all 0.4s;
}

.map-btn:hover {
  background-color: var(--accent-5);
  transform: scale(1.03);
}

.footer {
  opacity: 0.5;
  font-size: 12px;
  color: #aaa;
}

.footer p {
  text-align: center;
  font-size: 0.85rem;
}

.footer p a {
  font-size: 0.85rem;
}

.footer:hover {
  opacity: 1;
}

.event-date {
  position: relative;
}

.event-date-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/img/event-date.webp);
  background-size: cover;
  background-position: center center;
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}

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

#blog-list-container {
  display: none;
}

.event-section {
  display: none !important;
  position: relative;
  padding: 3.8rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  min-height: 60vh;
  overflow: hidden;
}

.event-section-mobile {
  position: relative;
  padding: 3.8rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  min-height: 60vh;
  overflow: hidden;
}

.event-date-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/img/event-date.webp);
  background-size: cover;
  background-position: center center;
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
  filter: blur(1px);
}

.event-date-title {
  text-align: center;
  z-index: 1;
  margin-bottom: 1rem;
}

.event-date-title h2 {
  font-size: 2.5rem;
  color: var(--accent-5);
  margin-bottom: 0.5rem;
  font-family: var(--font-gothic);
}

.event-date-title p {
  font-size: 1.1rem;
  color: var(--text-medium-light-2);
  font-family: var(--font-montserrat);
  max-width: 600px;
  margin: 0 auto;
}

.event-date-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1800px;
  z-index: 1;
  padding: 1rem;
}

.event-card {
  background: linear-gradient(
    145deg,
    var(--bg-card-2, #212123) 0%,
    var(--accent-9, rgba(136, 224, 36, 0.1)) 150%
  );
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 5px 15px var(--shadow-dark-2);
  border: 1px solid var(--border-light-translucent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-accent-1);
}

.event-card h3 {
  font-family: var(--font-oswald);
  font-size: 1.4rem;
  color: var(--accent-5);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--accent-9);
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card p {
  font-family: var(--font-montserrat);
  font-size: 0.95rem;
  color: var(--text-medium-light-3);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.event-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 415px) {
  html {
    font-size: 12px;
  }

  #Layer_1 {
    width: 20px;
    height: 20px;
    top: 2px;
    left: 20px;
  }

  .yorum-icerik {
    font-size: 0.9rem;
  }
}

@media (min-width: 600px) {
  .main-section {
    height: 100%;
    padding: 2rem 0;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 25px;
  }

  .about-section {
    display: block;
  }

  #Layer_1 {
    width: 40px;
    height: 40px;
    top: 5px;
    left: 45px;
  }

  .about-text p {
    font-size: 0.7rem;
  }

  .event-date-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    padding: 1rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  * h1,
  * h2,
  * h3 {
    color: var(--text-light);
  }

  * p {
    color: var(--text-light);
  }

  body {
    overflow: hidden;
  }

  header {
    display: none;
  }

  nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    opacity: 1;
    pointer-events: all;
    transition: all 0.7s ease-in-out;
    background-color: transparent;
    z-index: 999;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0rem 2rem;
    flex-direction: row;
    gap: 1.5rem;
    width: 100%;
    background-color: transparent;
    height: 100%;
    transform: translateX(0%);
    backdrop-filter: blur(0px);
  }

  .navbar-item {
    font-size: 0.7rem;
    font-family: var(--font-montserrat);
    font-weight: 400;
    cursor: pointer;
    border: none;
  }

  #blog-desktop {
    display: block;
  }

  #blog-mobile {
    display: none;
  }

  li.navbar-item.yorum-li {
    margin-top: 0;
  }

  #event-mobile {
    display: none;
  }

  #event-desktop {
    display: block;
  }

  .navbar-item a {
    transition: all 0.7s;
  }

  .navbar-item i {
    display: none;
  }

  .active a {
    transition: all 0.7s;
    color: var(--accent-1) !important;
    cursor: pointer;
  }

  .main {
    width: 100;
    height: 100% !important;
  }

  section {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    transition: all 0.7s;
    padding-top: 6rem;
    margin-top: 0rem !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.7s;
    z-index: 0;
  }

  .main-section {
    background-size: 48%;
    background-repeat: no-repeat;
    background-position: right top;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .main-article {
    width: 80%;
    margin-top: 0px;
    position: relative;
  }

  .main-bg-wrapper {
    position: absolute;
    top: 0rem;
    left: -4.5rem;
    width: 100%;
    height: 100%;
    background: #09577979;
    background: radial-gradient(
      circle,
      rgba(9, 87, 121, 1) 0%,
      rgba(9, 87, 121, 0) 40%
    );
  }

  .section-active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: all 0.7s;
    z-index: 1;
  }

  button {
    background-color: var(--bg-transparent);
    width: 25%;
    cursor: pointer;
  }

  button::after {
    background-color: var(--accent-3);
  }

  button:active::after {
    color: var(--text-light);
    transform: scale(1.2);
  }

  button:active {
    color: var(--text-light);
    transform: scale(1.2);
  }

  button:hover::after {
    color: var(--text-light);
    transform: scale(1.2);
    width: 100%;
  }

  button:hover {
    color: var(--text-light);
    transform: scale(1.2);
  }

  .splitter {
    background-color: var(--accent-2);
    height: 0.22rem;
  }

  .main-elements {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    width: 80%;
  }

  .about-section {
    width: 100%;
    height: 100%;
    padding: 6rem 0 0 0;
  }

  .about-bg-wrapper {
    background-size: cover;
    opacity: 0.1;
    filter: blur(2px);
  }

  .about-header-wrapper {
    display: none;
  }

  .about-text {
    gap: 1rem;
    margin-top: 1rem;
    padding: 0rem 3rem;
  }
  .about-text-image {
    display: flex;
    overflow: hidden;
    border-radius: 15px;
    line-height: 23px;
    width: 100% !important;
    gap: 1rem;
    padding: 0rem 1rem !important;
  }
  .about-text-image img {
    /* border: 1px solid var(--accent-1); */
    box-shadow: 0px 0px 10px var(--shadow-accent-1);
    min-width: 280px;
    min-height: 280px;
  }
  .about-text h2 {
    letter-spacing: 1px;
    color: var(--accent-3);
  }

  .about-text p {
    font-size: 0.5rem;
  }

  .about-st {
    color: var(--accent-3);
  }

  .programs-section {
    padding: 6rem 0 0 0;
  }

  .programs-section-title p {
    background-color: #005f8f1a;
    font-size: 0.5rem;
  }

  .program-card-container {
    align-items: stretch;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1rem;
    padding: 0.5rem;
  }

  .programs-section-title h2 {
    font-size: 2rem;
  }

  .program-card {
    background: linear-gradient(
      145deg,
      var(--bg-primary) 50%,
      var(--accent-2) 150%
    );
    border-radius: 0.5rem;
    padding: 0.7rem 1rem;
    flex: 1 1 6rem;
    max-width: 400px;
  }

  .program-card::before {
    background: linear-gradient(
      135deg,
      var(--accent-6),
      var(--accent-2),
      var(--accent-1)
    );
  }

  .program-card:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow: 0 20px 50px var(--shadow-accent-2);
  }

  .program-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(45deg, var(--accent-4), var(--accent-1));
    margin-bottom: 0.7rem;
    box-shadow: 0 6px 18px var(--shadow-accent-1);
  }

  .program-card:hover .program-icon {
    background: linear-gradient(45deg, var(--accent-5), var(--accent-3));
  }

  .program-icon i {
    font-size: 1rem;
  }

  .program-title {
    font-size: 0.5rem;
    margin-bottom: 0.2rem;
    color: var(--text-light);
    letter-spacing: 1.1px;
  }

  .program-card:hover .program-title {
    color: var(--accent-4);
  }

  .program-description {
    font-size: 0.4rem;
    line-height: 1.3;
  }

  .paketler {
    padding: 6rem 0 0 0;
    gap: 0;
  }

  .paket-swiper-container {
    height: auto;
    margin-bottom: 1rem;
  }

  .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    flex-direction: row;
    height: 100%;
  }

  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    max-width: 13rem;
    padding: 3rem 0;
    height: 100%;
  }

  .paket-section-title {
    margin-bottom: 0;
    padding: 0;
  }

  .paket-section-title h2 {
    color: var(--text-light);
    font-size: 1.8rem;
  }

  .paket-swiper-container {
    margin-top: 0;
    padding: 0;
  }

  .paket-card {
    background: linear-gradient(
      145deg,
      var(--accent-2) -20%,
      var(--bg-primary) 10%
    );
    box-shadow: 0 0 15px #005f8fa4;
    border: 3px solid #005f8fa4;
    height: 310px;
    max-width: 292px;
    transition: all 0.7s ease;
  }

  .paket-card.popular {
    background: linear-gradient(
      145deg,
      var(--accent-6) 0%,
      var(--accent-4) 100%
    );
    box-shadow: 0 10px 35px var(--shadow-accent-1);
    border: 3px solid var(--accent-4);
    transform: scale(1.3);
    z-index: 1;
  }

  .swiper-slide:hover .paket-card {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px #005f8fa4;
  }

  .swiper-slide:hover .paket-card.popular {
    box-shadow: 0 10px 30px #005f8fa4;
    transform: translateY(-20px) !important;
    transform: scale(1.3) !important;
  }

  .paket-badge {
    background-color: var(--accent-4);
    color: var(--text-light);
    box-shadow: 0 4px 12px var(--shadow-dark-2);
  }

  .paket-badge.best-value {
    background-color: #00e676 !important;
  }

  .paket-card.popular .paket-badge {
    color: var(--accent-1);
  }

  .paket-card.popular .price-amount {
    color: var(--text-light);
  }

  .paket-title {
    font-size: 0.5rem;
    margin-bottom: 0;
  }

  .paket-price {
    margin: 0.3rem;
    color: var(--accent3) !important;
  }

  .price-amount {
    color: var(--accent-1);
  }

  .original-price {
    font-size: 0.5rem;
  }

  .paket-price .price-amount {
    font-size: 1rem;
  }

  .paket-price .price-currency {
    font-size: 0.5rem;
  }

  .paket-price .price-term {
    font-size: 0.5rem;
  }

  .paket-savings {
    font-size: 0.4rem;
    margin-bottom: 0.5rem;
    color: #00e676;
    font-family: var(--font-montserrat);
  }

  .paket-features {
    margin-bottom: 0.5rem;
    font-size: 0.4rem;
  }

  .paket-features li {
    margin-bottom: 0.2rem;
  }

  .paket-features i.fa-check {
    font-size: 0.5rem;
    width: 0.6rem;
    color: var(--accent-1);
  }

  .paket-button {
    font-size: 0.5rem;
    background-color: var(--accent-1);
    padding: 0.2rem 0;
    border: 2px solid var(--accent-1);
    color: var(--text-light);
  }

  .paket-button:active {
    background-color: var(--accent-1);
    color: var(--text-light);
  }

  .paket-card.popular .paket-button {
    color: var(--accent-1);
  }

  .paket-swiper-container .swiper-pagination {
    display: none !important;
  }

  .paket-swiper-container .swiper-pagination-bullet {
    display: none !important;
  }

  .paket-swiper-container .swiper-pagination-bullet-active {
    display: none !important;
  }

  .danisan-yorumlari.scroll-container {
    width: 100%;
    max-height: 250px;
    max-width: none;
  }

  .yorum-card {
    flex-shrink: 1;
    background: linear-gradient(
      160deg,
      var(--bg-primary) 0%,
      var(--accent-1) 200%
    );
    border: 1px solid var(--accent-1);
    max-width: 400px;
    min-width: 400px;
    padding: 35px 30px 10px 30px;
  }

  .yorum-icerik {
    font-size: 10.5px;
  }

  .yorum-resim {
    border: 2px solid var(--accent-4);
    width: 50px;
    height: 50px;
  }

  .yorumlar-konteyner.scroll-track {
    animation: scrollHorizontal 30s linear infinite;
  }

  .slider-track {
    gap: 20px;
  }

  .yorum-ekle {
    position: absolute;
    bottom: 22.1%;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    font-size: 0.4rem;
    color: var(--accent-1);
  }

  .yorum-ekle:hover {
    background-color: transparent;
    color: var(--text-light);
  }

  .footer {
    position: fixed;
    bottom: 10px;
    right: 20px;
    opacity: 0.5;
    font-size: 14px;
    color: #aaa;
  }

  .footer:hover {
    opacity: 1;
  }

  .iletisim {
    flex-direction: row;
  }

  .iletisim-section-title h2 {
    font-size: 2rem;
  }

  .iletisim-section-title p {
    font-size: 0.5rem;
    background-color: #005f8f1a;
  }

  .iletisim-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
    height: 100%;
  }

  .iletisim-details {
    min-width: 350px;
    height: 70%;
    width: 40%;
    padding: 20px;
    gap: 10px;
    border-radius: 16px;
    background: linear-gradient(
      180deg,
      var(--bg-primary) 50%,
      var(--accent-1) 150%
    );
    border: var(--accent-2) 1px solid;
  }

  .iletisim-details h4 {
    color: var(--accent-1);
  }

  .iletisim-details i {
    color: var(--accent-1);
    font-size: 12px;
  }

  .iletisim-details a {
    color: var(--text-light);
    font-size: 12px;
  }

  .iletisim-details li {
    line-height: 0px;
    margin: 0;
  }

  .iletisim-map {
    width: 40%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
  }

  iframe {
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-1);
  }

  .map-btn {
    padding: 3px 0;
    border-radius: 6px;
    font-family: "Oswald", sans-serif;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--text-light);
    font-size: 20px;
    background-color: var(--accent-1);
    width: 100%;
  }

  .footer {
    width: 100%;
    text-align: left;
    opacity: 0.5;
    font-size: 14px;
    color: #aaa;
    z-index: 999;
  }

  .footer p {
    font-size: 12px;
  }

  .footer p a {
    font-size: 12px;
  }

  .footer:hover {
    opacity: 1;
  }

  #blog-list-container {
    position: relative;
    display: block;
  }

  .blog-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url(/assets/img/blog.webp);
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: blur(2px);
    pointer-events: none;
  }

  .blog-title {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .blog-posts-grid {
    padding: 0.5rem 2rem 5rem 2rem !important;
    box-sizing: border-box;
    height: 100%;
    overflow-y: scroll !important;
  }

  .blog-post-summary {
    min-height: 400px;
  }

  .event-section {
    display: flex !important;
    padding: 4rem 2rem;
    position: absolute !important;
  }

  .event-date-title {
    width: 100% !important;
  }

  .event-date-title h2 {
    font-size: 2rem;
    color: var(--text-light);
  }

  .event-date-title p {
    font-size: 0.6rem;
    color: var(--text-light);
    background-color: #005f8f1a;
    margin: 0;
    padding: 0.5rem;
    max-width: none;
    width: 100% !important;
    display: block !important;
    border-radius: 4px;
  }

  .event-date-container {
    place-items: center;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 4rem;
    height: 100%;
    overflow: auto !important;
  }

  .event-card {
    padding: 1.2rem 1rem;
    border-radius: 8px;
    border-color: var(--accent-2);
    background: linear-gradient(
      145deg,
      var(--bg-primary) 50%,
      var(--accent-2) 150%
    );
    min-height: 300px;
    min-width: 300px;
  }

  .event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px var(--shadow-accent-2);
  }

  .event-card h3 {
    font-size: 0.7rem;
    color: var(--accent-1);
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-color: var(--accent-1);
  }

  .event-card p {
    font-size: 0.55rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    color: var(--text-light);
  }
  .video-slider-container {
    position: absolute;
    top: 45%;
    left: 50px;
    width: 220px;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border-radius: 16px;
  }

  .video-slide-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .video-slide {
    min-width: 100%;
    box-sizing: border-box;
  }

  .video-slide video {
    width: 100%;
    height: auto;
    display: block;
  }

  .video-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00000018;
    color: white;
    border: none;
    width: 15px;
    height: 50%;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 2;
  }

  .prev-video {
    left: 0px;
  }

  .next-video {
    right: 0px;
  }
}

@media (min-width: 1440px) {
  .main-section {
    background-size: 46%;
  }

  .main-article {
    margin-left: -3rem;
  }

  .main-bg-wrapper {
    left: -8.7rem;
  }

  .main-elements {
    margin-left: -3rem;
  }

  html {
    font-size: 30px;
  }

  .navbar-item {
    font-size: 0.589rem;
  }

  .about-text {
    padding: 0rem 10rem;
  }

  .about-text p {
    font-size: 0.4rem;
  }

  .about-section {
    padding: 6rem 0 0 0;
  }

  .programs-section-title p {
    font-size: 0.5rem;
  }

  .programs-section-title p {
    background-color: #005f8f1a;
  }

  .program-card {
    padding: 1.5rem 1rem;
  }

  .program-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(45deg, var(--accent-4), var(--accent-1));
    margin-bottom: 0.7rem;
    box-shadow: 0 6px 18px var(--shadow-accent-1);
  }

  .program-icon i {
    font-size: 1.5rem;
  }

  .program-title {
    font-size: 0.7rem;
    margin-bottom: 1rem;
    letter-spacing: 1.3px;
  }

  .program-description {
    font-size: 0.6rem;
    line-height: 1.5;
  }

  .program-button {
    margin-top: -1.3rem;
  }

  .paket-swiper-container {
    height: auto;
    margin-bottom: 1.8rem;
  }

  .paket-card {
    max-width: 350px;
    height: 360px;
  }

  .paket-card:nth-child(3) {
    max-width: 400px;
  }

  .iletisim-details {
    padding: 50px;
    gap: 30px;
  }

  .iletisim-details i {
    font-size: 25px;
  }

  .iletisim-details a {
    font-size: 20px;
  }

  address {
    font-size: 20px;
  }

  .yorum-ekle {
    bottom: 23.7%;
  }

  .event-section {
    padding: 5rem 0rem;
    padding-top: 6rem;
  }

  .event-date-title h2 {
    font-size: 2.2rem;
  }

  .event-date-title p {
    font-size: 0.65rem;
  }

  .event-date-container {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 12rem !important;
    gap: 2rem;
  }

  .event-card {
    padding: 1rem;
  }

  .event-card h3 {
    font-size: 0.6rem;
  }

  .event-card p {
    font-size: 0.48rem;
  }
  .video-slider-container {
    top: 45%;
    left: 50px;
    width: 250px;
  }
}

@media (min-width: 1920px) {
  .navbar {
    gap: 4rem;
  }

  .main-article {
    margin-left: -5rem !important;
  }

  .main-elements {
    margin-left: -5rem;
  }

  .main-bg-wrapper {
    top: 2rem;
    left: -8.4rem;
    width: 90%;
    height: 90%;
  }

  .about-text {
    padding: 1rem 12rem;
  }

  .about-text p {
    font-size: 0.5rem;
  }

  .programs-section-title p {
    font-size: 0.8rem;
  }

  .paket-swiper-container {
    height: auto;
    margin-bottom: 2.5rem;
  }

  .iletisim-details {
    padding: 50px 50px;
    gap: 30px;
  }

  .iletisim-details i {
    font-size: 28px;
  }

  .iletisim-details a {
    font-size: 22px;
  }

  address {
    font-size: 22px;
  }

  .yorum-ekle {
    bottom: 25%;
  }

  .event-section {
    padding: 6rem 0rem;
    padding-top: 6rem;
  }

  .event-date-title h2 {
    font-size: 2.5rem;
  }

  .event-date-title p {
    font-size: 0.7rem;
  }

  .event-date-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding: 2rem 8rem;
  }

  .event-card {
    padding: 1rem;
  }

  .event-card h3 {
    font-size: 0.62rem;
  }

  .event-card p {
    font-size: 0.52rem;
  }
  .video-slider-container {
    top: 45%;
    left: 50px;
    width: 300px;
  }
}

@media (min-width: 2560px) {
  html {
    font-size: 45px;
  }

  nav {
    height: 4rem;
  }

  section {
    padding-top: 4rem;
  }

  .navbar-item {
    font-size: 0.5rem;
  }

  .main-section {
    background-size: 31%;
  }

  .main-article {
    margin-left: -5rem !important;
  }

  .main-elements {
    margin-left: -5rem;
  }

  .main-bg-wrapper {
    top: 1.7rem;
    left: -7.9rem;
    width: 90%;
    height: 90%;
  }

  .about-text p {
    font-size: 0.4rem;
  }
  .about-text-image {
    line-height: 35px;
  }
  .about-text-image img {
    min-width: 350px;
    min-height: 380px;
  }
  .about-text h2 {
    color: var(--accent-1);
  }

  .about-st {
    color: var(--accent-1);
  }

  .programs-bg-wrapper {
    background: url(/assets/img/programs.webp);
    background-size: cover;
    filter: blur(5px);
  }

  .program-card-container {
    align-items: stretch;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1rem;
    padding: 0.5rem;
  }

  .programs-section-title {
    margin-top: -2rem;
  }

  .programs-section-title h2 {
    font-size: 1.5rem;
    margin: 0;
  }

  .programs-section-title p {
    background-color: #005f8f1a;
    font-size: 0.4rem;
    padding: 0.7rem 0;
  }

  .program-card {
    padding: 1.5rem 1rem;
    max-width: 500px;
  }

  .program-icon {
    width: 1.6rem;
    height: 1.6rem;
    background: linear-gradient(45deg, var(--accent-4), var(--accent-1));
    margin-bottom: 0.7rem;
    box-shadow: 0 6px 18px var(--shadow-accent-1);
  }

  .program-icon i {
    font-size: 0.8rem;
  }

  .program-title {
    font-size: 0.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1.3px;
  }

  .program-description {
    font-size: 0.4rem;
    line-height: 1.5;
  }

  .program-button {
    margin-top: -1.3rem;
    background-color: #005f8f1a;
    width: 50%;
  }

  .paket-swiper-container {
    height: auto;
    margin-bottom: 1rem;
  }

  .paket-section-title {
    margin-top: -1.9rem;
  }

  .paket-section-title h2 {
    font-size: 1.3rem;
    margin: 0;
  }

  .swiper-wrapper {
    gap: 50px;
  }

  .swiper-slide {
    max-width: 400px !important;
  }

  .paket-card {
    max-width: 400px;
    height: 460px;
  }

  .paket-title {
    font-size: 0.35rem;
  }

  .paket-price {
    color: var(--accent3) !important;
  }

  .original-price {
    margin: 0.1rem 0 0.5rem 0;
  }

  .paket-card.popular .price-amount {
    font-size: 1rem;
  }

  .paket-savings {
    font-size: 0.3rem;
  }

  .paket-features {
    font-size: 13px;
    letter-spacing: 0;
    margin-bottom: 0.75rem;
  }

  .paket-features li {
    margin-bottom: 0.2rem;
  }

  .paket-features i.fa-check {
    font-size: 0.3rem;
    width: 0.4rem;
  }

  .paket-button {
    font-size: 0.3rem;
    padding: 0.2rem 0;
    border: 2px solid var(--accent-1);
    color: var(--text-light);
  }

  .iletisim-details {
    padding: 50px;
    gap: 50px;
  }

  .iletisim-details i {
    font-size: 25px;
  }

  .iletisim-details a {
    font-size: 20px;
  }

  address {
    font-size: 20px;
  }

  .yorum-ekle {
    bottom: 22.1%;
  }

  .event-section {
    padding: 7rem 0rem;
    padding-top: 4rem;
  }

  .event-date-title h2 {
    font-size: 2.8rem;
  }

  .event-date-title p {
    font-size: 0.75rem;
    min-width: 100%;
  }

  .event-date-container {
    width: 100% !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 2.5rem 2rem !important;
  }

  .event-card {
    padding: 1rem;
    border-radius: 12px;
  }

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

  .event-card h3 {
    font-size: 0.35rem;
  }

  .event-card p {
    font-size: 0.35rem;
    line-height: 1.2;
  }
  .video-slider-container {
    top: 45%;
    left: 50px;
    width: 350px;
  }
}
