/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* ============================================
   PARALLAX BANNER - Desktop/Mobile Split
   ============================================ */
.parallax-banner-wrapper {
  position: relative;
  width: 100%;
  height: 120vh; /* Scroll mesafesi */
  overflow: visible;
}

.parallax-scroll-dist {
  position: absolute;
  width: 100%;
  height: 200vh;
  pointer-events: none;
}

.parallax-banner-main {
  position: relative; /* sticky değil, relative */
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.parallax-svg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.parallax-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  font-size: 65px;
  text-transform: uppercase;
}

.parallax-bottle {
  transform-origin: center center;
}

#parallax-arrow-btn {
  cursor: pointer;
}

.parallax-text-blue {
  fill: #064393;
}

.parallax-lorem {
  fill: #fff;
}

.parallax-arrow {
  fill: #fff;
}

.main-content {
  position: relative;
  z-index: 10;
  margin-top: 0;
  background: var(--color-white);
  /* min-height: 100vh; */
}

.main-content-cloud {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: -webkit-fill-available;
  background-image: url("../images/cloud-top.png");
  background-repeat: repeat-x;
  background-position: center;
  background-size: cover;
  z-index: 5;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.main-content > section {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ============================================
   TABLET (768px - 1200px)
   ============================================ */

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .main-content {
    min-height: auto;
  }
  .parallax-banner-wrapper {
    height: auto;
  }
  .parallax-scroll-dist {
    height: 120vh;
  }
  .parallax-banner-main {
    height: auto;
    padding: 60px 0;
  }
}

/* ============================================
   MOBILE (0 - 767px)
   ============================================ */

@media only screen and (max-width: 767px) {
  .parallax-banner-wrapper {
    height: auto;
  }
  .parallax-scroll-dist {
    height: 120vh;
  }
  .parallax-banner-main {
    height: auto;
    padding: 60px 0;
  }
  .parallax-svg {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* ============================================
   CLOUD2 HORIZONTAL LOOP - 2. VE 3. KATMAN KISA
   ============================================ */
@keyframes Cloud2HorizontalOnly {
    from { transform: translateX(0) scaleY(-1); }
    to { transform: translateX(-1200px) scaleY(-1); }
}

@keyframes Cloud2HorizontalMedium {
    from { transform: translateX(0) scaleY(-1) scaleX(0.85); }
    to { transform: translateX(-1200px) scaleY(-1) scaleX(0.85); }
}

@keyframes Cloud2HorizontalFast {
    from { transform: translateX(0) scaleY(-1) scaleX(0.7); }
    to { transform: translateX(-1200px) scaleY(-1) scaleX(0.7); }
}

.cloud2-loop-wrapper {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 600px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.cloud2-loop {
    position: absolute;
    top: 0;
    left: 0;
    width: 2400px;
    height: 600px;
    background-image: url('https://assets.codepen.io/721952/cloud2.png');
    background-repeat: repeat-x;
    background-size: 1200px auto;
    background-position: 0 center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* 1. katman - normal, tam boy */
.cloud2-loop:nth-child(1) {
    left: 0;
    animation: Cloud2HorizontalOnly 120s linear infinite;
    opacity: 0.92;
    z-index: 3;
}

/* 2. katman - KISA, DAHA ÖNDE BAŞLAR */
.cloud2-loop:nth-child(2) {
    left: 400px;
    animation: Cloud2HorizontalMedium 100s linear infinite;
    opacity: 0.82;
    z-index: 2;
    height: 480px;
}

/* 3. katman - EN KISA + HIZLI */
.cloud2-loop:nth-child(3) {
    left: 1200px;
    animation: Cloud2HorizontalFast 80s linear infinite;
    opacity: 0.75;
    z-index: 1;
    height: 400px;
}

/* Scroll sırasında fade out */
.cloud2-loop-wrapper {
    transition: opacity 0.3s ease;
}

/* Mobile optimizasyonu */
@media only screen and (max-width: 767px) {
    @keyframes Cloud2HorizontalOnlyMobile {
        from { transform: translateX(0) scaleY(-1); }
        to { transform: translateX(-800px) scaleY(-1); }
    }
    
    @keyframes Cloud2HorizontalMediumMobile {
        from { transform: translateX(0) scaleY(-1) scaleX(0.85); }
        to { transform: translateX(-800px) scaleY(-1) scaleX(0.85); }
    }
    
    @keyframes Cloud2HorizontalFastMobile {
        from { transform: translateX(0) scaleY(-1) scaleX(0.7); }
        to { transform: translateX(-800px) scaleY(-1) scaleX(0.7); }
    }
    
    .cloud2-loop-wrapper {
        top: -15px;
        height: 380px;
    }
    
    .cloud2-loop {
        width: 1600px;
        height: 380px;
        background-size: 800px auto;
    }
    
    .cloud2-loop:nth-child(1) {
        left: 0;
        animation: Cloud2HorizontalOnlyMobile 90s linear infinite;
        opacity: 0.88;
        z-index: 3;
    }
    
    .cloud2-loop:nth-child(2) {
        left: 300px;
        animation: Cloud2HorizontalMediumMobile 75s linear infinite;
        opacity: 0.78;
        z-index: 2;
        height: 320px;
    }
    
    .cloud2-loop:nth-child(3) {
        left: 800px;
        animation: Cloud2HorizontalFastMobile 60s linear infinite;
        opacity: 0.72;
        z-index: 1;
        height: 280px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    @keyframes Cloud2HorizontalOnlyTablet {
        from { transform: translateX(0) scaleY(-1); }
        to { transform: translateX(-1000px) scaleY(-1); }
    }
    
    @keyframes Cloud2HorizontalMediumTablet {
        from { transform: translateX(0) scaleY(-1) scaleX(0.85); }
        to { transform: translateX(-1000px) scaleY(-1) scaleX(0.85); }
    }
    
    @keyframes Cloud2HorizontalFastTablet {
        from { transform: translateX(0) scaleY(-1) scaleX(0.7); }
        to { transform: translateX(-1000px) scaleY(-1) scaleX(0.7); }
    }
    
    .cloud2-loop-wrapper {
        top: -18px;
        height: 480px;
    }
    
    .cloud2-loop {
        width: 2000px;
        height: 480px;
        background-size: 1000px auto;
    }
    
    .cloud2-loop:nth-child(1) {
        left: 0;
        animation: Cloud2HorizontalOnlyTablet 100s linear infinite;
        opacity: 0.90;
        z-index: 3;
    }
    
    .cloud2-loop:nth-child(2) {
        left: 350px;
        animation: Cloud2HorizontalMediumTablet 85s linear infinite;
        opacity: 0.80;
        z-index: 2;
        height: 400px;
    }
    
    .cloud2-loop:nth-child(3) {
        left: 1000px;
        animation: Cloud2HorizontalFastTablet 70s linear infinite;
        opacity: 0.73;
        z-index: 1;
        height: 350px;
    }
}

/* ============================================
   WATER MINERALS SECTION
   ============================================ */

.water-minerals-section {
  position: relative;
  /* padding: 0 0 100px; */
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
  height: 100%;
}

.section-video-bg {
  position: absolute;
  bottom: 0;
  /* left: 50%;
  transform: translate(-50%, -50%); */
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

.minerals-header {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 20px;
  z-index: 1;
}

.minerals-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 20px 0;
}

.highlight-yellow {
  color: var(--color-primary);
}

.minerals-description {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
}

.minerals-bottle-section {
  position: relative;
  max-width: 900px;
  width: 100%;
  height: 600px;
  margin: 0 auto;
  z-index: 1;
}

.minerals-arc {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.mineral-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  animation: mineralFadeIn 0.6s ease forwards;
  z-index: 2;
}

/* Sabit Pozisyonlar - Görseldeki Gibi */

/* Fe - Üstte Ortada */
.mineral-item[data-mineral="fe"] {
  top: 0;
  left: 45%;
  transform: translateX(-50%);
  animation-delay: 0.2s;
}

/* Al - Sol Üst */
.mineral-item[data-mineral="al"] {
  top: 10%;
  left: 15%;
  animation-delay: 0.4s;
}

/* Cl - Sağ Üst */
.mineral-item[data-mineral="cl"] {
  top: 10%;
  right: 15%;
  animation-delay: 0.6s;
}

/* Mn - Sol Alt */
.mineral-item[data-mineral="mn"] {
  bottom: 40%;
  left: 0;
  animation-delay: 0.8s;
}

/* Na - Sağ Alt */
.mineral-item[data-mineral="na"] {
  bottom: 40%;
  right: 0;
  animation-delay: 1s;
}

@keyframes mineralFadeIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.mineral-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mineral-symbol {
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  transition: all 0.4s ease;
}

.mineral-name {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-align: center;
  transition: all 0.4s ease;
  margin: 0;
}

/* Mineral Renkleri */
.mineral-item[data-mineral="fe"] .mineral-icon {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.mineral-item[data-mineral="fe"] .mineral-symbol {
  color: var(--color-primary);
}

.mineral-item[data-mineral="al"] .mineral-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.mineral-item[data-mineral="al"] .mineral-symbol {
  color: var(--color-primary-dark);
}

.mineral-item[data-mineral="cl"] .mineral-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.mineral-item[data-mineral="cl"] .mineral-symbol {
  color: var(--color-primary-dark);
}

.mineral-item[data-mineral="mn"] .mineral-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.mineral-item[data-mineral="mn"] .mineral-symbol {
  color: #ffffff;
}

.mineral-item[data-mineral="na"] .mineral-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.mineral-item[data-mineral="na"] .mineral-symbol {
  color: #ffffff;
}

/* Hover Efektleri */
.mineral-item:hover {
  transform: scale(1.15);
}

.mineral-item[data-mineral="fe"]:hover {
  transform: translateX(-50%) scale(1.15);
}

.mineral-item:hover .mineral-icon {
  transform: rotate(360deg);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.mineral-item[data-mineral="fe"]:hover .mineral-icon {
  background: #a3de02;
  border-color: #a3de02;
}

.mineral-item[data-mineral="fe"]:hover .mineral-symbol {
  color: #004798;
}

.mineral-item[data-mineral="al"]:hover .mineral-icon {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.mineral-item[data-mineral="al"]:hover .mineral-symbol {
  color: #ffffff;
}

.mineral-item[data-mineral="cl"]:hover .mineral-icon {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.mineral-item[data-mineral="cl"]:hover .mineral-symbol {
  color: #ffffff;
}

.mineral-item[data-mineral="mn"]:hover .mineral-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.mineral-item[data-mineral="mn"]:hover .mineral-symbol {
  color: var(--color-primary-dark);
}

.mineral-item[data-mineral="na"]:hover .mineral-icon {
  background: #a3de02;
  border-color: #a3de02;
}

.mineral-item[data-mineral="na"]:hover .mineral-symbol {
  color: #004798;
}

/* ============================================
   TABLET (768px - 1200px)
   ============================================ */

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .water-minerals-section {
    padding: 10px 0;
  }

  .section-video-bg {
    height: 50vh;
  }

  .minerals-header {
    margin-bottom: 50px;
    padding: 0 40px;
  }

  .minerals-subtitle {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .minerals-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .minerals-bottle-section {
    max-width: 750px;
    height: 550px;
  }

  .mineral-icon {
    width: 75px;
    height: 75px;
  }

  .mineral-symbol {
    font-size: 22px;
  }

  .mineral-name {
    font-size: 14px;
  }

  /* Tablet pozisyonları */
  .mineral-item[data-mineral="fe"] {
    top: 5%;
  }

  .mineral-item[data-mineral="al"] {
    top: 22%;
    left: 12%;
  }

  .mineral-item[data-mineral="cl"] {
    top: 22%;
    right: 12%;
  }

  .mineral-item[data-mineral="mn"] {
    bottom: 18%;
    left: 12%;
  }

  .mineral-item[data-mineral="na"] {
    bottom: 18%;
    right: 12%;
  }
}

/* ============================================
   MOBILE (0 - 767px)
   ============================================ */

@media only screen and (max-width: 767px) {
  .water-minerals-section {
    padding: 10px 0;
  }

  .section-video-bg {
    height: 50vh;
  }

  .minerals-header {
    margin-bottom: 40px;
    padding: 0 25px;
  }

  .minerals-subtitle {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .minerals-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .minerals-bottle-section {
    max-width: 100%;
    height: 500px;
    padding: 0 20px;
  }

  .mineral-icon {
    width: 70px;
    height: 70px;
    border-width: 2.5px;
  }

  .mineral-symbol {
    font-size: 22px;
  }

  .mineral-name {
    font-size: 14px;
    font-weight: 600;
  }

  /* Mobil pozisyonları */
  .mineral-item[data-mineral="fe"] {
    top: 5%;
    left: 45%;
  }

  .mineral-item[data-mineral="al"] {
    top: 30%;
    left: 8%;
  }

  .mineral-item[data-mineral="cl"] {
    top: 30%;
    right: 8%;
  }

  .mineral-item[data-mineral="mn"] {
    bottom: 20%;
    left: 5%;
  }

  .mineral-item[data-mineral="na"] {
    bottom: 20%;
    right: 5%;
  }
}

/* ============================================
   SMALL MOBILE (0 - 480px)
   ============================================ */

@media only screen and (max-width: 480px) {
  .minerals-header {
    margin-bottom: 35px;
    padding: 0 20px;
  }

  .minerals-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .minerals-description {
    font-size: 13px;
    line-height: 1.6;
  }

  .section-video-bg {
    height: 60vh;
  }

  .minerals-bottle-section {
    height: 450px;
    padding: 0 15px;
  }

  .mineral-icon {
    width: 60px;
    height: 60px;
    border-width: 2px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }

  .mineral-symbol {
    font-size: 20px;
  }

  .mineral-name {
    font-size: 13px;
    font-weight: 600;
  }

  .mineral-item:hover {
    transform: scale(1.08);
  }

  .mineral-item[data-mineral="fe"]:hover {
    transform: translateX(-50%) scale(1.08);
  }

  /* Küçük mobil pozisyonları */
  .mineral-item[data-mineral="fe"] {
    top: 5%;
    left: 43%;
  }

  .mineral-item[data-mineral="al"] {
    top: 30%;
    left: 8%;
  }

  .mineral-item[data-mineral="cl"] {
    top: 30%;
    right: 8%;
  }

  .mineral-item[data-mineral="mn"] {
    bottom: 20%;
    left: 5%;
  }

  .mineral-item[data-mineral="na"] {
    bottom: 20%;
    right: 5%;
  }
}
/* ============================================
   WATER DROPLET SECTION - Görseldeki Gibi
   ============================================ */

.water-droplet-section {
  position: relative;
  background: var(--sss-white);
  padding: 0;
  overflow: visible;
  z-index: 20;
  padding-bottom: 400px; /* Droplet'ların dışarı taşması için */
}

/* Mavi Container - Yarım Yükseklikte */
.droplet-blue-container {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    #074092 100%
  );
  border-radius: 40px 40px 0 0;
  padding: 50px 0 0;
  margin: 0 auto;
  max-width: 1400px;
  box-shadow: 0 20px 60px rgba(0, 71, 152, 0.2);
  position: relative;
  height: 280px; /* Sadece başlığı içine alan yarım yükseklik */
  overflow: visible; /* Droplet'lar dışarı taşsın */
}
/* Şişe - Mavi Container'ın Dışında Üstte */
.droplet-bottle-wrapper {
  position: absolute;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  max-width: 600px;
}

.droplet-bottle-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Başlık */
.droplet-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.droplet-title {
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 40px;
  line-height: 1.2;
}

.droplet-highlight {
  color: var(--color-primary);
}

.droplet-description {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto;
}

/* Droplet Container - Mavi Container'dan Dışarı */
.droplet-container {
  position: absolute;
  bottom: -300px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Taban hizalaması */
  gap: 80px;
  z-index: 2;
  padding: 0 20px;
}

.droplet-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 280px; /* Sabit genişlik */
}
.water-drop {
  position: relative;
  width: 280px;
  height: 280px;
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05),
    25px 35px 20px rgba(0, 0, 0, 0.05), 25px 30px 30px rgba(0, 0, 0, 0.05),
    inset -20px -20px 25px rgba(255, 255, 255, 0.9);
  animation: dropletBorderAnimation 5s linear infinite;
  transition: border-radius 0.2s linear;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 47% 53% 70% 30% / 30% 43% 57% 70%;
  flex-shrink: 0; /* Droplet boyutu sabit kalsın */
}

.droplet-item:nth-child(2) .water-drop {
  animation-delay: 2s;
}

.droplet-item:nth-child(3) .water-drop {
  animation-delay: 4s;
}

.water-drop::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 52px;
  height: 35px;
  width: 35px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 47% 53% 70% 30% / 30% 43% 57% 70%;
  z-index: 10;
  animation: dropletBorderAnimation 5s linear infinite;
  transition: border-radius 0.2s linear;
}

.water-drop::after {
  content: "";
  position: absolute;
  top: 98px;
  left: 80px;
  height: 18px;
  width: 18px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 47% 53% 70% 30% / 30% 43% 57% 70%;
  z-index: 10;
  animation: dropletBorderAnimation 5s linear infinite;
  transition: border-radius 0.2s linear;
}

.water-drop:hover,
.droplet-container:hover .water-drop::before,
.droplet-container:hover .water-drop::after {
  border-radius: 50%;
}

.droplet-image {
  height: 80%;
  width: 80%;
  border-radius: 50%;
  object-fit: cover;
  opacity: 1;
  /* filter: saturate(0.5); */
  transition: all 0.2s linear;
}

.water-drop:hover .droplet-image {
  border-radius: 50px;
  height: 65%;
  width: 65%;
}

/* Image Info Below Droplets */
.droplet-info {
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 140px; /* Minimum yükseklik - buton hizalaması için */
}

.droplet-info-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-secondary);
  width: 280px; /* Sabit genişlik */
  margin: 0 auto 20px;
  min-height: 30px; /* Metin alanı için minimum yükseklik */
  display: flex;
  align-items: center;
  justify-content: center;
}
.droplet-info-answer {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--color-secondary);

  width: 250px;        /* sabit genişlik kalsın */
  margin: 0 auto 20px;

  display: -webkit-box;
  -webkit-line-clamp: 2;       /* KAÇ SATIR GÖRÜNSÜN? 2 yerine 3 de yapabilirsin */
  -webkit-box-orient: vertical;

  overflow: hidden;            /* taşanı gizle */
  /* white-space: nowrap;  BUNU SİLİYORUZ */
  /* text-overflow: ellipsis; tek satır içindi, çok satırda gerek yok */
}


/* Read More Buttons */
.droplet-btn-1,
.droplet-btn-2,
.droplet-btn-3 {
  display: inline-block;
  width: 140px;
  text-align: center;
  padding: 10px 0;
  color: var(--color-white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(163, 222, 2, 0.3);
  margin-top: auto; /* Buton her zaman en alta */
}

.droplet-btn-1:hover,
.droplet-btn-2:hover,
.droplet-btn-3:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(163, 222, 2, 0.4);
}

.droplet-btn-1 {
  background-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.droplet-btn-1:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.droplet-btn-2 {
  background-color: var(--color-primary-dark);
}

.droplet-btn-2:hover {
  background-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.droplet-btn-3 {
  background-color: var(--color-accent);
}

.droplet-btn-3:hover {
  background-color: var(--color-primary);
  color: var(--color-primary-dark);
}

@keyframes dropletBorderAnimation {
  0% {
    border-radius: 47% 53% 70% 30% / 30% 43% 57% 70%;
  }
  30% {
    border-radius: 61% 39% 52% 48% / 44% 59% 41% 56%;
  }
  70% {
    border-radius: 35% 65% 31% 69% / 57% 59% 41% 43%;
  }
  100% {
    border-radius: 47% 53% 70% 30% / 30% 43% 57% 70%;
  }
}

/* ============================================
   TABLET STYLES (768px - 1200px)
   ============================================ */

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .water-droplet-section {
    margin-top: 50px;
    padding-bottom: 280px;
  }

  .droplet-blue-container {
    border-radius: 30px 30px 0 0;
    padding: 50px 0 0;
    max-width: 100%;
    height: 300px;
  }

  .droplet-bottle-wrapper {
    display: none;
  }

  .droplet-title {
    font-size: 36px;
  }

  .droplet-description {
    font-size: 15px;
  }
  .droplet-header {
    margin-bottom: 40px;
    padding: 0 30px;
  }

  .droplet-container {
    bottom: -280px;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 20px;
    /* justify-content: flex-start; */
    align-items: flex-end;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(255, 255, 255, 0.3);
    position: absolute;
  }
  .droplet-container::-webkit-scrollbar {
    height: 8px;
  }

  .droplet-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
  }

  .droplet-container::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
  }

  .droplet-container::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
  }

  .droplet-item {
    flex-shrink: 0;
    scroll-snap-align: center;
    width: 240px;
  }

  .water-drop {
    width: 240px;
    height: 240px;
    padding: 24px;
  }
  .water-drop::before {
    top: 60px;
    left: 45px;
    height: 30px;
    width: 30px;
  }

  .water-drop::after {
    top: 84px;
    left: 68px;
    height: 16px;
    width: 16px;
  }
  .droplet-info {
    min-height: 130px;
  }

  .droplet-info-text {
    font-size: 13px;
    width: 240px;
    min-height: 75px;
  }
  .droplet-btn-1,
  .droplet-btn-2,
  .droplet-btn-3 {
    padding: 9px 0;
    font-size: 13px;
  }
}

/* ============================================
   MOBILE STYLES (0 - 767px)
   ============================================ */

@media only screen and (max-width: 767px) {
  .water-droplet-section {
    margin-top: 0;
    padding-bottom: 450px;
  }

  .droplet-blue-container {
    border-radius: 20px 20px 0 0;
    padding: 40px 0 0;
    margin: 0;
    max-width: 100%;
    height: 220px;
  }

  .droplet-bottle-wrapper {
    display: none;
  }

  .droplet-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .droplet-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .droplet-header {
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .droplet-container {
    position: absolute;
    bottom: -400px;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    -webkit-overflow-scrolling: touch;
    padding: 0 15px 15px;
    justify-content: flex-start;
    align-items: center; /* Mobilde orta hizalama */
    flex-direction: row;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(255, 255, 255, 0.3);
  }

  .droplet-container::-webkit-scrollbar {
    height: 6px;
  }

  .droplet-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
  }
  .droplet-container::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
  }

  .droplet-container::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
  }

  .droplet-item {
    flex-shrink: 0;
    scroll-snap-align: center;
    min-width: 90%;
    max-width: 90%;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    animation: dropletFadeIn 0.5s ease forwards;
  }

  .droplet-item:nth-child(1) {
    animation-delay: 0.2s;
  }

  .droplet-item:nth-child(2) {
    animation-delay: 0.4s;
  }

  .droplet-item:nth-child(3) {
    animation-delay: 0.6s;
  }

  @keyframes dropletFadeIn {
    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }

  .water-drop {
    width: 220px;
    height: 220px;
    padding: 22px;
  }

  .water-drop::before {
    top: 55px;
    left: 40px;
    height: 28px;
    width: 28px;
  }

  .water-drop::after {
    top: 78px;
    left: 62px;
    height: 14px;
    width: 14px;
  }

  .droplet-info {
    margin-top: 0;
    font-weight: 600;
    min-height: 140px;
  }

  .droplet-info-text {
    font-size: 13px;
    width: 220px;
    min-height: 85px;
    margin-bottom: 18px;
  }

  .droplet-btn-1,
  .droplet-btn-2,
  .droplet-btn-3 {
    padding: 9px 0;
    font-size: 13px;
  }
}

