@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fustat:wght@200..800&display=swap');




html,body {
     font-family: "Fustat", sans-serif;
    margin: 0;
    padding: 0;
   overflow-x:hidden;
}

   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .text-content-3{
         width: 100%;
  max-width: 1350px;
  margin: 0 auto;
    }
   #map {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    width:1350px;
    margin: 0 auto;
}

.mobilvaziyet{
	display:none
}
 .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            color: white;
            overflow: hidden;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
          .hero-video iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 56.25vw; 
            min-height: 100vh;
            min-width: 177.78vh;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

 @media (max-aspect-ratio: 16/9) {
            .hero-video iframe {
                width: 177.78vh;
                height: 100vh;
            }
        }
        
        @media (min-aspect-ratio: 16/9) {
            .hero-video iframe {
                width: 100vw;
                height: 56.25vw;
            }
        }

        .logo {
            margin-top: 40px;
            text-align: center;
            z-index: 4;
        }

        .audio-control {
            position: absolute;
            top: 50%;
            left: 40px;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            transition: all 0.3s ease;
        }
        
        .audio-control:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }
        
        .audio-control.playing {
            background: rgba(187, 184, 69, 0.2);
            border-color: #BBB845;
        }

        .bottom-buttons {
            z-index: 4;
            position: absolute;
            bottom: 40px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 40px;
        }

        .btn {
            position: relative;
            overflow: hidden;
            border: 1px solid white;
            border-radius: 30px;
            padding: 12px 24px;
            font-size: 1rem;
            cursor: pointer;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
            z-index: 0;
            text-decoration: none;
        }

        .btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: #BBB845;
            z-index: -1;
            transition: width 0.4s ease;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            color: white;
            border-color: #BBB845;
        }

        .btn-icon {
            transition: stroke 0.4s ease;
        }

        .scroll-arrow {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            color: #cddc39;
            animation: bounce 2s infinite;
            z-index: 1;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translate(-50%, 0);
            }
            50% {
                transform: translate(-50%, 10px);
            }
        }

        .hero::before,
        .hero::after {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 25%;
            z-index: 1;
            pointer-events: none;
        }

        .hero::before {
            z-index: 0;
            top: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
        }

        .hero::after {
            z-index: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        }

        .nav-button {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 32px;
            color: white;
            cursor: pointer;
            z-index: 1001;
            transition: transform 0.3s ease;
        }
	

        @media (max-width: 768px) {
            .audio-control {
                left: 20px;
                width: 50px;
                height: 50px;
            }
			.ala2{
				display:block !important;
			}
			.mobilvaziyet{
				display:block !important;
			}
            .bottom-buttons {
               padding-right: 20px;
        gap: 10px;
        align-items: center;
        display: flex
;
        flex-direction: row;
            }
			.masaustuvaziyet{
				display:none
			}
            .btn {
                max-width: 280px;
                justify-content: center;
            }
        }
@media (max-width: 1024px) {
  .hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    padding: 0 20px;
  }

  .logo {
    margin-top: 20px;
    max-width: 70%;
  }

  .bottom-buttons {
    padding: 0 20px;
    bottom: 20px;
  }

  .btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .nav-button {
    top: 20px;
    right: 20px;
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .text-content-3 {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .logo {
    max-width: 100%;
    margin-top: 10px;
  }
    
    .logo img{
        width:180px !important;
    }
    .fullscreen-menu.active .menu-links a {
        font-size:20px !important;
}
.menu-content img{
    width:180px !important;
}
  .btn {
    font-size: 0.8rem;
    padding: 8px 14px;
    gap: 6px;
  }

  .bottom-buttons {
      padding-left 20px;
      padding-right:20px;
    gap: 10px;
    align-items: center;
  }

  .scroll-arrow {
    font-size: 1.5rem;
    bottom: 15px;
    padding-right:20px;
  }
  .nav-button svg{
      width:30px !important;
      height:auto;
  }
}
.nav-button:hover {
  transform: scale(1.2);
}
.fullscreen-menu {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw; 
  height: 100vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 2000;
}

.fullscreen-menu::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), 
    url('https://olivebreeze.medyae.com.tr/wp-content/uploads/2025/08/shutterstock_499013824-1-scaled.webp') no-repeat center/cover;
  filter: blur(5px);
  z-index: -1; 
}

.fullscreen-menu.active {
  opacity: 1;
  pointer-events: auto;
}


.menu-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 2;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease;
}
.fullscreen-menu.active .menu-content {
  transform: translateY(0);
  opacity: 1;
}

