/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
  --bg: #0b1220;
  --card: #ffffff;
  --text: #111827;
  --sub: #4b5563;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --shadow2: 0 20px 50px rgba(0,0,0,.14);
  --radius: 16px;
  --danger: #dc3545;
  --danger2:#b02a37;
  --soft: #f6f7fb;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

.containerx{
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

a{ text-decoration:none; }
img{ max-width:100%; display:block; }

.section{ padding: 72px 0; }
.section-alt{ background: var(--soft); }

.section-head{ margin-bottom: 28px; }
.section-head.slim{ margin-bottom: 18px; }

.section-head h2{
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 12px;
}
.section-desc{
  margin: 10px 0 0;
  color: var(--sub);
  max-width: 70ch;
  line-height: 1.7;
}
.line{
  width: 80px;
  height: 4px;
  background: var(--danger);
  border-radius: 999px;
}

/* topbar */
.topbar{ background: #0f172a; color: #fff; font-size: 13px; }
.topbar .containerx{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 0; gap: 12px;
}
.topbar-left, .topbar-right{ display:flex; align-items:center; gap: 14px; flex-wrap: wrap; }

.soc{
  color: rgba(255,255,255,.85);
  padding: 4px 10px; border-radius: 999px;
  transition: .2s ease;
}
.soc:hover{ background: rgba(255,255,255,.10); color:#fff; }

.search{
  display:flex; align-items:center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px; border-radius: 999px;
}
.search input{
  border: none; outline: none; background: transparent;
  color: #fff; width: 170px; font-size: 13px;
}
.search input::placeholder{ color: rgba(255,255,255,.65); }
.langs{ color: rgba(255,255,255,.9); font-weight: 700; }
.langs span{ opacity: .65; margin-left: 8px; }

/* headinfo */
.headinfo{ background: #fff; border-bottom: 1px solid #eef0f4; }
.headinfo-row{
  display:flex; align-items:center; justify-content:space-between;
  gap: 32px; padding: 18px 0; flex-wrap: wrap;
}
.brand{ display:flex; align-items:center; gap: 12px; }

/* brand-title/sub (HTML'de kaldırdıysan sorun değil, dursun) */
.brand-title{ font-size: 18px; font-weight: 900; }
.brand-sub{ color: var(--sub); font-size: 13px; margin-top: 2px; }

.infogrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
}
.ibox{
  display:flex; align-items:center; gap: 10px;
  padding: 10px 12px; border-radius: 12px;
  background: #fafbff; border: 1px solid #eef0f6;
}
.ibox-ico{ font-size: 18px; }
.ibox-label{ font-size: 11px; font-weight: 800; letter-spacing: .4px; color: #6b7280; }
.ibox-val{ font-size: 13px; font-weight: 700; color: #111827; }

/* navbar */
.navbar-wrap{
  position: sticky; top: 0; z-index: 50;

  background: linear-gradient(135deg, #0b1220, #0f172a);
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
}
.navbar{ padding: 12px 0; }
.navbar .nav-link{
  color: rgba(255,255,255,.82);
  font-weight: 700;
  padding: 10px 12px !important;
  border-radius: 10px;
  transition: .2s ease;
}
.navbar .nav-link:hover{ background: rgba(255,255,255,.10); color: #fff; }
.navbar .nav-link.active{ background: rgba(220,53,69,.25); color: #fff; }

/* page hero */
.page-hero{
  padding: 52px 0;
  background: radial-gradient(1100px 450px at 15% 10%, rgba(220,53,69,.22), transparent 60%),
              linear-gradient(135deg, #0b1220, #0f172a);
  color:#fff;
}
.page-hero h1{ margin: 0 0 8px; font-size: 34px; font-weight: 900; }
.breadcrumb-lite{ opacity: .8; font-size: 14px; }
.breadcrumb-lite{ letter-spacing: -0.4px; }



/* home hero */
.home-hero{
  padding: 70px 0;
  background: radial-gradient(1100px 500px at 20% 20%, rgba(220,53,69,.28), transparent 60%),
              linear-gradient(135deg, #0b1220, #0f172a);
  color:#fff;
}
.home-hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.pill{
  display:inline-flex; align-items:center;
  padding: 8px 12px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom: 14px;
}
.home-hero-text h1{
  font-size: 44px;
  font-weight: 950;
  margin: 0 0 14px;
  line-height: 1.08;
  letter-spacing: -0.5px;
}
.home-hero-text p{
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  max-width: 70ch;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.hero-stats{ display:flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.stat{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.stat-val{ font-weight: 900; font-size: 14px; }
.stat-label{ font-size: 12px; opacity: .78; }

.home-hero-media .media-card{
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
}
.home-hero-media img{ width: 100%; height: 320px; object-fit: cover; }
.media-note{ padding: 14px 14px 16px; }
.media-title{ font-weight: 900; }
.media-sub{ opacity: .78; font-size: 13px; margin-top: 2px; }

/* cards */
.cardx{
  background: var(--card);
  border: 1px solid #eef0f6;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  padding: 22px;
}
.cardx h3{ font-size: 18px; font-weight: 900; margin: 0 0 10px; }
.mini-list{ margin: 10px 0 0; padding-left: 18px; color: var(--sub); line-height: 1.7; }
.mini-list li{ margin: 6px 0; }

/* services */
.services-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.service-card{
  background:#fff;
  border-radius: 18px;
  padding: 26px 22px;
  text-align:center;
  border: 1px solid #eef0f6;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,0,0,.12); }
.service-card .sicon{
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--danger), var(--danger2));
  color:#fff; font-size: 26px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px rgba(220,53,69,.25);
}
.service-card h3{ font-size: 17px; font-weight: 900; margin: 0 0 8px; }
.service-card p{ font-size: 14px; color: var(--sub); line-height: 1.65; margin: 0; }
.section-cta{ margin-top: 26px; display:flex; justify-content:center; }

/* about split */
.about-split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}
.checklist{ list-style:none; padding: 0; margin: 14px 0 0; }
.checklist li{
  display:flex; gap: 10px; align-items:flex-start;
  padding: 10px 12px; border-radius: 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(17,24,39,.08);
  margin: 10px 0;
}
.checklist li span{
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(220,53,69,.14);
  color: var(--danger2);
  display:flex; align-items:center; justify-content:center;
  font-weight: 950;
  flex: 0 0 22px;
}

.about-card{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  background:#fff;
}
.about-card img{ width:100%; height: 260px; object-fit: cover; }
.about-card-body{ padding: 16px; }
.about-kpi{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi-item{
  padding: 10px 10px; border-radius: 14px;
  background: #fafbff; border: 1px solid #eef0f6;
  text-align:center;
}
.kpi-val{ font-weight: 950; }
.kpi-label{ color: var(--sub); font-size: 12px; margin-top: 2px; }

/* about page */
.about-page-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* Biz Kimiz / Misyon (eklenen) */
.about-info-grid{ display: grid; gap: 18px; margin-top: 28px; }
.about-info-grid.mini{ margin-top: 18px; }

.ainfo{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eef0f6;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.ainfo-ico{
  width: 96px; height: 96px;
  border-radius: 24px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(220,53,69,.12), rgba(15,23,42,.04));
  border: 1px solid rgba(220,53,69,.18);
  color: var(--danger);
  font-size: 42px;
  margin: 0 auto;
}
.ainfo-ico svg{ width: 56px; height: 56px; }
.ainfo-ico.small{ width: 72px; height: 72px; font-size: 32px; margin: 0; }
.ainfo-body h3{ margin: 0 0 6px; font-size: 18px; font-weight: 950; }
.ainfo-body p{ margin: 0; color: var(--sub); line-height: 1.7; }

/* callout */
.callout{
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(220,53,69,.10), rgba(15,23,42,.04));
  border: 1px solid rgba(220,53,69,.18);
  border-radius: 18px;
  padding: 18px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.callout h3{ margin: 0 0 6px; font-size: 18px; font-weight: 950; }
.callout p{ margin: 0; color: var(--sub); }

/* gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.gitem{
  position: relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid #eef0f6;
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
  background:#fff;
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 220px;
}
.gitem:hover{ transform: translateY(-5px); box-shadow: 0 20px 45px rgba(0,0,0,.12); }
.gitem img{ width:100%; height: 220px; object-fit: cover; }
.gcap{
  position:absolute;
  left: 12px; right: 12px; bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(17,24,39,.68);
  color:#fff;
  backdrop-filter: blur(6px);
}
.gtitle{ font-weight: 950; }
.gsub{ font-size: 12px; opacity: .85; margin-top: 2px; }

.gdoc{
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, #0b1220, #0f172a);
}
.gdoc .gcap{ background: rgba(255,255,255,.08); }
.doc-ico{
  position:absolute; top: 14px; left: 14px;
  padding: 8px 10px; border-radius: 12px;
  background: rgba(220,53,69,.95);
  color:#fff; font-weight: 950;
}

/* contact */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items:start; }
.contact-list .citem{
  display:flex; gap: 10px; align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fafbff;
  border: 1px solid #eef0f6;
  margin: 10px 0;
}
.contact-list .citem span{
  width: 28px; height: 28px;
  border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(220,53,69,.12);
}
.form-note{ color: var(--sub); font-size: 13px; }
.hint{ color: var(--sub); font-size: 13px; }
.map-placeholder{
  border-radius: 14px;
  border: 1px dashed #d1d5db;
  padding: 18px;
  color: #6b7280;
  background: #fff;
}

/* footer */
.footer{ background: #0b1220; color:#fff; padding: 54px 0 18px; }
.footer-grid{ display:grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 20px; align-items:start; }
.footer-brand{ display:flex; gap: 12px; align-items:center; }
.footer-logo{ width: 64px; height: 46px; object-fit: contain; }
.footer-title{ margin:0; font-weight: 950; font-size: 16px; }
.footer-sub{ margin: 2px 0 0; opacity: .78; font-size: 13px; }
.footer-mini{ color: rgba(255,255,255,.72); line-height: 1.7; margin:0; }

.footer-box h4{ font-size: 14px; font-weight: 950; margin: 0 0 12px; }
.footer-links{ display:grid; gap: 10px; }
.footer-links a{ color: rgba(255,255,255,.78); }
.footer-links a:hover{ color:#fff; }

.footer-contact{ color: rgba(255,255,255,.78); display:grid; gap: 8px; }
.footer-contact a{ color:#fff; text-decoration: underline; }

.footer-bottom{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

/* floating buttons */
.wa-float{
  position: fixed; right: 16px; bottom: 18px; z-index: 60;
  background: #25d366; color:#fff;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  transition: transform .2s ease;
}
.wa-float:hover{ transform: translateY(-3px); color:#fff; }

.to-top{
  position: fixed; right: 16px; bottom: 76px; z-index: 60;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  font-weight: 950;
  display:none;
}
.to-top.show{ display:block; }

/* lightbox */
.lightbox{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 1000;
  padding: 24px;
}
.lightbox.show{ display:flex; }
.lb-img{
  max-width: min(980px, 96vw);
  max-height: 84vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.lb-close{
  position:absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size: 28px;
  line-height: 0;
}

/* responsive */
@media (max-width: 992px){
  .infogrid{ grid-template-columns: 1fr; width: 100%; }
  .home-hero-grid{ grid-template-columns: 1fr; }
  .about-split{ grid-template-columns: 1fr; }
  .about-page-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .home-hero-text h1{ font-size: 36px; }
}
@media (max-width: 768px){
  .ainfo{ grid-template-columns: 1fr; }
  .ainfo-ico{ margin: 0; }
}

/* =========================================================
   HEADER LOGO (Panotim tarzı) - FINAL
   ========================================================= */
.headinfo-row{
  padding: 22px 0;          /* boşluk dengeli */
  align-items: center;
}

.brand{
  display:flex;
  align-items:center;
  min-width: 320px;         /* logo sol blokta güçlü dursun */
}

.brand-logo{
  width: 300px;             /* desktop */
  height: auto;
}

/* mobil */
@media (max-width: 768px){
  .brand-logo{ width: 200px; }
}
@media (max-width: 480px){
  .brand-logo{ width: 170px; }
}
.brand { 
  flex: 0 0 auto; 
}

.brand-logo{
  width: 340px;      /* daha net görünsün */
  height: auto;
  max-width: none;   /* img{max-width:100%} kuralını ez */
  flex: 0 0 auto;
}
/* ===== HOME HERO (centered + background) ===== */
.home-hero{
  position: relative;
  min-height: 70vh;              /* 100vh yerine 70vh */
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: url("assets/hero.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* overlay */
.home-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(rgba(0,0,0,.75), rgba(120,0,0,.60));
  z-index:0;
}

/* content above overlay */
.home-hero .containerx{
  position: relative;
  z-index: 1;
}

.hero-center{
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  animation: heroFadeUp 0.9s ease forwards;
}

.pill{
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  font-weight: 600;
  margin-bottom: 18px;
}

.home-hero h1{
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 22px;
}

.hero-list{
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}

.hero-list li{
  font-size: 18px;
  padding: 6px 0;
  opacity: 0.95;
}

.hero-actions{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes heroFadeUp{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* mobile spacing */
@media (max-width: 576px){
  .home-hero{
    padding: 70px 0;
  }
  .hero-list li{
    font-size: 16px;
  }
}
/* HERO BG FIX (mavi görsel geri gelsin) */
.home-hero{
  background-image: url("assets/hero.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* overlay çok karartmasın */
.home-hero::before{
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,40,120,.35)) !important;
}
/* ===== FIX HERO BACKGROUND + CENTER ===== */
.home-hero{
  position: relative !important;
  min-height: 85vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 90px 0 !important;

  background-color: #0b1220 !important;
  background-image: url("./assets/hero.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* overlay */
.home-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)) !important;
  z-index:0 !important;
}

/* content layer */
.home-hero > *{
  position: relative !important;
  z-index: 1 !important;
}

/* center text block */
.hero-center{
  width: 100%;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.home-hero{
  min-height: 85vh; /* istersen 80 yap */
  padding-bottom: 60px;

}
/* ===== HERO PARALLAX + ZOOM (FINAL) ===== */
.home-hero{
  background: none !important;
  position: relative !important;
  overflow: hidden;
}

/* gerçek arka plan */
.home-hero::after{
  content:"";
  position:absolute;
  inset:-40px;
  background-image: url("./assets/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: translate3d(0, var(--heroY, 0px), 0)
             scale(var(--heroS, 1.06));
  transition: transform .08s linear;
  will-change: transform;
  z-index: 0;
}

/* overlay (karartma) */
.home-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55));
  z-index:1;
}

/* içerik üste */
.home-hero > *{
  position: relative;
  z-index: 2;
}

/* mobilde daha az hareket */
@media (max-width: 768px){
  .home-hero::after{
    transform: translate3d(0, calc(var(--heroY, 0px) * .5), 0)
               scale(var(--heroS, 1.03));
  }
}

/* ==== FOTO GALERİ ==== */
.g-wrap{
  padding: 70px 0;
}

.g-head{
  text-align: center;
  margin-bottom: 28px;
}
.g-head h1{
  font-weight: 800;
}
.g-head p{
  opacity: .7;
}

.g-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 992px){
  .g-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .g-grid{ grid-template-columns: 1fr; }
}

.g-item{
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #0b1220;
}

.g-item img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .35s ease;
}
.g-item:hover img{
  transform: scale(1.08);
}

/* ==== LIGHTBOX ==== */
.lb{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lb.is-open{ display: flex; }

.lb-img{
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
}

.lb-close{
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
}

.lb-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #fff;
  font-size: 40px;
}
.lb-prev{ left: 20px; }
.lb-next{ right: 20px; }

.lb-cap{
  position: absolute;
  bottom: 16px;
  color: #ddd;
  font-size: 14px;
}
/* ===== Services Category Page (Panotim tarzı) ===== */
.page-hero{
  padding: 46px 0 28px;
  background: #fff;
}
.page-hero h1{
  font-weight: 900;
  margin: 0 0 10px;
}
.breadcrumbx{
  font-size: 14px;
  opacity: .75;
}
.breadcrumbx a{
  color: inherit;
  text-decoration: none;
}
.breadcrumbx span{ margin: 0 6px; }

.svc-wrap{ padding: 26px 0 80px; background:#fff; }
.svc-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 992px){
  .svc-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .svc-grid{ grid-template-columns: 1fr; }
}

.svc-card{
  position: relative;
  min-height: 170px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}
.svc-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.65));
}
.svc-body{
  position: relative;
  height: 100%;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.svc-body h2{
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  max-width: 70%;
}
.svc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .4px;
  text-decoration: none;
  background: #fff;
  color: #111;
  white-space: nowrap;
}
.svc-card:hover .svc-btn{
  background: #e63946;
  color: #fff;
}
.svc-card:hover{
  transform: translateY(-2px);
  transition: transform .2s ease;
}

/* CTA */
.svc-cta{
  margin-top: 26px;
  padding: 18px 18px;
  border-radius: 16px;
  background: #f6f7fb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.svc-cta h3{ margin: 0 0 6px; font-weight: 900; }
.svc-cta p{ margin: 0; opacity: .75; }
@media (max-width: 768px){
  .svc-cta{ flex-direction: column; align-items: flex-start; }
}
/* ===== Service Detail Pages ===== */
.sd-wrap{ padding: 26px 0 80px; background:#fff; }
.sd-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}
@media (max-width: 992px){
  .sd-grid{ grid-template-columns: 1fr; }
}

.sd-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  margin-bottom: 14px;
}
.sd-card h2{ font-weight: 900; margin: 0 0 10px; }
.sd-card p{ margin: 0; opacity: .85; }

.sd-list{ margin: 0; padding-left: 18px; }
.sd-list li{ padding: 6px 0; opacity: .9; }

.sd-sidecard{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}
.sd-sideoverlay{
  position:absolute;
  inset:0;
  background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.72));
}
.sd-sidebody{
  position: relative;
  padding: 18px;
  color: #fff;
}
.sd-tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom: 10px;
}
.sd-sidebody h3{ font-weight: 900; margin: 6px 0 8px; }
.sd-sidebody p{ margin: 0 0 12px; opacity: .9; }
/* Kartın tamamını tıklanabilir yap */
.svc-card{ position: relative; }
.svc-link{
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
}

/* Buton her zaman üstte kalsın (tıklanabilir) */
.svc-body{ position: relative; z-index: 2; }
.svc-btn{ position: relative; z-index: 3; }
/* ===== References ===== */
.refs-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
@media (max-width: 992px){
  .refs-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px){
  .refs-grid{ grid-template-columns: 1fr; }
}

.ref-card{
  height: 120px;
  border-radius: 14px;
  background: #f6f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #999;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
/* ===== Navbar Pro (Sticky + Blur + Active underline) ===== */
.navbar-wrap{
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all .25s ease;
}

/* Scroll olunca eklenecek class */
.navbar-wrap.nav-scrolled{
  backdrop-filter: blur(10px);
  background: rgba(9, 14, 26, .72);
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}

/* Nav link hover/active çizgi */
.navbar .nav-link{
  position: relative;
  font-weight: 700;
}

.navbar .nav-link::after{
  content:"";
  position:absolute;
  left: 10px;
  right: 10px;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: #e63946;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after{
  transform: scaleX(1);
}

/* Dropdown panel (Panotim vibe) */
.navbar .dropdown-menu{
  background: #0b1020;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.navbar .dropdown-item{
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.navbar .dropdown-item:hover{
  background: rgba(230,57,70,.18);
  color: #fff;
}

/* Küçük ikon kutusu */
.dd-ico{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}

/* Kart komple tıklanabilir fix (senin önceki düzen) */
.svc-card{ position: relative; }
.svc-link{ position:absolute; inset:0; z-index:1; text-indent:-9999px; }
.svc-body{ position: relative; z-index:2; }
.svc-btn{ position: relative; z-index:3; }
/* ===== Scroll reveal ===== */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Stats ===== */
.section-head.center{ text-align:center; }
.stats-section{ padding-top: 50px; padding-bottom: 50px; }

.stats-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 22px;
}
@media (max-width: 992px){ .stats-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 520px){ .stats-grid{ grid-template-columns: 1fr;} }

.stat-box{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  text-align:center;
}
.stat-num{
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}
.stat-title{
  margin-top: 8px;
  font-weight: 700;
  color: rgba(0,0,0,.65);
}

/* ===== Features ===== */
.feat-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 22px;
}
@media (max-width: 992px){ .feat-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 520px){ .feat-grid{ grid-template-columns: 1fr;} }

.feat-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.feat-ico{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(230,57,70,.10);
  font-size: 20px;
  margin-bottom: 12px;
}

/* ===== Photo row ===== */
.photo-row{
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
  margin-top: 18px;
}
@media (max-width: 992px){ .photo-row{ grid-template-columns: repeat(3,1fr);} }
@media (max-width: 520px){ .photo-row{ grid-template-columns: repeat(2,1fr);} }

.photo-item{
  display:block;
  height: 170px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
  transition: transform .2s ease;
}
.photo-item:hover{ transform: translateY(-3px); }

/* ===== Map split ===== */
.map-split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
@media (max-width: 992px){ .map-split{ grid-template-columns: 1fr; } }

.map-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.map-frame{
  margin-top: 12px;
  overflow:hidden;
  border-radius: 14px;
  border:1px solid rgba(0,0,0,.06);
}
.map-frame iframe{
  width:100%;
  height: 320px;
  border:0;
}

.quick-contact{ margin-top: 10px; }
.qc-item{ padding: 10px 0; border-bottom: 1px dashed rgba(0,0,0,.10); }
.qc-item:last-child{ border-bottom:0; }
.qc-actions{ margin-top: 14px; display:flex; gap: 10px; flex-wrap: wrap; }
/* ===== HERO 3 KUTU (Panotim style) ===== */
.hero-cards{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 992px){
  .hero-cards{ grid-template-columns: 1fr; }
}

.hero-card{
  background: #2f4f86;            /* mavi ton */
  color: #fff;
  border-radius: 16px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  transition: transform .2s ease, filter .2s ease;
  position: relative;
}

.hero-card:hover{
  transform: translateY(-3px);
  filter: brightness(1.05);
  color:#fff;
}

.hc-ico{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 auto;
}

.hc-title{
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 15px;
  line-height: 1.1;
}
.hc-sub{
  font-weight: 700;
  opacity: .92;
  font-size: 12px;
  margin-top: 4px;
}

.hc-arrow{
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
}
/* ===== BLOG LIST (Panotim style) ===== */
.blog-list{
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.blog-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.blog-date{
  font-weight: 800;
  font-size: 13px;
  color: rgba(0,0,0,.55);
  margin-bottom: 8px;
}

.blog-title{
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 900;
}
.blog-title a{
  color: #0b1b33;
  text-decoration: none;
}
.blog-title a:hover{
  text-decoration: underline;
}

.blog-excerpt{
  margin: 0 0 12px;
  color: rgba(0,0,0,.70);
}

.blog-more{
  font-weight: 900;
  text-decoration: none;
  color: #d63a46;
}
.blog-more:hover{ text-decoration: underline; }

/* Pager */
.blog-pager{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  margin-top: 22px;
}
.pager-btn{
  border: 1px solid rgba(0,0,0,.15);
  background:#fff;
  border-radius: 10px;
  padding: 8px 12px;
}
.pager-page{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(0,0,0,.15);
  background:#fff;
  font-weight: 800;
}
.pager-page.active{
  background: #0b1b33;
  color:#fff;
  border-color: transparent;
}
/* ===== BLOG POST ===== */
.blog-layout{
  display:grid;
  grid-template-columns: 3fr 1fr;
  gap: 32px;
}

@media(max-width: 992px){
  .blog-layout{ grid-template-columns: 1fr; }
}

.blog-post{
  background:#fff;
  padding:24px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.post-meta{
  font-size:14px;
  color:rgba(0,0,0,.55);
  margin-bottom:10px;
}

.post-cover{
  width:100%;
  border-radius:14px;
  margin:14px 0 18px;
}

.blog-post h2{
  margin-top:24px;
  font-weight:900;
}

.blog-post blockquote{
  background:#f4f7fb;
  padding:16px;
  border-left:5px solid #d63a46;
  margin:20px 0;
  font-weight:600;
}

.blog-sidebar{
  background:#0b1b33;
  color:#fff;
  padding:22px;
  border-radius:18px;
}

.blog-sidebar h3{
  font-size:18px;
  margin-bottom:12px;
}

.sidebar-list{
  list-style:none;
  padding:0;
  margin-bottom:20px;
}

.sidebar-list li{
  margin-bottom:8px;
}

.sidebar-list a{
  color:#fff;
  text-decoration:none;
}

.sidebar-list a:hover{
  text-decoration:underline;
}
/* BLOG - foto ekli kart */
.blog-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:22px;
}

.blog-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.blog-thumb{
  display:block;
  height:200px;
  background-size:cover;
  background-position:center;
  transition:transform .35s ease;
}

.blog-card:hover .blog-thumb{
  transform:scale(1.05);
}

.blog-body{
  padding:18px;
}

.blog-date{
  font-weight:800;
  font-size:13px;
  color:rgba(0,0,0,.55);
  margin-bottom:8px;
}

.blog-title{
  font-size:20px;
  line-height:1.2;
  margin:0 0 10px;
  font-weight:900;
}

.blog-title a{
  color:#0b1b33;
  text-decoration:none;
}

.blog-excerpt{
  margin:0 0 12px;
  color:rgba(0,0,0,.70);
}

.blog-more{
  font-weight:900;
  text-decoration:none;
  color:#d63a46;
}
/* ====== FIX: sayfayı bozan tek başına kalan satırları EZ ====== */
.breadcrumb-lite{ letter-spacing: -0.4px; } /* sendeki bozuk satır fix */

/* ====== HERO overlay daha düzgün ====== */
.home-hero::before{
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)) !important;
}

/* ====== HERO 3 KUTU: mobile spacing ====== */
.hero-cards{
  margin-top: 24px;
  margin-bottom: 10px;
}

/* ====== Navbar dropdown tıklanabilir alan + hover ====== */
.navbar .dropdown-menu{
  min-width: 260px;
}

/* ====== Reveal animasyonu daha yumuşak ====== */
.reveal{
  will-change: transform, opacity;
}
/* ===== ABOUT HOME (Panotim sırası) ===== */
.about-home{ background:#fff; }

.about-home-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 992px){
  .about-home-grid{ grid-template-columns: 1fr; }
}

.mini-title{
  font-weight: 900;
  letter-spacing: .6px;
  font-size: 12px;
  color: rgba(0,0,0,.55);
  margin-bottom: 10px;
}

.about-home-text h2{
  font-size: 32px;
  font-weight: 950;
  margin: 0 0 12px;
}

.about-home-text p{
  color: rgba(0,0,0,.70);
  line-height: 1.75;
  margin: 0 0 14px;
}

.about-bullets{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}

.about-bullets li{
  background: #fafbff;
  border: 1px solid #eef0f6;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
  color: rgba(0,0,0,.75);
}

.about-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-media-card{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.06);
  background:#fff;
}

.about-media-card img{
  width:100%;
  height: 340px;
  object-fit: cover;
}
.about-home-media{
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-media-card{
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.about-media-card img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
/* ===== THEME UPGRADE (Kernel Premium) ===== */
:root{
  --navy:#0b1220;
  --navy2:#0f172a;
  --accent:#dc3545;
  --accent2:#b02a37;
  --glass: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
}

/* daha yumuşak genel tipografi */
body{ letter-spacing: -0.15px; }
.section{ padding: 86px 0; }
.section-head h2{ font-size: 34px; }

/* NAV: daha premium blur + ince çizgi */
.navbar-wrap{
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.70);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar .nav-link{
  border-radius: 12px;
}
.navbar .nav-link.active{
  background: rgba(220,53,69,.18);
}

/* HERO: daha temiz, daha reklam gibi */
.home-hero{
  min-height: 92vh !important;
}
.home-hero::before{
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(220,53,69,.22), transparent 60%),
    linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.60)) !important;
}
.hero-center{
  max-width: 980px;
}
.home-hero h1{
  text-shadow: 0 25px 60px rgba(0,0,0,.55);
}
.hero-list li{
  display:flex;
  gap:10px;
  justify-content:center;
}
.hero-list li::before{
  content:"✓";
  color: #fff;
  opacity:.9;
}

/* HERO 3 kart: daha modern */
.hero-card{
  background: rgba(47,79,134,.92);
  border: 1px solid rgba(255,255,255,.10);
}
.hero-card:hover{
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
}

/* ABOUT HOME (Hakkımızda) split daha reklam gibi */
.about-split{
  gap: 34px;
  align-items: center;
}
.checklist li{
  background:#fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* CTA blok (tek satır net) */
.cta-bar{
  margin-top: 26px;
  padding: 18px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(220,53,69,.12), rgba(15,23,42,.04));
  border: 1px solid rgba(220,53,69,.18);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-bar h3{ margin:0; font-weight: 950; }
.cta-bar p{ margin:0; opacity:.75; }

/* STATS daha şık */
.stat-box{
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}
.stat-num{
  background: linear-gradient(135deg, #111827, #334155);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* FOTO şerit hover daha premium */
.photo-item{
  position: relative;
  overflow:hidden;
}
.photo-item::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(transparent, rgba(0,0,0,.45));
  opacity: 0;
  transition: opacity .25s ease;
}
.photo-item:hover::after{ opacity: 1; }

/* BUTONLAR daha dolgun */
.btn{
  border-radius: 14px;
  font-weight: 900;
}
.btn-danger{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
}
.btn-danger:hover{ filter: brightness(1.05); }
/* ===== ABOUT HOME (Panotim layout) ===== */
.about-home-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 992px){
  .about-home-grid{ grid-template-columns: 1fr; }
}

.mini-title{
  font-weight: 900;
  letter-spacing: .8px;
  font-size: 12px;
  opacity: .7;
  margin-bottom: 10px;
}

.about-bullets{
  list-style: none;
  padding: 0;
  margin: 18px 0 18px;
  display: grid;
  gap: 10px;
}
.about-bullets li{
  background: #f6f7fb;
  border: 1px solid rgba(0,0,0,.06);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
}

/* sağ görsel kartı */
.about-media-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(0,0,0,.10);
  overflow: hidden;
}
.about-media-card img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display:block;
}

/* ===== CTA BAR ===== */
.cta-bar{
  margin: 0 auto;
  width: min(1140px, calc(100% - 32px));
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 16px 45px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
  transform: translateY(-24px); /* Panotim gibi biraz yukarı otursun */
}
.cta-bar h3{ margin: 0 0 6px; font-weight: 900; }
.cta-bar p{ margin: 0; opacity: .75; }
/* ===== FIX: Features bölümünde yazılar kaybolmasın ===== */
#features .section-head h2,
#features .section-head .section-desc{
  color: #0b1b33 !important;
}

#features .line{
  background: #e63946 !important;
}

/* Kartların içi görünür olsun */
#features .feat-card{
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
}

#features .feat-card h3{
  color: #0b1b33 !important;
}

#features .feat-card p{
  color: rgba(0,0,0,.70) !important;
}

/* Icon kutusu zaten kalsın, ama aşırı soluksa */
#features .feat-ico{
  background: rgba(230,57,70,.10) !important;
}
/* ===== LOGO BOŞLUK FIX (EN SONA EKLE) ===== */

