* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Titillium Web", sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
  font-display: swap;
}

a,
a:hover {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 90px;
}

/* Masaüstü */
nav {
  display: flex;
}

nav a {
  margin: 10px 15px 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

nav a:hover {
  color: #FFB347;
}


.wp {
  background: #25D366;
  color: #fff;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin: 0;
  transition: background 0.3s;
}

.wp:hover {
  background: #1EBE5D;
  color: #fff;
}



/* Hamburger butonu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobil görünüm */
@media(max-width:768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #FFD54F;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }

  nav a {
    margin: 10px 0;
    color: #333;
  }


  .menu-toggle {
    display: block;
    color: #333;
  }

  nav.active {
    display: flex;
  }
}



/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background: #FFF8E7;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-content .tag {
  display: inline-block;
  background: #FFD54F;
  color: #333;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #3E2723;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #B87333;
}

.hero-content p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #FFB347;
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  border: 2px solid #FFB347;
  color: #333;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #FFB347;
  color: #fff;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media(max-width:992px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
    margin-bottom: 30px;
  }
}



.cta-btn {
  background: #fff;
  color: #FFB347;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* SEARCH SECTION */
.search-section {
  text-align: center;
  padding: 60px 20px;
}

.search-section h2 {
  color: #e86a01;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.search-section p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* Input */
.search-box input {
  width: 320px;
  padding: 12px 15px 12px 40px;
  /* solda ikon için boşluk */
  border: 2px solid #FFB347;
  border-radius: 30px;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.search-box input:focus {
  border-color: #FFD54F;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Placeholder */
.search-box input::placeholder {
  color: #999;
  font-style: italic;
}

/* Button */
.search-box button {
  background: linear-gradient(90deg, #FFB347, #FFD54F);
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.search-box button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media(max-width:768px) {
  .search-box {
    flex-direction: column;
    gap: 15px;
  }

  .search-box input {
    width: 100%;
  }
}



/* RESPONSIVE */
@media(max-width:768px) {
  .header-container {
    flex-direction: column;
  }

  nav {
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .search-box {
    flex-direction: column;
  }

  .search-box input {
    width: 100%;
  }
}




.info-boxes,
.info-boxes2 {
  padding: 60px 20px;
}

.info-boxes-bg {
  background: #fff8e1;
}

.info-boxes .info,
.info-boxes2 .info {
  text-align: center;
  margin-bottom: 25px;
}

.info-boxes h2,
.info-boxes2 h2 {
  color: #e86a01;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.info-boxes p,
.info-boxes2 p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.info-boxes .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
  gap: 30px;
}

/* Tablet görünümü */
@media(max-width:992px) {
  .info-boxes .container {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet: 2 sütun */
  }
}

/* Mobil görünümü */
@media(max-width:600px) {
  .info-boxes .container {
    grid-template-columns: 1fr;
    /* Telefon: tek sütun */
  }
}

.info-boxes2 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Masaüstü: 2 sütun */
  gap: 30px;
}

/* Tablet görünümü */
@media(max-width:992px) {
  .info-boxes2 .container {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet: 2 sütun */
  }
}

/* Mobil görünümü */
@media(max-width:600px) {
  .info-boxes2 .container {
    grid-template-columns: 1fr;
    /* Telefon: tek sütun */
  }
}

.info-boxes2 .govde {
  max-height: 400px;
  overflow-y: auto;
}

.info-boxes2 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 15px 0;
  padding: 0;
}

.info-boxes2 ul li {
  list-style: none;
  width: 46%;
  display: flex;
  align-items: left;
  gap: 12px;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 14px;
  transition: .3s;
  box-sizing: border-box;
}

/* Tablet görünümü */
@media(max-width:992px) {
  .info-boxes2 ul li {
    width: 98%;
  }
}

.info-boxes2 ul li::before {
  content: "✔";
  font-size: 18px;
  color: #21205F;
  flex-shrink: 0;
  line-height: 1;
}

.info-boxes2 ul li:hover {
  transform: translateX(5px);
}

.info-boxes2 ul li:nth-child(6n+1) {
  background: #FDEBD0;
  border-left: 6px solid #FF9F43;
}

.info-boxes2 ul li:nth-child(6n+2) {
  background: #D6F5FF;
  border-left: 6px solid #00B5FF;
}

.info-boxes2 ul li:nth-child(6n+3) {
  background: #E8F8E8;
  border-left: 6px solid #2ECC71;
}

.info-boxes2 ul li:nth-child(6n+4) {
  background: #F7E6FF;
  border-left: 6px solid #9B59B6;
}

.info-boxes2 ul li:nth-child(6n+5) {
  background: #FFF5CC;
  border-left: 6px solid #F1C40F;
}

.info-boxes2 ul li:nth-child(6n) {
  background: #f7d2e5;
  border-left: 6px solid #FF4DA6;
}

.info-boxes2 ul li:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
  transform: translateY(-3px);
}

.info-boxes2 ul li::before {
  content: "✔";
  margin-right: 10px;
  color: #21205F;
  font-weight: bold;
}

.box {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  border-bottom: 3px
}

.box:hover {
  transform: translateY(-5px);
  border-bottom: solid 3px #ffa12e
}

.box img {
  display: block;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 15px;
}

.box-bg {
  background: #fff8e1;
}

.box h3 {
  margin-bottom: 10px;
}

.box p {
  color: #555;
  font-size: 0.95rem;
}

.box a {
  color: #333;
  text-decoration: none;
}

.box a:hover {
  color: #ffa12e;
}

@media(max-width:768px) {
  .box {
    padding: 20px;
  }

  .box i {
    font-size: 30px;
  }
}




.services {
  background: #f9f9f9;
  padding: 60px 20px;
}

.services .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Masaüstü: 3 sütun */
  gap: 30px;
}

/* Tablet görünümü */
@media(max-width:992px) {
  .services .container {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet: 2 sütun */
  }
}

/* Mobil görünümü */
@media(max-width:600px) {
  .services .container {
    grid-template-columns: 1fr;
    /* Telefon: tek sütun */
  }
}

.services .info {
  text-align: center;
  margin-bottom: 25px;
}

.services h2 {
  color: #e86a01;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.services p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.service {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 3px
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border-bottom: solid 3px #ffa12e
}

.service img {
  display: block;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 15px;
}

.service h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service p {
  color: #555;
  font-size: 0.95rem;
}

.service a {
  color: #333;
  text-decoration: none;
}

.service a:hover {
  color: #ffa12e;
}

@media(max-width:768px) {
  .service {
    padding: 20px;
  }

  .service i {
    font-size: 30px;
  }
}





.popular-products {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.popular-products h2 {
  color: #e86a01;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.popular-products p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Masaüstü: 3 sütun */
  gap: 20px;
}

/* Tablet görünümü */
@media(max-width:992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet: 2 sütun */
  }
}

/* Mobil görünümü */
@media(max-width:600px) {
  .product-grid {
    grid-template-columns: 1fr;
    /* Telefon: tek sütun */
  }
}

.product {
  background: #fff8e1;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 3px;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border-bottom: solid 3px #ffa12e
}

.product img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product h3 {
  font-size: 1rem;
}

.product a {
  color: #333;
  text-decoration: none;
}

.product a:hover {
  color: #ffa12e;
}

/* Mobil */
@media(max-width:600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}




footer {
  background: #333;
  color: #fff;
  padding: 60px 20px 30px;
  border-top: solid 5px #ffa12e
}

footer a {
  color: #fff8e1;
  text-decoration: none;
}

footer a:hover {
  color: #ffa12e;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Tablet görünümü */
@media(max-width:992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet: 2 sütun */
  }
}

/* Mobil görünümü */
@media(max-width:600px) {
  .footer-container {
    grid-template-columns: 1fr;
    /* Telefon: tek sütun */
  }
}



.footer-col img {
  width: 170px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #ffa12e;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col p {
  margin-bottom: 10px;
  color: #eee;
}

.social-icons i {
  margin-right: 10px;
  font-size: 20px;
  transition: transform 0.3s;
  color: #fff
}

.social-icons i:hover {
  transform: scale(1.2);
  color: #ffa12e;
}

.social-icons .fa-whatsapp {
  color: #25D366
}


.bottom-bar {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
}

@media(max-width:768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}






/*==================================
FLOATING BALLOONS
==================================*/

#floating-balloons {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
}

#floating-balloons .balloon {
  position: absolute;
  bottom: -180px;
  animation-name: balloonFly;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

#floating-balloons .balloon img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .15));
}

@keyframes balloonFly {

  0% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
    opacity: 0;
  }

  10% {
    opacity: .35;
  }

  30% {
    transform: translate3d(25px, -35vh, 0) rotate(5deg);
  }

  60% {
    transform: translate3d(-20px, -70vh, 0) rotate(-8deg);
  }

  100% {
    transform: translate3d(35px, -130vh, 0) rotate(10deg);
    opacity: 0;
  }
}





