/* =========================
   OMNİBAK – ÇÖZÜMLERİMİZ (BAĞIMSIZ)
   Scroll yok, tek ekran
   ========================= */

*{ margin:0; padding:0; box-sizing:border-box; }

:root{
  --brand:#b30000;
  --header-h:64px;
  --footer-h:52px;

  --omni-c1:#b30000;
  --omni-c2:#ff3b3b;
  --omni-c3:#6a5acd;
}

body{
  font-family: 'Segoe UI', Arial, sans-serif;
  background:#001427;
  color:#fff;

  /* tek ekran */
  height:100vh;
  overflow:hidden;

  /* fixed header/footer çakışmasın */
  padding-top: var(--header-h);
  padding-bottom: var(--footer-h);
}

/* ================= HEADER ================= */
#siteHeader{
  position: fixed;
  top:0; left:0;
  width:100%;
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  background: rgba(255,255,255,0.98);
  border-bottom:1px solid #e6e8ec;
  z-index: 9999;
}

.logo a{ display:flex; align-items:center; height: var(--header-h); }
.logo img{
  height: calc(var(--header-h) * 0.98);
  width:auto;
  display:block;
  transform: scale(1.18);
  transform-origin:left center;
}

/* hamburger */
.menu-btn{
  display:none;
  width:44px; height:44px;
  border:1px solid #ddd;
  background:#fff;
  border-radius:12px;
  cursor:pointer;
  position: relative;
}
.menu-btn span{
  position:absolute;
  left: 12px; right: 12px;
  height: 2px;
  background:#111;
  border-radius: 99px;
  transition: transform .18s ease, opacity .18s ease, top .18s ease;
}
.menu-btn span:nth-child(1){ top: 14px; }
.menu-btn span:nth-child(2){ top: 21px; opacity: 1; }
.menu-btn span:nth-child(3){ top: 28px; }

body.nav-open #siteHeader .menu-btn span:nth-child(1){ top:21px; transform: rotate(45deg); }
body.nav-open #siteHeader .menu-btn span:nth-child(2){ opacity:0; }
body.nav-open #siteHeader .menu-btn span:nth-child(3){ top:21px; transform: rotate(-45deg); }

/* nav desktop */
#mainNav ul{ list-style:none; display:flex; gap:20px; }
#mainNav a{
  text-decoration:none;
  color:#333;
  font-weight:700;
  font-size:15px;
}
#mainNav a:hover, #mainNav a.active{ color: var(--brand); }

/* language */
.language{ position: relative; }
.language button{
  display:flex;
  gap:8px;
  align-items:center;
  padding:8px 14px;
  background:#fff;
  border:1px solid #ccc;
  border-radius:20px;
  cursor:pointer;
}
.language img.flag{ width:20px; height:14px; object-fit:cover; border-radius:2px; }
#langMenu{
  position:absolute;
  top:110%;
  right:0;
  background:#fff;
  border:1px solid #ddd;
  border-radius:10px;
  padding:10px;
  width:160px;
  display:none;
  flex-direction:column;
  gap:6px;
  z-index: 10000; /* dil menüsü garanti */
}
#langMenu.show{ display:flex; }
#langMenu li{
  display:flex;
  gap:10px;
  align-items:center;
  padding:6px;
  cursor:pointer;
  font-size:14px;
  color:#111;
}
#langMenu li:hover{ background:#f2f2f2; }

/* mobile backdrop */
.nav-backdrop{
  display:none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(0,0,0,0.35);
  z-index: 9000;
}
body.nav-open .nav-backdrop{ display:block; }

/* ================= HERO / BACKGROUND ================= */
.hero{
  position: relative;
  height: calc(100vh - var(--header-h) - var(--footer-h));
  background: radial-gradient(circle at 20% 30%, #1a2a6a 0%, #0b1530 45%, #071227 100%);
  overflow: hidden;
}

#bgCanvas{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.9;
}