.menu-title {
  font-size: 34px;
  letter-spacing: 2px;
}
.menu-subtitle {
  font-size: 18px;
  margin-top: 6px;
}
.menu-line {
  width: 120px;
  height: 1px;
  background: white;
  margin: 14px auto;
  opacity: 0.7;
}
.menu-location {
  font-size: 18px;
  margin-bottom: 40px;
}

.menu-links a {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  color: white;
  text-decoration: none;
  margin: 14px 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
  position: relative;
}
.fullscreen-menu.active .menu-links a {
  transform: translateY(0);
  opacity: 1;
  font-size:30px;
  padding-bottom:15px;
}
.menu-links a:nth-child(1) { transition-delay: 0.1s; }
.menu-links a:nth-child(2) { transition-delay: 0.2s; }
.menu-links a:nth-child(3) { transition-delay: 0.3s; }
.menu-links a:nth-child(4) { transition-delay: 0.4s; }
.menu-links a:nth-child(5) { transition-delay: 0.5s; }
.menu-links a:nth-child(6) { transition-delay: 0.6s; }
.menu-links a:nth-child(7) { transition-delay: 0.7s; }

.menu-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: rgba(187, 184, 69, 0.3);

  transition: all 0.4s ease;
  transform: translateX(-50%);
}
.menu-links a:hover::after {
  width: 100%;
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 80px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 2001;
  transition: transform 0.3s ease;
}
.close-btn:hover {
  transform: rotate(90deg);
}

.menu-content img{
    width:250px;
    height:auto;
    padding-bottom:50px;
}
 .container-text {
    width:1350px;
    margin:0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      padding-top:100px;
    }

    .text-content {
      flex: 1;
      max-width: 43%;
      transition: all 0.4s ease;
    }

    
    .text-content-2 {
     
      width: 100%;
      transition: all 0.4s ease;
    }

   .image-boxes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px; 
  width: 50%;
}

  .image-box {
  position: relative;
  overflow: hidden;
  height: 100px;
  transition: all 0.6s ease;
  cursor: pointer;
  border: none; 
  
  opacity: 0.5;
 border-radius:10px; }

   .image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.6s ease;
  border-radius:10px;
}

.section-header h2{
    font-weight:500;
}

    .image-box h3 {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.5); 
  padding: 10px 20px;
  font-weight: 600;
  font-size: 18px;
  z-index: 2;
  text-align: center;
}
.mobilolive{
    display:none;
}

@media (max-width: 1024px) {
  .container-text {
    width: 100%;
    padding: 50px 20px 0;
    gap: 30px;
  }

  .text-content {
    max-width: 100%;
    flex: 1 1 100%;
  }

.mobilolive{
    display:block;
}
#animatedTitle{
    display:none !important;
}
  .image-box {
    flex: 1 1 calc(50% - 15px);
    height: auto;
    opacity: 0.8;
  }
}

@media (max-width: 600px) {
  .container-text {
    padding: 30px 15px 0;
    gap: 20px;
  }
#animatedTitle{
    display:none !important;
}
  .text-content {
    max-width: 100%;
  }

  .image-boxes {
    flex-direction: column;
    gap: 15px;
  }


  .image-box h3 {
    font-size: 16px;
    padding: 8px 15px;
    left: 50%;
  }
}

    .image-box.active {
  height: 350px;
  opacity: 1; 
}
    .text-block {
      display: none;
      transition: opacity 0.4s ease;
    }

    .text-block.active {
      display: block;
    }
    
     .bottom-buttons a{
        text-decoration:none;
    }