/* Header yüksekliğini düşür */
.headinfo-row{
  padding: 10px 0 !important;   /* 22px -> 10px */
  gap: 18px !important;
}

/* Logo bloğu min-width yüzünden büyüyorsa azalt */
.brand{
  min-width: 0 !important;      /* 320px iptal */
}

/* Logo ölçüsünü normale çek */
.brand-logo{
  width: 260px !important;      /* 340px -> 260px */
  max-width: 100% !important;   /* taşmasın */
}

/* Bilgi kutuları da biraz sıkı dursun */
.ibox{
  padding: 8px 10px !important; /* 10px 12px -> 8px 10px */
}

/* Mobilde daha da kompakt */
@media (max-width: 768px){
  .headinfo-row{ padding: 8px 0 !important; }
  .brand-logo{ width: 200px !important; }
}
/* =========================
   FINAL FIX PACK (HOME)
   ========================= */

/* HERO: tek tanım */
.home-hero{
  position: relative !important;
  min-height: 85vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 90px 0 !important;
  overflow: hidden !important;

  background-image: url("./assets/hero.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* HERO overlay */
.home-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(220,53,69,.22), transparent 60%),
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)) !important;
  z-index: 0 !important;
}

/* içerik üste */
.home-hero > *{
  position: relative !important;
  z-index: 1 !important;
}

