
/*_______________________________________________________________________________MASAÜSTÜ________________________________________________________________________________________*/





/*-------------------------------------------------------------------------------------------------------------------------------------*/
/* ==============================================
   ----------------Masaüstü sayfa Css
================================================== */
/* 1) Varsayılan: her yerde gizli (mobil + tablet) */
.aydn-hero-wave,
.aydn-services,
.aydn-service-texts,
.aydn-regions{
  display: none;
}

/* 2) Sadece masaüstünde aç */
@media (min-width: 1025px){

  /* Temel container */
  .aydn-container{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px; /* kenarlar daha profesyonel dursun */
  }

  /* Bölümler masaüstünde görünsün */
  .aydn-hero-wave,
  .aydn-services,
  .aydn-service-texts,
  .aydn-regions{
    display: block;
  }

  /* =========================
     HERO
  ========================= */
  .aydn-hero-wave{
    position: relative;
    overflow: hidden;
    padding: 50px 15px;
    color: #f1f5f9;

    max-width: 1400px;
    margin: 140px auto 60px;

    background: #2f3e46;
    border-radius: 20px; /* daha premium */
  }

  .aydn-hero-wave::before,
  .aydn-hero-wave::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.6;
  }

  .aydn-hero-wave::before{
    width: 400px;
    height: 400px;
    background: #20c997;
    top: -100px;
    left: -150px;
  }

  .aydn-hero-wave::after{
    width: 500px;
    height: 500px;
    background: #0b3c5d;
    bottom: -150px;
    right: -200px;
  }

  .aydn-hero-wave .aydn-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  .aydn-hero-content{
    flex: 1 1 420px;
  }

  .aydn-hero-content h1{
    font-size: 36px;
    margin-top: 0;          /* -30’u kaldırdım: daha stabil */
    margin-bottom: 18px;
    letter-spacing: -0.2px; /* hafif premium */
  }

  .aydn-hero-content p{
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #dbe4ea;
    max-width: 62ch; /* okunabilirlik */
  }

  .aydn-hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .aydn-btn{
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    will-change: transform;
  }

  .aydn-phone-btn{
    background: #ffffff;
    color: #16a085;
  }

  .aydn-wp-btn{
    background: #20c997;
    color: #ffffff;
  }

  .aydn-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    opacity: .98;
  }

  .aydn-hero-image{
    flex: 1 1 420px;
    text-align: center;
  }

  .aydn-hero-img{
    width: 100%;
    max-width: 600px;  /* sabit yerine limit: daha profesyonel */
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
  }

  /* =========================
     SERVICES (Görsel Kartlar)
  ========================= */
  .aydn-services h2{
    text-align: center;
    margin: 60px 0 40px;
    color: #0b3c5d;
    letter-spacing: -0.2px;
  }

  .aydn-service-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
  }

  .aydn-service-card{
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform .22s ease, box-shadow .22s ease;
  }

  .aydn-service-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
  }

  .aydn-service-image{
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
  }

  .aydn-service-card h3{
    margin: 0;
    margin-top: 6px;
    font-size: 18px;
    color: #0b3c5d;
  }

  /* =========================
     SERVICE TEXTS (Metin Kartlar)
     ✅ burada grid BOZULMAYACAK
  ========================= */
  .aydn-service-texts{
    max-width: 1200px;
    display: grid; /* kritik */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px; /* 50 çok büyüktü: daha modern */
    margin-bottom: 60px;
  }

  .aydn-service-text{
    background: linear-gradient(135deg, #2f3e46 0%, #4f6773 100%);
    padding: 26px;
    border-radius: 22px;
    color: #f1f5f9;
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  }

  .aydn-service-text h3{
    margin: 0 0 12px;
    color: #f1f5f9;
    font-size: 18px;
    letter-spacing: -0.15px;
  }

  .aydn-service-text p{
    margin: 0;
    color: rgba(241,245,249,0.88);
    line-height: 1.85;
  }

  /* =========================
     REGIONS
  ========================= */
  .aydn-regions{
    background: #f5f5f5;
    padding: 60px 0;
  }

  .aydn-regions h2{
    text-align: center;
    margin-bottom: 25px;
    color: #0b3c5d;
  }

  .aydn-regions-list{
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
  }

  .aydn-regions-list li{
    background: #2f3e46;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
  }
}

/* ==============================================
   BİTİŞ
================================================== */
/*-------------------------------------------------------------------------------------------------------------------------------------*/

















/*_______________________________________________________________________________MOBİL________________________________________________________________________________________*/
















/*-------------------------------------------------------------------------------------------------------------------------------------*/
/* ======================================================
             BEYAZ EŞYA SERVİSİ.html  MOBİL GÖRÜNÜM 
   ====================================================== */

/* Container */
.cvt-m{
  max-width:520px;
  margin:10px auto 0;
  padding:10px 6px 18px;
  background:none;
}

/* Küçük yardımcılar */
.cvt-i{ font-size:18px; line-height:1; }
.cvt-btn-t{ font-weight:700; }
.cvt-muted{ color:rgba(255,255,255,.75); }

