/* 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;
  
  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;
  overflow: hidden;

}
.form-logo {
  width: 400px;
  
  
  overflow: hidden;
}
/* Masaüstü için zaten tanımlı olan .apply-card .logo kuralları burada kalabilir */

@media (max-width: 768px) {
  .form-logo {
    max-width: 70%;       /* önceki %90’dan daha küçük */
    margin: -30px auto 1rem;  /* negatif margin’i de biraz küçülttük */
  }
}


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

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

#formAlan p {
  margin-bottom: 0.5rem;
  color: #ccc;
  position: relative;
  
}

/* 1) Box-sizing ile padding’i width’e dahil et */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2) Form container’ını flex + gap ile hizala */
#formAlan {
  display: flex;
  flex-direction: column;
  gap: 1rem;           /* input’lar arası 16px boşluk */
  width: 100%;
  padding: 0;          /* gerekiyorsa parent’tan al */
}


#formAlan input {
  display: block;
  width: 100%;
  padding: 1rem;       /* iç boşluk */
  margin: 0,25rem;           /* gap ile boşluk yarattık */
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  outline: none;
}

/* 4) Focus state ekleyerek UX’i iyileştir */
#formAlan input:focus {
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.4);
}


#formAlan button {
  background: #25d366;
  color: white;
  padding: 0.76rem 1.5rem;
  gap: 2rem;
  margin-top: 1rem;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border: 1px solid #1db954;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

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

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

  .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;
    }
  }
:root {
  --nav-height: 4rem;
  --bg: #ffffff;
  --primary: #6C63FF;
  --text: #2c3e50;
}

/* Sabit, her zaman en üstte */
.menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding-top: 0%;
  background: var(--bg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 999;
}

/* İç kapsayıcı */
.menu-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

/* Logo */
.logo {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color:rgb(118, 36, 107);
  font-weight: bold;
  text-decoration: none;
}

/* Menü linkleri: masaüstü */
.menu-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-right: 1rem;
}

.menu-links a {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem;
  transition: color 0.3s;
}
.menu-links a:hover {
  color: var(--primary);
}

/* Mobil butonu gizli */
.menu-toggle {
  display: none;
   font-size: 1.5rem;       /* simge boyunu büyütür */
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  /* Masaüstü linklerini gizle, mobil tuşunu göster */
  .menu-links {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 75%;
    height: calc(100vh - var(--nav-height));
    flex-direction: column;
    background: var(--bg);
    padding: 1.5rem;
    gap: 1rem;
    transition: left 0.3s ease;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
  }
  .menu-links.open {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }
}





/*galeri alanı */

.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;
    width: 100%;
    
  }

 

.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;
}


/* CSS */
.internet-switch {
  margin-bottom: 1rem;
}
.internet-switch button {
  padding: .6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: .5rem;
  background: #eee;
}
.internet-switch button.active {
  background: #007bff;
  color: #fff;
}
.internet-content {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.hidden {
  display: none;
}


  /* hem wirelessContent hem wiredContent için */
  .internet-content {
    text-align: center;      /* içerikler ortalanır */
  }

  /* kablosuzdaki <ul>’ü inline-block yapıp ortala */
  #wirelessContent ul {
    display: inline-block;
    margin: 0 auto;
    padding-left: 1.2rem;    /* madde işareti için iç boşluk */
    text-align: left;        /* liste içeriği solda kalsın */
    list-style-position: inside;
  }
    #wiredContent ul {
    display: inline-block;
    margin: 0 auto;
    padding-left: 1.2rem;    /* madde işareti için iç boşluk */
    text-align: left;        /* liste içeriği solda kalsın */
    list-style-position: inside;
  }

  /* kablolu tek <li>’ye de inline-block ve satır ortası */
  #wiredContent > li {
    display: inline-block;
    margin: 0 auto;
    list-style: none;        /* dilersen madde işaretini kaldır */
  }