.custom-slider {
    width:100%;
    margin: 50px auto;
  }

  .mySwiper {
    overflow: hidden;
  }

  .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
    transform: scale(0.8) !important;
    opacity: 0.7 !important;
  }

  .swiper-slide img {
    width: 100%;
    display: block;
  }

  .swiper-slide-active {
    transform: scale(1) !important;
    opacity: 1 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .slider-controls {
      
    width:500px;
    margin:0 auto;
    display: flex;
   align-items: flex-start;
    justify-content: center;
    margin-top: 55px;
    gap: 30px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    position: relative;
    
    color: olive;
    width: 40px;
    height: 40px;

    display: flex;
    justify-content: center;
  }
.swiper-button-prev img,
  .swiper-button-next img{
     width: 70px;
    height: 30px;
}
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 16px;
  }

  .slider-progress {
    flex: 1;
    height: 4px;
    background: #BBB845;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }

  .slider-progress-bar {
    height: 100%;
    width: 25%; 
    background: #605D00;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
    transition: left 0.4s ease;
  }
  
  .swipersli{
      height:500px !important; 
  }
  .swipersli img{
      object-fit:cover;
          height: 500px;
  }
  
@media (max-width: 1024px) {
  .slider-controls {
    width: 100%;
    gap: 20px;
    padding: 0 20px;
  }

  .swipersli {
    height: 400px !important;
  }

  .swipersli img {
    height: 400px;
  }

  .swiper-button-prev img,
  .swiper-button-next img {
    width: 60px;
    height: 30px;
  }
}

@media (max-width: 600px) {
  .slider-controls {
    align-items: center;
    gap: 15px;
    padding: 0 15px;
  }

  .swipersli {
    height: 250px !important;
  }

  .swipersli img {
    height: 250px;
  }

  .swiper-button-prev img,
  .swiper-button-next img {
    width: 50px;
    height: 30px;
  }

  .slider-progress {
    width: 100%;
  }
}

 #kvkkPopup {
    display:none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  width: 90%;
  height: 80%;
  overflow-y: auto;
  z-index: 9999 !important;
  }
  #kvkkOverlay {
   
  display:none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998 !important;

  }
 
  
    #animatedTitle {
      color: #B5B55B;
      font-size: 71px;
      font-weight: 400;
      display: flex;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(50px);
      margin-top: 40px;
         font-family: "Marcellus", serif;

       text-aling:left;
    }
    .mobilolive{
        color: #B5B55B;
      font-size: 55px;
      font-weight: 400;
      margin-top: 40px;
         font-family: "Marcellus", serif;

       text-aling:left;
    }

    #animatedTitle span {
      opacity: 0;
      transform: translateY(20px);
      display: inline-block;
    }

    .section-header {
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-icon {
  width: 50px;
  height: auto;
}

.section-divider {
  border: none;
  border-top: 2px solid #B5B55B;
  width: 100%;
  margin: 12px 0 24px;
}

@media (max-width: 768px) {
  .parallax-section {
   display:none;
  }
 #hakkinda{
     padding-top:50px;
 }
  #thassos{
     padding-top:50px;
 }
 
   #galeri{
     padding-top:50px;
 }
 
   #sss{
     padding-top:50px;
 }
   #lokasyon{
     padding-top:50px;
 }
   #planlar{
     padding-top:50px;
 }
   #iletisim{
     padding-top:50px;
 }
 .text-content-3{
     padding-top:0px !important;
 }

}

.parallax-section {
  height: 70vh;
  background-image: url('https://olivebreeze.medyae.com.tr/wp-content/uploads/2025/08/garallaxcon-scaled.webp'); 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top:100px;
}
.text-content-3{
    padding-top:100px;
}
.container-text h2{
      font-family: "Marcellus", serif;

}

.text-content-3 h2{
      font-family: "Marcellus", serif;

}

  .container {
            max-width: 1350px;
            margin: 0 auto;
           
            display: flex;
            align-items: flex-start;
           margin:0px;
        
            gap: 60px;
        }

        .left-section {
            flex: 1;
            max-width: 600px;
        }

        .right-section {
            flex: 1;
            max-width: 600px;
            padding-left: 40px;
        }

        #animatedTitle2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            color: #BBB845;
             font-family: "Marcellus", serif;

            margin-bottom: 0;
            opacity: 0;
            transform: translateY(50px);
        }

        #animatedTitle2 span {
            display: inline-block;
            opacity: 0;
            transform: translateY(50px);
        }

        #animatedTitle3{
             font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            color: #BBB845;
             font-family: "Marcellus", serif;

            margin-bottom: 0;
            opacity: 0;
            transform: translateY(50px);
        }
        
        #animatedTitle3 span{
            display: inline-block;
            opacity: 0;
            transform: translateY(50px);
        }
        
          #animatedTitle4{
             font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            color: #BBB845;
             font-family: "Marcellus", serif;

            margin-bottom: 0;
            opacity: 0;
            transform: translateY(50px);
        }
        
        #animatedTitle4 span{
            display: inline-block;
            opacity: 0;
            transform: translateY(50px);
        }
        
          #animatedTitle5{
             font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            color: #BBB845;
             font-family: "Marcellus", serif;

            margin-bottom: 0;
            opacity: 0;
            transform: translateY(50px);
        }
        
        #animatedTitle5 span{
            display: inline-block;
            opacity: 0;
            transform: translateY(50px);
        }
        
           #animatedTitle6{
             font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            color: #BBB845;
             font-family: "Marcellus", serif;

            margin-bottom: 0;
            opacity: 0;
            transform: translateY(50px);
        }
        
        #animatedTitle6 span{
            display: inline-block;
            opacity: 0;
            transform: translateY(50px);
        }

        .description {
            font-size: 14px;
            color: #333;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            text-align: justify;
        }

      