/* =========================
   HERO (ÜST KART)
   ========================= */
.cvt-hero{
  padding:16px;
  border-radius:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    #0b1020;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
}

/* başlık alanı */
.cvt-brand{
  display:flex;
  gap:12px;
  align-items:flex-start;      /* daha düzgün hizalama */
}

.cvt-logo{
  width:50px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:14px;
  color:#fff;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  flex:0 0 auto;
}

/* taşma/hizalama için (uzun başlıkta) */
.cvt-brand > div{ min-width:0; }

.cvt-h1{
  margin:0;
  font-size:18px;
  line-height:1.25;
}

.cvt-sub{
  margin:6px 0 0;              /* tutarlı margin */
  font-size:13px;
  line-height:1.55;            /* daha profesyonel okuma */
  color:rgba(255,255,255,.75);
}

/* =========================
   BUTONLAR
   ========================= */
.cvt-cta{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.cvt-btn{
  display:grid;
  grid-template-columns:20px 1fr; /* ikon kolonu sabit, hizalama net */
  gap:10px;
  align-items:center;
  padding:10px 14px;
  border-radius:14px;
  text-decoration:none;
  color:#fff;
  min-height:44px;              /* mobil dokunma standardı */
}

.cvt-primary{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.cvt-wa{
  background:linear-gradient(135deg,#22c55e,#15803d);
}

/* =========================
   TRUST PILL
   ========================= */
.cvt-trust{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:17px;
}

.cvt-pill{
  display:flex;
  align-items:center;
  padding:6px 10px;
  font-size:12px;
  line-height:1.2;
  color:rgba(255,255,255,.8);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
}

/* =========================
   GENEL KART
   ========================= */
.cvt-card{
  margin-top:4px;
  padding:16px 14px;
  border-radius:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    #0b1020;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
}

/* başlık */
.cvt-h2{
  margin:0 0 10px;
  font-size:16px;
  font-weight:800;
  letter-spacing:.2px;
}

/* açıklama metni */
.cvt-p{
  margin:0 0 12px;
  font-size:13px;
  line-height:1.6;
  color:rgba(255,255,255,.75);
}

/* =========================
   SERVİS GRID
   ========================= */
.cvt-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:12px;
}

.cvt-svc{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.14);
}

.cvt-img{
  width:100%;
  height:160px;                 /* px istedin: cuk ölçü */
  object-fit:cover;
  display:block;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
}

.cvt-h3{
  margin:10px 0 6px;
  font-size:14px;
  font-weight:800;
  color:#fff;
}

.cvt-ul{
  margin:0;
  padding-left:16px;
  font-size:13px;
  line-height:1.6;
  color:rgba(255,255,255,.75);
}
.cvt-ul li{ margin:4px 0; }

/* =========================
   MARKALAR (CHIPS)
   ========================= */
.cvt-card .cvt-p.cvt-muted{
  margin-bottom:14px;
  font-size:13px;
  line-height:1.6;
  color:rgba(255,255,255,.75);
}

.cvt-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.cvt-chip{
  padding:8px 14px;
  font-size:13px;
  font-weight:600;
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  letter-spacing:.2px;
  transition:all .2s ease;
}

.cvt-chip:hover{
  background:rgba(37,99,235,.18);
  border-color:rgba(37,99,235,.45);
}

/* =========================
   STEPS
   ========================= */
.cvt-steps{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.cvt-step{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:12px;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
}

.cvt-n{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:16px;
  color:#fff;
  background:rgba(37,99,235,.22);
  border:1px solid rgba(37,99,235,.35);
}

.cvt-step .cvt-h3{ margin:0 0 6px; }
.cvt-step .cvt-p{ margin:0; }

/* =========================
   CALLOUT
   ========================= */
.cvt-callout{
  margin-top:14px;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
}

.cvt-callout .cvt-p{
  margin:0 0 12px;
  color:rgba(255,255,255,.78);
}

.cvt-mini{
  display:grid;
  gap:10px;
  margin-top:10px;
}

/* =========================
   FAQ
   ========================= */
.cvt-faq{
  margin-top:10px;
  padding:14px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
}

.cvt-faq summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  font-size:14px;
  font-weight:700;
  color:#fff;
  list-style:none;
}

.cvt-faq summary::after{
  content:"›";
  font-size:18px;
  color:rgba(255,255,255,.65);
  transform:rotate(90deg);
  transition:transform .25s ease;
}

.cvt-faq[open] summary::after{
  transform:rotate(-90deg);
}

.cvt-faq .cvt-p{
  margin:10px 0 0;
  font-size:13px;
  line-height:1.6;
  color:rgba(255,255,255,.75);
}

.cvt-faq:hover{
  background:rgba(255,255,255,.06);
}

@media (min-width: 768px){
  .cvt-m{
    display:none !important;
  }
}
/* =======================================================
          BEYAZ EŞYA SERVİSİ  MOBİL GÖRÜNÜM BİTİŞ 
   =================================================== */
/*-------------------------------------------------------------------------------------------------------------------------------------*/






