/* ============================================
   SMALL MOBILE (0 - 480px)
   ============================================ */

@media only screen and (max-width: 480px) {
  .water-droplet-section {
    margin-top: 0;
    padding-bottom: 420px;
  }

  .droplet-blue-container {
    border-radius: 15px 15px 0 0;
    padding: 35px 0 0;
    height: 200px;
  }

  .droplet-bottle-wrapper {
    display: none;
  }

  .droplet-title {
    font-size: 24px;
  }

  .droplet-description {
    font-size: 13px;
  }

  .droplet-header {
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .droplet-container {
    bottom: -300px;
    gap: 20px;
    padding: 0 10px 12px;
  }

  .droplet-item {
    min-width: 95%;
    max-width: 95%;
  }

  .water-drop {
    width: 200px;
    height: 200px;
    padding: 20px;
  }

  .water-drop::before {
    top: 50px;
    left: 36px;
    height: 25px;
    width: 25px;
  }

  .water-drop::after {
    top: 70px;
    left: 56px;
    height: 13px;
    width: 13px;
  }

  .droplet-info {
    min-height: 135px;
  }
  .droplet-info-text {
    font-size: 12px;
    width: 200px;
    min-height: 80px;
  }

  .droplet-btn-1,
  .droplet-btn-2,
  .droplet-btn-3 {
    padding: 8px 0;
    font-size: 12px;
  }
}
/* ============================================
   INFO CTA SECTION - Responsive Görsel Versiyonu
   ============================================ */
/* INFO CTA SECTION */
.info-cta {
  position: relative;
  z-index: 5;
  background: var(--color-white);
  text-align: center;
  padding-top: 0; /* Boşluk kaldırıldı çünkü üstteki section'da var */
}

.info-cta__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.info-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.info-cta__desc {
  font-family: "DM Sans", sans-serif;
  color: #064393;
  font-style: italic;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-cta__title {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: #555;
  font-size: 1.2rem;
  margin-bottom: -2rem;
}
.info-cta__title span {
  font-weight: 700;
}

/* ==== Görsel boyutu dinamik === */
.info-cta__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .info-cta__desc {
    font-size: 1rem;
  }
  .info-cta__title {
    font-size: 1.1rem;
  }
}

/* ===== MOBİL (≤576px) ===== */
@media (max-width: 576px) {
  .info-cta__desc {
    font-size: 0.95rem;
  }
  .info-cta__title {
    font-size: 1rem;
    margin-bottom: -1.5rem;
  }

  /* Küçük görsel versiyonu */
  .info-cta__image {
    content: url("../images/icinizrahatolsunmobile.png");
    max-width: 100%;
  }
}