a.biziara,
a.whatsapp,
a.konum,
a.facebook,
a.youtube,
a.instagram {
  color: #fff;
  border: solid 2px #fff;
  text-align: center;
  position: fixed;
  display: block;
  padding: 5px 5px 5px 5px;
  right: 20px;
  z-index: 60;
  width: 50px;
  font-size: 22px;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
}

a.biziara:hover,
a.whatsapp:hover,
a.konum:hover,
a.facebook:hover,
a.youtube:hover,
a.instagram:hover {
  color: #000;
}

.konum {
  bottom: 30px;
  background: #ff5a00
}

.youtube {
  bottom: 85px;
  background: #f00
}

.instagram {
  bottom: 140px;
  background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FCAF45, #FFDC80)
}

.facebook {
  bottom: 195px;
  background: #1877F2
}

.whatsapp {
  bottom: 250px;
  background: #25D366;
}

.biziara {
  bottom: 305px;
  background: #4db6de;
}










.ghost {
  height: 10px;
  clear: both;
}

.fixedikonlar {
  padding: 10px;
  background: #E1306C;
  color: #333;
  bottom: 0px;
  width: 100%;
  padding-bottom: 0px;
  text-align: left;
  z-index: 10000000;
  cursor: pointer;
  position: fixed;
}

