/* ====== ZEROSOFT: Topbar + Navbar (tam CSS) ====== */
:root{
  --brand-dark:#0a3c5f;
  --brand-light:#0DB0F3;
  --topbar-h:48px;         /* desktop topbar */
  --navbar-h:64px;         /* desktop navbar */
}
@media (max-width: 991.98px){
  :root{
    --topbar-h:36px;       /* mobile topbar */
    --navbar-h:56px;       /* mobile navbar */
  }
}

body{
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Marka (text) logo ---------- */
.gradient-logo {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--brand-light) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text; /* Chrome, Safari */
  background-clip: text;         /* Standart özellik → uyarı kalkar */
  -webkit-text-fill-color: transparent;
  color: transparent;            /* Standart tarayıcılar için */
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform .3s ease;
}

.gradient-logo:hover{ transform:scale(1.05) }
@media (max-width: 575.98px){
  .gradient-logo{ font-size:22px }
}

/* ---------- TOPBAR ---------- */
.topbar-gradient{
  position:fixed; top:0; left:0; right:0;
  height:var(--topbar-h);
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(90deg, var(--brand-dark) 0%, var(--brand-light) 100%);
  color:#fff; z-index:1050;
  padding:0 .75rem;
  transition: transform .25s ease; /* hide-on-scroll */
}
.topbar-gradient .container{
  display:flex; align-items:center; justify-content:space-between;
  width:100%;
  gap:.5rem;
}

/* Sol taraftaki bağlantılar */
.topbar-gradient a{
  color:#fff; text-decoration:none; font-weight:600;
  display:flex; align-items:center; gap:6px;
  transition: opacity .2s ease;
  white-space:nowrap;
}
.topbar-gradient a i{ font-size:1rem; line-height:1; }
.topbar-gradient a:hover{ opacity:.85; }

/* Dikey ayraç */
.topbar-separator{
  width:1px; height:18px; background:rgba(255,255,255,.35);
  margin:0 .75rem;
}

/* Sağdaki sosyal ikonlar (Instagram/LinkedIn vs.) */
.social-pill{
  display:inline-flex; align-items:center; justify-content:center;
  width:32px; height:32px; border-radius:999px;
  background:rgba(255,255,255,.15); color:#fff;
  transition: background .2s, transform .2s, color .2s;
  font-size:1rem;
}
.social-pill:hover{
  background:#fff; color:var(--brand-dark); transform:translateY(-1px);
}

/* Mobilde daha kompakt görünüm */
@media (max-width: 576px){
  .topbar-gradient{ padding:0 .5rem }
  .topbar-gradient a{ font-size:.85rem }
  .social-pill{ width:28px; height:28px; font-size:.9rem }
  .topbar-separator{ margin:0 .5rem; height:16px }
}