/* ================= CONTENT ================= */
.solutions{
  position: relative;
  z-index: 5;
  height: 100%;
  width: min(1240px, 94vw);
  margin: 0 auto;
  padding: 20px 0 10px;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.solutions-head{
  text-align:center;
  margin-bottom: 16px;
}

.solutions-title{
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  color:#fff;
}

.solutions-bar{
  width: 320px;
  height: 5px;
  border-radius: 999px;
  margin: 12px auto 10px;
  background: linear-gradient(90deg, var(--omni-c1), var(--omni-c2), var(--omni-c3));
}

.solutions-sub{
  color:#fff;
  opacity: 0.9;
  font-size: 16px;
}

/* grid */
.solutions-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 14px;
}

/* cards */
.solution-card{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
  align-items:center;

  padding: 30px 34px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);

  text-decoration:none;
  color: inherit;

  transition: transform .18s ease, box-shadow .18s ease;
}
.solution-card:hover{
  transform: scale(1.035);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

.solution-media{
  border-radius: 16px;
  overflow:hidden;
}
.solution-media img{
  width:100%;
  height:100%;
  max-height: 320px;
  object-fit: contain;
  display:block;
}

.solution-content{
  background:#fff;
  color:#111;
  border-radius: 16px;
  padding: 28px 30px;
}

.solution-title{
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.solution-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--omni-c1), var(--omni-c2), var(--omni-c3));
}

.solution-points{
  padding-left: 18px;
}
.solution-points li{
  font-size: 17px;   /* maddeler büyüdü */
  line-height: 1.65;
  margin-bottom: 12px;
  font-weight: 500;
}

/* ================= FOOTER ================= */
.site-footer{
  position: fixed;
  left:0; right:0; bottom:0;
  height: var(--footer-h);
  background:#000;
  color:#fff;
  padding: 0 32px;

  display:flex;
  justify-content: space-between;
  align-items:center;

  z-index: 9500;
}

.social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 38px;
  height: 38px;
  background:#111;
  border-radius: 50%;
  text-decoration:none;
}
.social svg{
  width: 18px;
  height: 18px;
  fill:#fff; /* ikon görünür */
}

.teknokent{
  height: 34px;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
}

/* ================= SPLASH ================= */
#splash{
  position: fixed;
  inset: 0;
  z-index: 12000;
  background: #001427;
  display: grid;
  place-items: center;
  transition: opacity .5s ease;
}
#splash img{ width: 300px; }
#splash.hide{ opacity:0; pointer-events:none; }

/* ================= MOBILE ================= */
@media (max-width: 900px){
  #siteHeader{ padding: 0 12px; gap: 10px; }
  .menu-btn{ display:inline-flex; }

  /* mobile nav panel */
  #mainNav{
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(320px, 84vw);
    height: calc(100vh - var(--header-h));
    background: rgba(255,255,255,0.98);
    border-left: 1px solid #e6e8ec;
    padding: 12px;
    transform: translateX(110%);
    transition: transform .22s ease;
    z-index: 9998;
    overflow: auto;
    display: block;
  }
  body.nav-open #mainNav{ transform: translateX(0); }
  #mainNav ul{ display:flex; flex-direction:column; gap: 10px; }
  #mainNav a{
    display:block;
    padding: 12px 10px;
    border-radius: 12px;
    background: rgba(0,0,0,0.04);
  }

  .solutions{
    width: min(560px, 92vw);
    padding: 14px 0 8px;
  }

  .solutions-title{ font-size: clamp(30px, 7.4vw, 44px); }
  .solutions-bar{ width: 190px; height: 4px; margin: 10px auto 8px; }
  .solutions-sub{ font-size: 14px; }

  .solutions-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-card{
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .solution-media img{
    max-height: 180px;
  }

  .solution-content{
    padding: 18px;
  }

  .solution-title{
    font-size: 22px;
    margin-bottom: 12px;
  }

  .solution-points li{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}
/* OBSBAK ve YapıBAK kart yükseklik eşitleme */
.page-solutions .solution-card{
  min-height: 380px; /* iki kart aynı boyda olur */
  align-items: stretch;
}

.page-solutions .solution-content{
  display: flex;
  flex-direction: column;
  /* İçerik yukarıdan başlasın, boşluk aşağıda kalsın */
.page-solutions .solution-content{
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ✅ üstte dursun */

.page-solutions .solution-title{
  margin-bottom: 14px;
}

}

}