.fixedikonlar a {
  display: inline-block;
  margin: 0;
  text-align: center;
  color: #fff;
  padding: 5px;
  width: 45px;
  height: 45px;
  font-size: 20px;
  border-radius: 45px;
  -moz-border-radius: 45px;
  -webkit-border-radius: 45px;
  border: solid 2px #fff
}

.fixedikonlar a.whatsapp2 {
  background: #25D366;
}

.fixedikonlar a.biziara2 {
  background: #4db6de
}

.fixedikonlar a.konum2 {
  background: #ff5a00
}

.fixedikonlar a.facebook2 {
  background: #1877F2
}

.fixedikonlar a.youtube2 {
  background: #f00
}

.fixedikonlar a.instagram2 {
  background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FCAF45, #FFDC80)
}

@media (min-width:476px) {
  .fixedikonlar {
    display: none;
  }
}

@media (max-width:767px) {

  a.whatsapp,
  a.biziara,
  a.konum,
  a.facebook,
  a.youtube,
  a.instagram {
    display: none;
  }

  .ghost {
    height: 80px;
  }
}





.page-header {
  position: relative;
  height: 320px;
  background: url('../images/page-banner.jpg') center center;
  background-size: cover;
  overflow: hidden;
}

.page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(33, 32, 95, .88),
      rgba(85, 40, 160, .78));
}

.page-header .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.page-content h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
  /* başlık ile breadcrumb arası boşluk */
}

.page-maskot img {
  width: 220px;
  animation: floatMaskot 4s ease-in-out infinite;
}

@keyframes floatMaskot {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

}

.page-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.page-wave svg {
  width: 100%;
  height: 90px;
}

.confetti {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.confetti::before,
.confetti::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, #FFD93D 2px, transparent 3px),
    radial-gradient(circle, #FF4DA6 2px, transparent 3px),
    radial-gradient(circle, #00C2FF 2px, transparent 3px),
    radial-gradient(circle, #7CFF6B 2px, transparent 3px),
    radial-gradient(circle, #FF7B00 2px, transparent 3px);
  background-size:
    180px 180px,
    220px 220px,
    260px 260px,
    210px 210px,
    240px 240px;
  opacity: .45;
  animation: confettiMove 40s linear infinite;
}

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;

}

.stars::before {
  content: "⭐ ✨ ⭐ ✦ ⭐ ✨ ✦ ⭐";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 26px;
  letter-spacing: 90px;
  opacity: .7;
  animation: starsFloat 8s ease-in-out infinite;
}

.stars::after {
  content: "✨ ⭐ ✦ ⭐ ✨";
  position: absolute;
  bottom: 60px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  letter-spacing: 120px;
  opacity: .5;
  animation: starsFloat2 10s ease-in-out infinite;
}

@keyframes confettiMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(30px);
  }
}

@keyframes starsFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes starsFloat2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* Mobil görünümü */
@media(max-width:600px) {
  .page-maskot img {
    width: 120px;
  }

  .page-content {
    align-items: center;
    text-align: center;
  }

  .page-content h1 {
    font-size: 28px;
    margin-bottom: 6px;
    /* daha az boşluk */
  }

}




/* -- breadcrumb -- */
.cd-breadcrumb {
  padding: 6px;
  margin: 1em auto;
}

.cd-breadcrumb:after {
  content: "";
  display: table;
  clear: both;
}

.cd-breadcrumb li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
}