.cta-button {
  position: relative;
  overflow: hidden;
  border: 1px solid white;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  background-color: transparent;
  color: black;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.4s ease, border-color 0.4s ease;
  z-index: 0;
  border:1px solid #BBB845;
  opacity: 0;
}
.cta-button{
    text-decoration:none;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #BBB845;
  z-index: -1;
  transition: width 0.4s ease;
}

.cta-button:hover::before {
  width: 100%;
}

.cta-button:hover {
  color: white;
  border-color: #BBB845; 
}
.text2{
    display:none;
}
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .left-section,
  .right-section {
    width: 100% !important;
    padding-left: 0;
  }
  .text2{
      display:block;
  }

  #animatedTitle2,
  #animatedTitle3 {
       font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            color: #BBB845;
             font-family: "Marcellus", serif;

            margin-bottom: 0;
  }

  .description {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .container {
    gap: 25px;
    padding: 0 15px;
  }
 .text2{
        font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            color: #BBB845;
             font-family: "Marcellus", serif;

            margin-bottom: 0;
  }
  #animatedTitle2,
  #animatedTitle3 {
    display:none;
  }
  #animatedTitle4{
    display:none;
}
  #animatedTitle5{
    display:none;
}
#animatedTitle6{
    display:none;
}
  .description {
    font-size: 14px;
    text-align: left;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 10px 18px;
    justify-content: center;
    width: 100%;
  }
}

.ala2{
    width:100%;

}

.ala2 img{
    width:100%;
}


.z-carousel-view-buttons {  
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.z-carousel-view-btn {
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #ccc;
    font-size: 16px;
    display:flex;
}
.z-carousel-view-btn.z-btn-active {
    background: #f5f5f5;
    border-color: #000;
}
.z-swiper-main-container {
    width: 100vw;
    position: relative;
    margin-left: calc(-50vw + 50%);
    z-index: 1!important;
}
.d-swiper-custom-slide {
    text-align: center;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    opacity: .5;
    transform: scale(.8);
}
.d-swiper-custom-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.swiper-slide-active .d-swiper-custom-slide {
    opacity: 1!important;
    transform: scale(1)!important;
}
.swiper-slide-next .d-swiper-custom-slide, .swiper-slide-prev .d-swiper-custom-slide {
    opacity: .7!important;
    transform: scale(.85)!important;
}
.d-custom-zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity .3s;
    z-index: 10;
}
.d-custom-zoom-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}
.z-image-modal-overlay {
    display: none;
    position: fixed!important;
    z-index: 99999!important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .9);
    animation: .3s fadeIn;
}
.z-image-modal-overlay.z-modal-show {
    display: flex;
    align-items: center;
    justify-content: center;
}
.z-modal-content-wrapper {
    width: 80%;
    height: 80%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: .3s zoomIn;
}
.z-modal-content-wrapper img {
    width: 100%;
    padding-top:30px;
    object-fit: contain;
    border-radius: 10px;
}
.z-modal-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    transition: background .3s;
}
.z-modal-close-btn:hover {
    background: rgba(0, 0, 0, .8);
}
@keyframes fadeIn {
    from {
    opacity: 0;
}
to {
    opacity: 1;
}
}@keyframes zoomIn {
    from {
    transform: translate(-50%, -50%) scale(.5);
    opacity: 0;
}
to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
}.z-swiper-nav-buttons {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 20px;
}
.z-swiper-nav-buttons .swiper-button-next, .z-swiper-nav-buttons .swiper-button-prev {
    position: static!important;
    border-radius: 50%;
    width: 55px!important;
    height: 55px!important;
}


