
/*_____________________________________________________________________________MASAÜSTÜ_________________________________________________________________________*/







/*-------------------------------------------------------------------------------------------------------------------------------*/
/* =========    Başlık h1 Masaüstü      ========= */
.page-eyebrow{
  max-width: 1300px;
  margin: 20px auto 22px;
  padding: 0 20px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #374151; /* WCAG AA PASS */
}

/* Tablet + Mobilde tamamen gizle */
@media (max-width: 1024px){
  .page-eyebrow{
    display: none;
  }
}
/* =========    Başlık h1 Masaüstü  Bitiş     ========= */
/*-------------------------------------------------------------------------------------------------------------------------------*/












/*-------------------------------------------------------------------------------------------------------------------------------*/
/* ==================================================
------------İletişim Masaüstü ------------
================================================== */


/* Varsayılan: gizli */
.container-masaustu{
  display: none;
}

/* SADECE MASAÜSTÜ */
@media (min-width: 1200px){

  .container-masaustu{
    display: flex;
    width: 1200px;
    margin: 40px auto;
    padding: 40px 0;
    gap: 30px;
  }

  /* SOL: İLETİŞİM BİLGİLERİ */
  .contact-info{
    flex: 1 1 450px;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.10);
    border-left: 5px solid #0052cc;
  }

  .contact-info h2{
    margin-top: 0;
    margin-bottom: 25px;
    color: #0052cc;
    font-size: 1.8rem;
  }

  .info-item{
    margin-top: 25px;
  }

  .info-item strong{
    display: block;
    font-weight: 700;
    color: #003d99;
    margin-bottom: 6px;
  }

  .info-item p{
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
  }

  .info-item a{
    color: #0052cc;
    text-decoration: none;
  }

  .info-item a:hover{
    text-decoration: underline;
  }

  /* SAĞ: FORM */
  form{
    flex: 1 1 650px;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
  }

  form h2{
    margin: 0 0 20px 0;
    font-size: 2rem;
    color: #0052cc;
    text-align: center;
  }

  form input[type="text"],
  form input[type="tel"],
  form select,
  form textarea{
    font-size: 1rem;
    padding: 12px 14px;
    margin-bottom: 20px;
    border: 1.8px solid #ccc;
    border-radius: 7px;
    transition: border-color 0.3s ease;
    resize: vertical;
  }

  form input:focus,
  form select:focus,
  form textarea:focus{
    border-color: #0052cc;
    background-color: #e6f0ff;
    outline: none;
  }

  form textarea{
    min-height: 90px;
  }

  form button{
    background-color: #0052cc;
    color: #ffffff;
    font-weight: 700;
    border: none;
    padding: 14px;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  form button:hover{
    background-color: #003d99;
  }
}

/* Mobil + tablet kesin gizle */
@media (max-width: 1199px){
  .container-masaustu{
    display: none !important;
  }
}
/* ==================================================
------------İletişim Masaüstü Bitiş ------------
================================================== */
/*-------------------------------------------------------------------------------------------------------------------------------*/













/*-------------------------------------------------------------------------------------------------------------------------------*/
/* =====================================
   İletişim MASAÜSTÜ HARİTA
================================== */
.map-section{
  width: 100%;
  padding: 0 0 80px;
  background: #f2f2f2;
}

.map-wrap{
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
}

/* ÜST BAŞLIK + BUTONLAR */
.map-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 10px 0 16px;
}

.map-title h2{
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.map-title p{
  margin: 0;
  font-size: 15px;
  color: #475569;
}

/* AKSİYON BUTONLARI */
.map-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.map-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
  white-space: nowrap;
}

.map-btn:hover{
  transform: translateY(-1px);
  opacity: .95;
}

/* Buton stilleri */
.map-btn.outline{
  border: 1px solid #cbd5e1;
  color: #0f172a;
  background: #ffffff;
}

.map-btn.solid{
  border: 1px solid #0052cc;
  background: #0052cc;
  color: #ffffff;
}

/* HARİTA KARTI */
.map-card{
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.map-card iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* MOBİL AYARLAR */
@media (max-width: 768px){

  .map-head{
    align-items: flex-start;
    flex-direction: column;
  }

  .map-title h2{
    font-size: 22px;
  }

  .map-card{
    height: 300px;
    border-radius: 14px;
  }
}
/* =====================================
   İletişim MASAÜSTÜ HARİTA BİTİŞ
================================== */
/*-------------------------------------------------------------------------------------------------------------------------------*/













/*_____________________________________________________________________________MOBİL_________________________________________________________________________*/












/*-------------------------------------------------------------------------------------------------------------------------------*/
/* ====================================
   SADECE MOBİL İLETİŞİM
==================================== */
/* Varsayılan: gizle */
.mbl-servis{
  display: none;
}

/* SADECE MOBİL */
@media (max-width: 768px){

  .mbl-servis{
    display: block;
    padding: 55px 0;
    background: #f2f2f2;
  }

  .mbl-servis,
  .mbl-servis *{
    box-sizing: border-box;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  }

  .mbl-servis__wrap{
    max-width: 520px;
    margin: 0 auto;
    padding: 0 16px;
  }

  /* BAŞLIK */
  .mbl-servis__title{
    margin: 0;
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
  }

  .mbl-servis__desc{
    margin: 6px 0 14px;
    color: #64748b;
    font-size: .95rem;
    line-height: 1.4;
  }

  /* CTA BUTONLAR */
  .mbl-servis__cta{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .mbl-servis__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(2,6,23,.12);
  }

  .mbl-servis__btn--wa{
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border: none;
  }

  /* KART */
  .mbl-servis__card{
    background: #ffffff;
    border-radius: 18px;
    padding: 14px;
    border: 1px solid rgba(2,6,23,.10);
  }

  /* ADRES / E-POSTA */
  .mbl-servis__meta{
    margin-bottom: 14px;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px dashed rgba(2,6,23,.12);
    border-radius: 14px;
    font-size: .85rem;
    color: #475569;
  }

  .mbl-servis__meta > div{
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mbl-servis__meta > div + div{
    margin-top: 6px;
  }

  .mbl-servis__meta strong{
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: #64748b;
    text-transform: uppercase;
  }

  .mbl-servis__meta span,
  .mbl-servis__meta a{
    font-size: .85rem;
    color: #334155;
    text-decoration: none;
    line-height: 1.35;
  }

  /* FORM */
  .mbl-servis__form input,
  .mbl-servis__form select,
  .mbl-servis__form textarea{
    width: 100%;
    display: block;
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 14px;
    border: 1px solid rgba(2,6,23,.18);
    font-size: 16px; /* iOS zoom fix */
    background: #ffffff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
  }

  .mbl-servis__form textarea{
    min-height: 110px;
    resize: vertical;
  }

  .mbl-servis__form button{
    width: 100%;
    padding: 15px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #0052cc, #003d99);
    color: #ffffff;
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
  }
}
/* ================================================================================================
   ----------------SADECE MOBİL İLETİŞİM BİTİŞ     
================================================================================================ */
/*-------------------------------------------------------------------------------------------------------------------------------*/