.cd-breadcrumb li::after {
  /* this is the separator between items */
  display: inline-block;
  content: '\00bb';
  margin: 0 .6em;
  color: #959fa5;
}

.cd-breadcrumb li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}

.cd-breadcrumb li>* {
  /* single step */
  display: inline-block;
  font-size: 1.4rem;
  font-size: 16px;
}

.cd-breadcrumb li.current>* {
  /* selected step */
  color: #00C2FF;
}

.no-touch .cd-breadcrumb a:hover {
  /* steps already visited */
  color: #00C2FF;
}

.cd-breadcrumb li a {
  color: #FF4DA6;
}

.cd-breadcrumb li a:hover {
  color: #FFD93D;
}

/* Mobil görünüm */
@media (max-width: 600px) {
  .cd-breadcrumb {
    display: none;
  }

}







.cerceve {
  border: 1px solid #00C2FF;
}

.icerik {
  min-height: 400px;
  text-align: justify;
  padding: 30px 10px;
}

.icerik .box img {
  display: block;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 15px;
}

.icerik .box h3 {
  margin-bottom: 10px;
}

.icerik .box p {
  color: #555;
  font-size: 0.95rem;
}


.icerik .img {
  border: 1px solid #00C2FF;
  border-bottom: 3px solid #00C2FF;
  width: 60%;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}

.icerik h2.baslik {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  margin: 30px 0;
  padding: 20px;
  color: #fff;
  border-radius: 14px;
  border: 1px solid #00C2FF;
  background: linear-gradient(90deg,
      #6C5CE7 0%,
      /* Mor */
      #00C2FF 25%,
      /* Mavi */
      #00D084 50%,
      /* Yeşil */
      #FFD93D 75%,
      /* Sarı */
      #FF4DA6 100%
      /* Pembe */
    );
}


.icerik video {
  display: block;
  width: 100%;
  height: 100vh;
  background: var(--siyah);
  border: 1px solid #00C2FF;
  border-bottom: solid 3px #00C2FF;
}

.icerik ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 15px 0;
  padding: 0;
}

.icerik ul li {
  list-style: none;
  width: calc(50% - 9px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
  box-sizing: border-box;
}

.icerik ul li::before {
  content: "✔";
  font-size: 18px;
  color: #21205F;
  flex-shrink: 0;
  line-height: 1;
}

.icerik ul li:hover {
  transform: translateX(5px);
}

.icerik ul li:nth-child(6n+1) {
  background: #FDEBD0;
  border-left: 6px solid #FF9F43;
}

.icerik ul li:nth-child(6n+2) {
  background: #D6F5FF;
  border-left: 6px solid #00B5FF;
}

.icerik ul li:nth-child(6n+3) {
  background: #E8F8E8;
  border-left: 6px solid #2ECC71;
}

.icerik ul li:nth-child(6n+4) {
  background: #F7E6FF;
  border-left: 6px solid #9B59B6;
}

.icerik ul li:nth-child(6n+5) {
  background: #FFF5CC;
  border-left: 6px solid #F1C40F;
}

.icerik ul li:nth-child(6n) {
  background: #f7d2e5;
  border-left: 6px solid #FF4DA6;
}

.icerik ul li:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
  transform: translateY(-3px);
}

.icerik ul li::before {
  content: "✔";
  margin-right: 10px;
  color: #21205F;
  font-weight: bold;
}





.icerik ul>li a {
  color: #000;
  display: inline-block;
  transition: all 0.3s ease;
}

.icerik ul>li a:hover {
  color: #FF4DA6;
  transform: translateX(5px);
}

