/* Genel Ayarlar */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #ffffff;
  overflow-y: auto;
  padding-top: 60px;
  height: 100%;
  margin: 0;

  
}
body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #2c3e50;
  color: white;
  padding: 1.5rem;
  text-align: center;
}





/* Form Alanı */
#formAlan.gizli {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  height: 0;
  overflow: hidden;
  padding: 0 !important;
}

/* GÖRÜNÜR HALİ */
#formAlan {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #12192c, #1f2a47);
  color: white;
  text-align: center;
  transition: opacity 0.5s ease;
}

.form-wrapper {
  max-width: 600px;
  margin: auto;
  background: #1b2338;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

#formAlan h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fce96a;
}

#formAlan p {
  margin-bottom: 2rem;
  color: #ccc;
}

#formAlan input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

#formAlan button {
  background: #25d366;
  color: white;
  padding: 1rem;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

#formAlan button:hover {
  background: #1db954;
}

/* Footer */
 .footer {
    background-color: #12192c;
    color: white;
    padding: 2rem 1rem;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }

  .footer-section {
    min-width: 150px;
  }

  .footer-section h3 {
    color: #f30493;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section ul li {
    margin: 0.3rem 0;
  }

  .footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
  }

  .footer-section ul li a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
  }

/* Menü */

.menu {
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.menu-wrapper {
  max-width: 13000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  position: relative;
  white-space: nowrap;
  
}
.form-logo {
  width: 260px;        /* Genişlik */
  height: auto;        /* Oranı koruyarak yükseklik otomatik */
  margin-bottom: 1rem; /* Logonun altına boşluk */
  display: block;
  margin-left: auto;
  margin-right: auto;  /* Ortalamak için */
}

/* Logo */
.logo {
  font-size:20px;
  font-weight: bold;
  text-decoration: none;
  color: #1e2235;
  border-bottom: #00d26a 2px solid;
 

}


/* Menü Linkleri */
.menu-links {
  display: flex;
  list-style: none;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
 justify-content: center;
 flex: 2;
 margin: 0;
  padding: 0;

}

.menu-links li a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  padding: 10px 5px;
  transition: 0.3s;
}

.menu-links li a:hover {
  color: #c70386;
  border-bottom: 2px solid #c70386;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #c70386;
}

/* Mobil Uyum */
@media screen and (max-width: 768px) {
  .menu-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
    margin-top: 10px;
    left: 0;
    transform: none;
    padding-left: 1rem;
    background: white;
  }

  .menu-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 12px;
    z-index: 1001;
  }
}





/* Galeri */




.galeri {
  padding: 1rem;
  background-color: #f4f4f4;
}

.galeri-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;       /* sağ-sol otomatik kenar boşluğu */
  padding: 0 0,50rem; 
  /* Sabit bir yükseklik vermen gerek; örneğin: */
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* img’i tamamen sardır, kırpması için cover kullan */
.galeri-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* tüm div’i doldur, kırpma yap */
  object-position: center;/* ortadan kırp */
  display: block;
}



/* Mobil Uyum */
@media (max-width: 768px) {
  .neden-icerik {
    flex-direction: column;
    text-align: center;
  }

  .neden-text, .neden-icon {
    min-width: 100%;
  }

  .neden-icon img {
    max-width: 180px;
  }

  .galeri-wrapper {
    height: 200px;
  }

  .galeri-icerik img {
    max-height: 200px;
  }

  

 
  #formAlan .form-wrapper {
    padding: 2rem 1rem;
  }

 

.fiyat {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ozellikler {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.ozellikler li {
  margin: 5px 0;
}

.ozellikler li::before {
  content: '✔️ ';
  color: #00d26a;
}

.ozellikler li.negatif::before {
  content: '❌ ';
  color: #ff4d4d;
}

.btn-basvuru {
  background: #00d26a;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}
}
.neden-bizi h3 {
  text-align: center;
  font-size: 2.4rem;
  color: #1e2d60; /* koyu mavi ton */
  font-weight: 700;
  margin-bottom: 2rem;
}
.uygun-paketler {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.uygun-paketler h3 {
  font-size: 2.4rem;
  color: #1e2d60;
  font-weight: bold;
}


.ozellikler {
  font-family: 'Segoe UI', sans-serif;
}

.ozellik-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.ozellik-item:hover {
  transform: translateY(-4px);
}

.ozellik-item img {

  width: 40%;
  max-width: 220px;
  border-radius: 10px;
  
}

.ozellik-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1e3a8a; /* mavi ton */
}

.ozellik-item p {
  font-size: 1rem;
  color: #555;
}

.ozellik-item.reverse {
  flex-direction: row-reverse;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .ozellik-item, .ozellik-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .ozellik-item img {
    width: 100%;
  }
}
.kvkk-uyari {
  font-size: 0.9rem;     /* Yazı boyutu küçültüldü */
  line-height: 1.5;      /* Satır arası boşluk dengeli */
  color: #555;           /* Gri tonlu yazı rengi */
  text-align: justify;   /* Yazıyı iki yana yasla */
  margin-top: 2rem;
}
.internet-switch {
  text-align: center;
  margin: 2rem 0;
}

.internet-switch button {
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #e0e0e0;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.internet-switch button.active {
  background-color: #007bff;
  color: white;
}

/* Paketler Alanı */
.plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
  background-color: #ffffff;
}

.plan {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 320px;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
}

.plan h2 {
  margin-top: 0;
  color: #e74c3c;
  font-size: 1.6rem;
}

.plan .tagline {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.plan .price {
  font-size: 2rem;
  color: #1e2d60;
  font-weight: bold;
}

.plan .old-price {
  display: none !important;
  text-decoration: line-through;
  color: #888;
  font-size: 1rem;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.plan ul li {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.95rem;
  color: #333;
}

.plan ul li::before {
  content: \"✔\";
  position: absolute;
  left: 0;
  color: green;
  font-size: 1rem;
}

.plan .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background-color: #1e2d60;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.plan .btn:hover {
  background-color: #34498e;
}

/* Kampanya şeridi */
.ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: red;
  color: white;
  padding: 4px 10px;
  font-size: 0.75rem;
  transform: rotate(45deg);
  font-weight: bold;
}


/* İlk 3 kart için */

/* Sonraki kartlar için scroll alanı */