/* ---------- NAVBAR (topbar altında) ---------- */
.navbar{
  position:fixed !important;
  top:var(--topbar-h) !important; left:0; right:0;
  height:var(--navbar-h); z-index:1040;
  background:transparent !important;   /* Hero üstünde şeffaf */
  box-shadow:none !important;
  padding-block:.75rem;
  transition: top .25s ease, background .25s ease, transform .25s ease;
}
.navbar .nav-link{ color:#fff; font-weight:600; }
.navbar .nav-link:hover{ color:var(--brand-light); }

/* İç sayfalarda veya scroll sonrası opak arka plan */
.navbar-solid-bg .navbar,
.navbar.navbar-solid{
  background:rgba(10,60,95,.9) !important;
  -webkit-backdrop-filter:saturate(140%) blur(6px);
          backdrop-filter:saturate(140%) blur(6px);
  box-shadow:0 4px 14px rgba(0,0,0,.08);
}

/* ---------- İçerik offset (sabit başlıklara çarpmasın) ---------- */
.page-offset{
  padding-top:calc(var(--topbar-h) + var(--navbar-h));
}

/* ---------- Hide‑on‑scroll sınıfları (JS ile toggle) ---------- */
.topbar-hidden{ transform:translateY(-100%) } /* topbar yukarı çıksın */
.navbar-at-top{ top:0 !important }            /* topbar gizliyken navbar tepeye gelsin */

/* ---------- Toggler ikon rengi (Bootstrap) ---------- */
.navbar-dark .navbar-toggler{
  border-color:rgba(255,255,255,.35);
}
.navbar-dark .navbar-toggler-icon{
  filter:invert(1) brightness(2); /* beyaz hamburger */
}

/* ---- Küçük ekranlar: menü kapandığında linkler okunaklı dursun ---- */
@media (max-width: 991.98px){
  .navbar .collapse{
    background:rgba(10,60,95,.92);
    -webkit-backdrop-filter:saturate(140%) blur(6px);
            backdrop-filter:saturate(140%) blur(6px);
    padding: .75rem 1rem;
    border-radius:.5rem;
    margin-top:.5rem;
  }
  .navbar .nav-link{ padding:.35rem 0; color:#fff }
  .navbar .nav-link + .nav-link{ border-top:1px solid rgba(255,255,255,.08) }
}


/* HERO */
.hero{ position:relative; min-height:100vh; color:#fff; display:grid; place-items:center;
  text-align:center; overflow:hidden; isolation:isolate; }
.hero-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2 }
.hero-overlay{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35)); z-index:-1 }
.hero-content h1{ font-weight:800; letter-spacing:.2px; margin:0 0 12px }
.hero-content p{ color:#eaeaf2; margin:0 0 22px }

/* CTA button (gradient) */
.btn-demo{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--gradient);border:0;border-radius:999px;
  color:#fff;text-decoration:none;font-weight:600;
  padding:10px 22px;box-shadow:0 10px 24px rgba(23,0,84,.28);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-demo:hover{transform:translateY(-2px);filter:brightness(1.06);box-shadow:0 16px 30px rgba(23,0,84,.34)}
.btn-demo:active{transform:translateY(0) scale(.98)}

/* Entrance */
@keyframes fadeUp{
  from{opacity:0;translate:0 24px}
  to{opacity:1;translate:0 0}
}

/* ÇALIŞMA SÜRECİ */


/* Hakkımızda Bölümü Arka Plan */
.about-section-custom {
  background: linear-gradient(to right, #0a3c5f 50%, #d7edfd 50%);
  padding: 60px 0;
}

/* Video Kutusu */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9; /* Orantılı görünüm */
  border-radius: 0; /* Köşeleri yuvarlatma */
  overflow: hidden;
  margin-left: 30px; /* Sağ tarafa kaydırma */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Video Ayarları */
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play Butonu */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  padding: 20px;
  color: #0a3c5f;
  font-size: 2.5rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.play-btn:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Hakkımızda Metni */
.about-text p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobil Uyarlama */
@media (max-width: 768px) {
  .about-section-custom {
    background: #f6fafd;
    padding: 30px 0;
  }
  .video-wrapper {
    margin-left: 0;
  }
}

/* ===== WHY CHOOSE ===== */
:root{
  --primary:#0a3c5f;
  --secondary:#0DB0F3;
  --ink:#333;
  --muted:#4b5563;
  --line:#e6ecf5;
  --panel:#ffffff;
  --bg:#f6f8fb;
}

/* Section */
.why-choose-us{ background:var(--bg); }

/* Badge & Title */
.wc-badge{
  display:inline-block;
  font-weight:700;
  letter-spacing:.3px;
  text-transform:uppercase;
  color:var(--secondary);
}
.wc-title{
  font-weight:800;
  color:#1d2530;
  line-height:1.2;
  margin:6px 0 18px;
  position:relative;
  padding-bottom:.5rem;
}
.wc-title::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:78px; height:3px; border-radius:2px;
  background:linear-gradient(90deg,var(--secondary),var(--primary));
}

/* List */
.reason-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* Item */
.reason{
  display:grid;
  grid-template-columns:72px 1fr;
  align-items:flex-start;
  gap:16px;
  padding:18px;
  background:var(--panel);
  border:1px solid var(--line);
  border-left:4px solid var(--primary);
  border-radius:10px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change:transform, box-shadow;
}
.reason:hover{
  transform:translateY(-4px);
  border-left-color:var(--secondary);
  box-shadow:0 14px 30px rgba(10,60,95,.12);
}

/* Icon (outer) */
.icon-ring{
  width:72px; height:72px; border-radius:14px;
  display:grid; place-items:center;
  background:
    radial-gradient(120% 120% at 12% 10%, rgba(13,176,243,.12), transparent 62%),
    #fff;
  border:1px solid #dfe6f2;
  box-shadow:
    0 2px 6px rgba(10,60,95,.06),
    inset 0 0 0 6px rgba(13,176,243,.06);
  transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.reason:hover .icon-ring{
  border-color:#cfe0f5;
  box-shadow:
    0 8px 20px rgba(10,60,95,.10),
    inset 0 0 0 6px rgba(13,176,243,.10);
}

/* Icon (inner) */
.icon-core{
  width:48px; height:48px; border-radius:12px;
  display:grid; place-items:center;
  background:linear-gradient(180deg,#f9fbfe 0%, #eef3fb 100%);
  border:1px solid #e3eaf5;
  color:var(--primary);
  font-size:22px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.6);
}
.icon-core i{ color:var(--primary); transition:color .25s ease; }
.reason:hover .icon-core i{ color:var(--secondary); }

/* Copy */
.reason-title{
  font-weight:700;
  color:#1d2530;
  margin:2px 0 6px;
}
.reason-text{
  color:var(--muted);
  line-height:1.7;
  font-size:1.02rem;
  margin:0;
}

/* Image */
.wc-image-wrap{
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 28px rgba(10,60,95,.12);
}
.wc-image{
  width:100%; height:100%;
  display:block; object-fit:cover;
}

/* ===== Scroll Reveal ===== */
.reason{
  opacity:0;
  transform:translateY(20px);
  transition:transform .6s cubic-bezier(.2,.7,.2,1), opacity .6s ease;
}
.reason.reveal-left  { transform:translateX(-28px); opacity:0; }
.reason.reveal-right { transform:translateX( 28px); opacity:0; }
.reason.reveal-up    { transform:translateY( 28px); opacity:0; }
.reason.in-view{
  opacity:1;
  transform:none;
  transition-delay:var(--delay, 0ms);
}

/* Motion preference */
@media (prefers-reduced-motion: reduce){
  .reason{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* Responsive */
@media (max-width:991.98px){
  .reason{ grid-template-columns:64px 1fr; }
  .icon-ring{ width:64px; height:64px; }
  .icon-core{ width:44px; height:44px; font-size:20px; }
}
@media (max-width:575.98px){
  .wc-title{ font-size:1.8rem; }
  .reason-title{ font-size:1.05rem; }
  .reason-text{ font-size:1rem; }
}

/* HİZMETLERİMİZ */
.services-section {
  background: #0a3c5f !important;
}

.service-card {
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card .icon-wrapper {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 15px;
  display: inline-flex;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a3c5f;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: #555;
  margin-bottom: 1.5rem;
}

.service-card .read-more {
  font-weight: 600;
  color: #0a3c5f;
  text-decoration: none;
}

.service-card .read-more:hover {
  text-decoration: underline;
}
.service-card ul {
  list-style: none; /* varsayılan noktaları kaldır */
  padding: 0;
  margin: 0;
}

.service-card ul li {
  background: #f8f9fa; /* kutu rengi (beyaz arkaplanda hafif gri) */
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.service-card ul li i {
  color: #0a3c5f; /* onay işareti rengi */
  font-size: 1rem;
}

.arrow-link i {
  font-size: 1.6rem;  /* büyüklük */
  font-weight: bold;  /* kalın */
  transition: transform 0.2s ease;
}

.arrow-link:hover i {
  transform: translateX(3px); /* hover’da hafif sağa kayar */
}

/* CTA & Footer */
.cta-box{
  background:#0a3c5f !important;
  border-radius: 24px;
  color:#fff;
}

.footer-darkblue{
  background: #0a3c5f !important;
  color:#fff;
}


/* Responsive tweaks */
@media (max-width:768px){
  .hero-content{margin-top:64px}
  .info-box{min-height:auto}
  .info-box .icon-wrapper{width:66px;height:66px}
  .info-box .icon-wrapper i{font-size:1.75rem}
}

/* Reduce motion */
@media (prefers-reduced-motion:reduce){
  .hero-content{animation:none}
  .info-box,.btn-demo{transition:none}
}

.brand-text {
  font-weight: 700;
  background: linear-gradient(90deg, #0DB0F3 0%, #0078B5 100%);
  -webkit-background-clip: text; /* Chrome/Safari için */
  background-clip: text;         /* Standart tarayıcılar için */
  -webkit-text-fill-color: transparent;
  color: transparent;            /* Standart tarayıcılar için */
}


.btn-brand {
  background: #0DB0F3;
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: .6rem 1.1rem;
  box-shadow: 0 8px 24px rgba(13, 176, 243, .25);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.btn-brand:hover {
  transform: translateY(-2px);
  filter: brightness(.97);
  box-shadow: 0 10px 28px rgba(13, 176, 243, .32);
}

/*MARKA*/

.brand-slider {
  background: #fff;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.brand-item {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 20px;
  text-align: center;
}

.brand-item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-item img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/*BLOG*/
:root{
  --brand-light:#0DB0F3;
}

/* Kart davranışı */
.blog-card{
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(10,60,95,.12);
}

.blog-img-wrapper{ position:relative; overflow:hidden; }
.blog-img-wrapper img{ transition: transform .5s ease; }
.blog-card:hover .blog-img-wrapper img{ transform: scale(1.05); }

/* Tarih rozetleri */
.date-badge-month{
  position:absolute; top:10px; left:10px;
  background:var(--brand-light);
  color:#fff; font-weight:700; padding:4px 10px; border-radius:6px 6px 0 0;
}
.date-badge-day{
  position:absolute; top:36px; left:10px;
  background:#fff; color:#111; font-weight:700; padding:4px 10px; border-radius: 0 0 6px 6px;
}

/* Scroll reveal */
.blog-reveal{
  opacity:0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
  /* kartlar arasında gecikme(kaldırmak istersen varsayılan 0 olur) */
  transition-delay: var(--delay, 0ms);
}
.blog-reveal.in-view{
  opacity:1;
  transform: translateY(0);
}

/*FOOTER*/

.footer-links a {
  color: #e6f4ff;
  text-decoration: none;
  display: inline-block;
  padding: 2px 0;
  transition: color .2s;
}
.footer-links a:hover {
  color: #0DB0F3;
}

.social-link {
  color: #fff;
  font-size: 1.3rem;
  transition: transform .2s, color .2s;
}
.social-link:hover {
  color: #0DB0F3;
  transform: translateY(-2px);
}

.email-btn {
  background: none;
  border: none;
  color: #e6f4ff;
  padding: 0;
  cursor: pointer;
}
.email-btn:hover {
  color: #0DB0F3;
}

.email-toast {
  position: fixed;
  left: 50%;
  bottom: 86px;
  transform: translate(-50%, 10px);
  background: #0DB0F3;
  color: #fff;
  padding: .5rem .75rem;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(13, 176, 243, .35);
  opacity: 0;
  transition: opacity .25s, transform .25s;
  z-index: 1100;
  font-weight: 600;
}
.email-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
footer p.small {
  white-space: normal;   /* uzun satırları böl */
  word-wrap: break-word; /* kelimeleri satır sonunda kır */
  line-height: 1.5;      /* satır yüksekliği */
  font-size: 1rem;       /* okunaklılık */
  max-width: 400px;      /* yazı genişliği, ayarlayabilirsin */
}


/* WHATSAPP */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.chat-button {
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chat-button:hover {
  transform: scale(1.1);
}

/* Popup */
.chat-popup {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.popup-header {
  background: #25D366;
  color: white;
  padding: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup-header button {
  margin-left: auto;
  background: transparent;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.popup-body {
  padding: 15px;
}

.popup-body p {
  font-size: 14px;
  margin-bottom: 10px;
}

.popup-body input {
  width: calc(100% - 20px);
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 10px;
}

.popup-body a {
  display: block;
  background: #25D366;
  color: white;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.popup-body a:hover {
  background: #1ebe5d;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