.icerik h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 35px 0 15px;
  transition: .3s;
}



.contact-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}

/* Tablet görünümü */
@media(max-width:992px) {
  .contact-boxes {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet: 2 sütun */
  }
}

/* Mobil görünümü */
@media(max-width:600px) {
  .contact-boxes {
    grid-template-columns: 1fr;
    /* Telefon: tek sütun */
  }
}

.contact-card {
  position: relative;
  background: #fff;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .35s;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;

}

.address::before {
  background: #FF4DA6;
}

.phonewp::before {
  background: #25D366;
}

.mail::before {
  background: #7B3FF2;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.contact-card .icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  margin-bottom: 25px;
}

.address .icon {
  background: #FF4DA6;
}

.phonewp .icon {
  background: #25D366;
}

.mail .icon {
  background: #7B3FF2;
}

.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.contact-card p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
}

.contact-card a {
  color: #666;
  text-decoration: none;
}

.contact-card:hover a {
  color: #21205F;
}



.h3-purple {
  color: #7B3FF2;
}

.h3-pink {
  color: #FF4DA6;
}

.h3-orange {
  color: #FF8A00;
}

.h3-blue {
  color: #00AEEF;
}

.h3-green {
  color: #2ECC71;
}

.h3-red {
  color: #E74C3C;
}

.h3-yellow {
  color: #F4C20D;
}





/* ----- akordiyon SSS ----- */
.accordion {
  margin: 2 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordionbox {
  background: #f9f9f9;
  padding: 60px 20px;
}

.accordionbox .container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  /* Masaüstü: 1 sütun */
  gap: 30px;
}

.accordionbox h2 {
  color: #e86a01;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.accordionbox p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Tablet görünümü */
@media(max-width:992px) {
  .accordionbox .container {
    grid-template-columns: repeat(1, 1fr);
    /* Tablet: 2 sütun */
  }
}

/* Mobil görünümü */
@media(max-width:600px) {
  .accordionbox .container {
    grid-template-columns: 1fr;
    /* Telefon: tek sütun */
  }
}

.accordionbox .info {
  text-align: center;
  margin-bottom: 25px;
}


.accordion-item {
  border-bottom: 0px solid #fff;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 20px 10px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

/* Her başlık farklı renk */
.accordion-item:nth-child(1) .accordion-header {
  background: #FDEBD0;
  border-left: 6px solid #FF9F43;
}

.accordion-item:nth-child(2) .accordion-header {
  background: #D6F5FF;
  border-left: 6px solid #00B5FF;
}

.accordion-item:nth-child(3) .accordion-header {
  background: #E8F8E8;
  border-left: 6px solid #2ECC71;
}

.accordion-item:nth-child(4) .accordion-header {
  background: #F7E6FF;
  border-left: 6px solid #9B59B6;
}

.accordion-item:nth-child(5) .accordion-header {
  background: #FFF5CC;
  border-left: 6px solid #F1C40F;
}

.accordion-item:nth-child(6) .accordion-header {
  background: #f7d2e5;
  border-left: 6px solid #FF4DA6;
}

.accordion-item:nth-child(7) .accordion-header {
  background: #FDEBD0;
  border-left: 6px solid #FF9F43;
}

.accordion-item:nth-child(8) .accordion-header {
  background: #D6F5FF;
  border-left: 6px solid #00B5FF;
}

.accordion-item:nth-child(9) .accordion-header {
  background: #E8F8E8;
  border-left: 6px solid #2ECC71;
}

.accordion-item:nth-child(10) .accordion-header {
  background: #F7E6FF;
  border-left: 6px solid #9B59B6;
}

.accordion-item:nth-child(11) .accordion-header {
  background: #FFF5CC;
  border-left: 6px solid #F1C40F;
}

.accordion-item:nth-child(6) .accordion-header {
  background: #f7d2e5;
  border-left: 6px solid #FF4DA6;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  background: #ffa12e;
  border-left: 6px solid #333;
  color: #000;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-content p {
  margin: 12px 0;
  font-size: 15px;
  color: #333;
}

/* Açık olduğunda */
.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 15px;
}

/* Responsive */
@media (max-width: 600px) {
  .accordion-header {
    font-size: 14px;
    padding: 12px;
  }

  .accordion-content p {
    font-size: 14px;
  }
}