/* hero merkez */
.hero-center{
  width: 100% !important;
  text-align: center !important;
  max-width: 980px !important;
  margin: 0 auto !important;
}

/* hero list */
.hero-list{
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.hero-list li{
  font-size: 18px;
  padding: 6px 0;
  opacity: .95;
}

/* HERO 3 KART */
.hero-cards{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
@media (max-width: 992px){
  .hero-cards{ grid-template-columns: 1fr; }
}

/* CTA BAR (tek tanım) */
.cta-bar{
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 45px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* SECTION ALT yazı rengi garanti */
.section-alt{
  background: var(--soft);
  color: var(--text);
}

/* FEATURES düzeltme (seninki iyi, garanti kalsın) */
#features .section-head h2,
#features .section-head .section-desc{ color:#0b1b33 !important; }
#features .feat-card{ background:#fff !important; }
#features .feat-card h3{ color:#0b1b33 !important; }
#features .feat-card p{ color: rgba(0,0,0,.70) !important; }
/* ===== REFERENCES (LOGO GRID) ===== */
.refs-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.ref-card{
  height: 120px;
  background: #f6f7fb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ref-card img{
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .75;
  transition: .25s ease;
}

.ref-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.ref-card:hover img{
  filter: grayscale(0%);
  opacity: 1;
}

/* responsive */
@media (max-width: 992px){
  .refs-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px){
  .refs-grid{ grid-template-columns: 1fr; }
}
/* ===== REFERENCES – LOGO BOYUT FIX ===== */

.ref-card{
  height: 160px;              /* 120 → 140 */
  padding: 20px;
}

.ref-card img{
  max-height: 150px;
  max-width: 160px;
  object-fit: contain;

  opacity: .8;
  filter: saturate(0.85) brightness(0.95);
  transition: .25s ease;
}

.ref-card:hover img{
  opacity: 1;
  filter: saturate(1.15) brightness(1.05);
  transform: scale(1.04);
}