.swiper-button-next:after, .swiper-button-prev:after{
    display:none;
}


 .image-row {
      display: flex;
      gap: 100px;
      max-width: 1350px;
      margin: 0 auto;
    }

    .image-box-2 {
      flex: 1 1 0;
      display: flex;
      align-items: center;
      justify-content: center;
      height:auto;
    }

    .image-box-2 img {
      width: 100%;
      height: 100%;
      object-fit: cover; 
      display: block;
    }

     .faq-section {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 150px;
        max-width: 1350px;
        margin: auto;
    }

    .faq-container {
        flex: 0 0 800px;
    }

    .faq-item {
        border-radius: 12px;
        background: #fff;
        margin-bottom: 15px;
        padding: 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.06);
        cursor: pointer;
        transition: box-shadow 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 500;
        font-size: 18px;
        color: #333;
    }

    .faq-question .dot {
        width: 12px;
        height: 12px;
        background-color: #c1b441;
        border-radius: 50%;
        margin-right: 12px;
    }

    .faq-question-text {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .faq-answer {
         max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding-top: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
        font-size: 15px;
        color: #555;
        box-sizing: border-box;
    }

    .faq-item.active .faq-answer {
        opacity: 1;
         max-height: 500px !important; 
  padding-top: 10px;
    }

    .arrow {
        transition: transform 0.3s ease;
        fill: #c1b441;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .faq-item.active .arrow {
        transform: rotate(180deg);
    }

    .faq-image {
        flex: 0 0 400px;
    }

    .faq-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
    
@media (max-width: 1024px) {
  .image-row {
    gap: 40px;
    padding: 0 20px;
  }

  .faq-section {
    gap: 40px;
    padding: 0 20px;
  }

  .faq-container {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .faq-image {
    display:none;
  }
}

@media (max-width: 600px) {
  .image-row {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .faq-section {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .faq-container,
  .faq-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}


.form-container {
    width: 100%;
    height: 700px;
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    background: url('https://olivebreeze.medyae.com.tr/wp-content/uploads/2025/08/formbg-scaled.webp') no-repeat center center/cover;
}

.form-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding-left:150px;
    padding-right:150px;
    padding-top:50px;
    padding-bottom:50px;
    width: 1000px;
    border-radius: 20px 20px 0 0 ;
    text-align: center;
}

.form-icon {
    width: 150px;
    height:auto;
    margin-bottom: 15px;
}

.form-text {
    font-size: 35px;
    margin-bottom: 30px;
    font-weight: 500;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group input {
    border: none;
    border-bottom: 2px solid black;
    background: transparent;
    padding: 8px 0;
    font-size: 16px;
    outline: none;
}

.form-desc {
    font-size: 14px;
    text-align: left;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #c3c24f;
    cursor: pointer;
}

.submit-btn {
    margin-top: 20px;
    background: #c3c24f;
    color: white;
    padding: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #a2a13d;
}

@media (max-width: 1024px) {
  .form-box {
    width: 90%;
    padding: 40px;
  }

  .form-text {
    font-size: 24px;
  }

  .form-icon {
    width: 120px;
  }
}

@media (max-width: 600px) {
  .form-container {
    height: auto;
    padding: 30px 0;
    align-items: center;
  }

  .form-box {
    width: 95%;
    padding: 20px;
    border-radius: 15px;
  }

  .form-text {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .form-icon {
    width: 100px;
    margin-bottom: 10px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input {
    font-size: 15px;
  }

  .submit-btn {
    font-size: 15px;
    padding: 12px;
  }
}



     .footer-title {
        display: flex;
        align-items: center;
        max-width: 1350px;
        margin: 40px auto 10px auto;
        padding: 0 20px;
          font-family: "Marcellus", serif;
    }
    .footer-title h2 {
        font-size: 42px;
        font-weight: 400;
        margin: 0;
        white-space: nowrap;
          font-family: "Marcellus", serif;
    }
    .footer-title .line {
        flex: 1;
        height: 1px;
        background-color: #ececd9;
        margin-left: 20px;
    }

    .footer {
        max-width: 1350px;
        margin: auto;
        padding: 40px 20px 20px 20px;
    }
    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .footer-column {
        flex: 1;
        min-width: 200px;
    }
    .footer-column h3 {
        font-size: 18px;
        font-weight: 300;
        margin-bottom: 10px;
          font-family: "Marcellus", serif;
    }
    .footer-column p, 
    .footer-column a {
        font-size: 15px;
        color: #555;
        text-decoration: none;
        display: block;
        margin-bottom: 5px;
    }
    .footer-column a:hover {
        text-decoration: underline;
    }

    .logo-placeholder {
        width: 150px;
        height: 60px;
        margin: 0 auto 10px;
        
    }
    .logo-placeholder img{
        width:150px;
        height:auto;
    }

    .footer-bottom {
        text-align: center;
        font-size: 14px;
        color: #555;
        margin-top: 80px;
    }
    
@media (max-width: 1024px) {
  .footer-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .footer-column {
    min-width: 100%; 
    text-align: left !important; 
    margin-left: 0;
    float: none; 
  }
  .do-talep-btn span {
      font-size:12px;
}
.right-side-container {
    right:10px;
}
.close-btn{
    right:30px;
}
}
@media (max-width: 600px) {
  .footer-title {
    flex-direction: column;
    gap: 10px;
  }

  .footer-title h2 {
    font-size: 24px;
    white-space: normal; 
  }

  .footer-title .line {
    margin-left: 0;
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    min-width: 100%;
  }

  .footer-column h3 {
    font-size: 16px;
    text-align:center;
  }

  .footer-column p,
  .footer-column a {
    font-size: 14px;
    text-align:center;
  }

  .logo-placeholder {
    width: 120px;
    height: auto;
  }

  .logo-placeholder img {
    width: 120px;
  }

  .footer-bottom {
    font-size: 13px;
    margin-top: 40px;
  }
}


    .sss{
        padding-top:50px;
        
        }


        .logo img{
            width:250px;
            height:auto;
        }

        .logo{
            z-index:1;
        }
        
        
        
        .right-side-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 999;
}
.right-side-container a {
    display: flex;
    align-items: center;
}
.do-talep-btn {
    background-color: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: .4s cubic-bezier(.4,  0,  .2,  1);
    z-index: 1000;
    width: 55px;
    color: #000;
}
.talep-container a{
    text-decoration:none;
}
.do-talep-btn svg {
    width: 24px;
    height: 24px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(45,  90,  39,  .2));
}
.do-talep-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    letter-spacing: .5px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}
.whatsapp-button {
    transition: background-color .3s;
    z-index: 1000;
}
.whatsapp-button img {
    width:50px;
}

.fullscreen-menu.active .menu-links a{
      font-family: "Marcellus", serif;
}


.talep-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: flex-end;
    align-items: center;
    padding-left: 30px;
    z-index: 9999;
  }

  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(-30px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .talep-popup.show {
    display: flex;
  }

  .talep-popup.show .talep-popup-content {
    animation: fadeInLeft 0.3s ease forwards;
  }

  .talep-popup-content {
    background: #d9d9d9;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 370px;
    width: 100%;
    box-sizing: border-box;
  
  }

  .talep-popup-content h2 {
    color: #bcbc3f;
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 30px;
  }

  .talep-popup-content input[type="text"],
  .talep-popup-content input[type="tel"],
  .talep-popup-content input[type="email"] {
    width: 100%;
    height: 48px;
    border-radius: 25px;
    border: 1.5px solid #3e3e3e;
    background: transparent;
    padding: 0 20px;
    font-size: 16px;
    margin-bottom: 20px;
    color: #3e3e3e;
    outline: none;
    box-sizing: border-box;
  }

  .talep-popup-content input::placeholder {
    color: #3e3e3e;
    font-weight: 400;
  }

  .onay-text {
    font-size: 14px;
    color: #545454;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .checkbox-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #545454;
    font-size: 14px;
    align-items: center;
  }

  .checkbox-group label,
  .kvkk-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }

  input[type="checkbox"] {
    width: 18px;
    height: 18px;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #bcbc3f;
    border-radius: 3px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease;
  }

  input[type="checkbox"]:checked {
    background-color: #223300;
    border-color: #223300;
  }

  input[type="checkbox"]:checked + span {
    color: #223300;
  }

  .kvkk-label {
    font-size: 14px;
    color: #545454;
    margin-bottom: 25px;
  }

  button[type="submit"] {
    background-color: #bcbc3f;
    color: white;
    border: none;
    border-radius: 25px;
    width: 100%;
    height: 48px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.25s ease;
  }

  button[type="submit"]:hover {
    background-color: #9a9a2d;
  }

  .do-talep-btn {
    display: flex;
    align-items: center;
    gap: 10px;
       background-color: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 25px 20px;
    color:white;
    cursor: pointer;
    user-select: none;
  }

  .do-talep-btn svg {
    fill: white;
  }
  
  #talepForm{
      gap:0px !important
  }
  
  .popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
  }
  .popup-content {
    background: white;
    padding: 50px;
    width:80%;
    border-radius: 8px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
  }
  .popup-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
  }

.talep-close-btn {
 right: 40px;
    position: absolute;
    background: none !important;
    border: none;
    font-size: 30px;
  cursor: pointer;
  color: #333;
}