/* =========================================================
   OKANDE HAVUZ — PREMIUM UI PACK (v3000)
   - Tek dosya kontrol: style.css
   - Mobile/Tablet/Desktop uyumlu
   - Daha temiz akış + daha premium tipografi
   ========================================================= */

/* ---------- RESET ---------- */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
img{ max-width:100%; display:block; height:auto; }
a{ color:inherit; text-decoration:none; }
button,input,textarea,select{ font:inherit; }

/* ---------- THEME TOKENS ---------- */
:root{
  --nav:#1f6f86;
  --navDeep:#0b4f6c;

  --ink:#07121f;
  --muted: rgba(7,18,31,.72);
  --line: rgba(2,6,23,.10);

  --bg1:#dff2ff;
  --bg2:#ffffff;
  --bg3:#d6fbff;

  --shadow: 0 18px 60px rgba(2,6,23,.12);
  --radius: 18px;
}

html{
  min-height:100%;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(31,111,134,.22), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(214,251,255,.85), transparent 55%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 42%, var(--bg3) 100%);
}

body{
  min-height:100%;
  color:var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.55;
}

/* Skip link (erişilebilirlik) */
.skip{
  position:absolute;
  left:12px; top:10px;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(2,6,23,.14);
  box-shadow: 0 12px 28px rgba(2,6,23,.12);
  transform: translateY(-120%);
  transition: transform .18s ease;
  z-index:9999;
  font-weight:900;
}
.skip:focus{ outline:none; }
.skip:focus-visible{ transform: translateY(0); }
.skip:focus{ transform: translateY(0); }

.wrap{ width: min(1100px, calc(100% - 32px)); margin-inline:auto; }
.muted{ color: var(--muted); }
.tiny{ font-size:12px; }

.skiplink{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skiplink:focus{
  left:16px; top:12px; width:auto; height:auto; padding:10px 12px;
  border-radius:12px; background:#fff; border:1px solid var(--line);
  box-shadow: 0 14px 36px rgba(2,6,23,.14);
  z-index:9999;
}

/* ---------- TOPBAR ---------- */
.topbar{
  background: linear-gradient(90deg, var(--navDeep), var(--nav));
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar__inner{
  display:flex; gap:12px; align-items:center; justify-content:space-between;
  padding:10px 0; font-size:13px;
}
.topbar__left,.topbar__right{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.chip{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  padding:6px 10px; border-radius:999px;
}
.link{ opacity:.95; white-space:nowrap; }
.link:hover{ opacity:1; text-decoration:underline; }
.topsep{ opacity:.6; margin:0 8px; }
.top-ig{ font-weight:900; }

/* ---------- HEADER ---------- */
.header{
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,.52);
  border-bottom: 1px solid var(--line);
  transition: background .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:16px;
  transition: padding .18s ease;
}
.header.is-scrolled{
  background: rgba(255,255,255,.74);
  border-bottom-color: rgba(31,111,134,.18);
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
}
.header.is-scrolled .header__inner{ padding:10px 0; }

.brand{ display:flex; align-items:center; gap:12px; }
.brand__mark{
  width:52px; height:52px; border-radius:16px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.88), transparent 60%),
    linear-gradient(135deg, #23b5d3, #1f6f86);
  box-shadow: 0 10px 28px rgba(31,111,134,.25);
  position:relative;
  overflow:hidden;
}
/* küçük “dalga” hissi (SVG data URI) */
.brand__mark:after{
  content:"";
  position:absolute; inset:8px;
  opacity:.9;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  filter: drop-shadow(0 6px 18px rgba(2,6,23,.18));
}

.brand__name{ font-weight:950; letter-spacing:.6px; }
.brand__tag{ font-size:12px; color: rgba(7,18,31,.70); font-weight:850; opacity:.88; }

.nav{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.nav a{
  font-weight:850; font-size:16px;
  padding:10px 10px; border-radius:12px;
}
.nav a:hover{ background: rgba(31,111,134,.10); }

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 16px; border-radius:14px;
  border:1px solid rgba(31,111,134,.20);
  background: linear-gradient(135deg, #23b5d3, #1f6f86);
  color: rgba(255,255,255,.96);
  box-shadow: 0 14px 35px rgba(31,111,134,.22);
  cursor:pointer; font-weight:900;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover{ filter: brightness(1.04); transform: translateY(-2px); box-shadow: 0 18px 50px rgba(31,111,134,.35); }
.btn:active{ transform: translateY(0); }
.btn--ghost{
  background: rgba(255,255,255,.66);
  color: var(--ink);
  border: 1px solid rgba(2,6,23,.10);
  box-shadow: 0 12px 28px rgba(2,6,23,.10);
}
.btn--sm{ padding:10px 12px; font-size:13px; }

/* ---------- HERO ---------- */
.hero{
  padding:38px 0 28px;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(10,40,60,.46), rgba(10,40,60,.14)),
    url("assets/img/hero.jpg") center/cover no-repeat;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  background: rgba(255,255,255,.18);
  z-index:0;
}
.hero > *{ position:relative; z-index:1; }

.hero__grid{
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap:18px; align-items:stretch;
}
.badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.40);
  font-weight:950; font-size:13px;
}
.hero h1{
  margin:12px 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height:1.12;
  letter-spacing:-0.6px;
  color: rgba(7,18,31,.96);
}
.hero p{ line-height:1.45; font-weight:650; color: rgba(7,18,31,.92); }
.hero__cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

.stats{ display:flex; gap:10px; margin-top:18px; flex-wrap:wrap; }
.stat{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(2,6,23,.08);
  border-radius:16px;
  padding:12px 14px;
  min-width:150px;
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
}
.stat__num{ font-weight:950; font-size:18px; }
.stat__txt{ color: var(--muted); font-size:13px; margin-top:2px; }

.hero__card{
  border-radius: var(--radius);
  border: 1px solid rgba(31,111,134,.25);
  background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62));
  box-shadow: 0 30px 80px rgba(31,111,134,.25);
  overflow:hidden;
}
.glass{ padding:18px; }
.hero__card h2{ margin:0 0 8px; font-size:20px; }

.quick{ display:flex; gap:10px; flex-wrap:wrap; margin:12px 0 0; }
.qbtn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.74);
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
  font-weight:900; font-size:13px;
  transition: transform .15s ease;
}
.qbtn:hover{ transform: translateY(-1px); }

/* ---------- SECTIONS ---------- */
.section{ padding:34px 0; }
.section--alt{
  background: rgba(255,255,255,.44);
  border-top: 1px solid rgba(2,6,23,.06);
  border-bottom: 1px solid rgba(2,6,23,.06);
}
.section__head{
  display:flex; justify-content:space-between; align-items:end;
  gap:14px; margin-bottom:14px;
}
.section__head h2{ margin:0; font-size:22px; letter-spacing:-0.2px; }
.h2{ margin:0; font-size:22px; letter-spacing:-0.2px; }
.section__head p{ margin:0; }

/* ---------- SERVICES ---------- */
.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; }
.card{
  background: linear-gradient(180deg,#ffffff,#f9fcff);
  border: 1.5px solid rgba(2,6,23,.10);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 10px 26px rgba(2,6,23,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: 0 18px 44px rgba(2,6,23,.12); border-color: rgba(14,116,144,.55); }
.card h3{ margin:0 0 10px; font-weight:950; text-align:center; }
.card p{ margin:0; text-align:center; color: rgba(7,18,31,.92); font-weight:650; }
.is-clickable{ cursor:pointer; }

/* ---------- PROJECTS ---------- */
.gallery{ display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; }
.gitem{
  position:relative; display:block;
  border-radius:18px; overflow:hidden;
  border:1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.55);
  box-shadow: 0 14px 32px rgba(2,6,23,.08);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.gitem:hover{ transform: translateY(-4px); box-shadow: 0 22px 48px rgba(2,6,23,.14); filter: saturate(1.05); }
.gitem img{ width:100%; height:210px; object-fit:cover; transition: transform .35s ease, filter .35s ease; }
.gitem:hover img{ transform: scale(1.06); filter: saturate(1.08) contrast(1.03); }
.gcap{
  position:absolute; left:10px; right:10px; bottom:10px;
  padding:10px 12px; border-radius:14px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(2,6,23,.10);
  font-weight:950; font-size:13px;
  color: rgba(7,18,31,.92);
}

/* ---------- PROCESS ---------- */
.process-trust{ padding-top:42px; padding-bottom:44px; }
.micro-note{
  display:inline-block; margin-bottom:12px;
  padding:6px 12px; border-radius:999px;
  font-size:12.5px; font-weight:950;
  background: rgba(0,150,180,.12);
}
.section-head{ margin-bottom:4px; }
.process-grid{
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px; margin-top:16px;
}
.step-card{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(2,6,23,.08);
  border-radius:18px;
  padding:16px 14px 14px;
  box-shadow: 0 10px 28px rgba(2,6,23,.08);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 40px rgba(2,6,23,.14); }
.step-no{
  width:34px; height:34px; border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:950;
  border:1px solid rgba(2,6,23,.10);
  background: rgba(0,150,180,.14);
  margin-bottom:10px;
}
.trust-badges{
  margin-top:16px; display:flex; flex-wrap:wrap; gap:10px; padding-top:6px;
}
.trust-badges .badge{
  padding:10px 12px; border-radius:999px;
  background: linear-gradient(180deg, #ffffff, #f3fbff);
  border:1px solid rgba(2,6,23,.08);
  box-shadow: 0 6px 18px rgba(2,6,23,.08);
  font-weight:950; font-size:12.5px; opacity:.94;
}
.process-cta{ margin-top:18px; display:flex; gap:10px; flex-wrap:wrap; }

/* ---------- WHY (PREMIUM) ---------- */
.why-section{ padding:38px 0; }
.why-head{ text-align:center; max-width:820px; margin:0 auto 18px; }
.why-pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(31,111,134,.12);
  border:1px solid rgba(31,111,134,.20);
  font-weight:950;
}
.why-head h2{ margin:10px 0 6px; font-size:26px; letter-spacing:-0.4px; }
.why-desc{ margin:0; }

.why-grid{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.why-card{
  background: rgba(255,255,255,.70);
  border:1px solid rgba(2,6,23,.10);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 14px 32px rgba(2,6,23,.08);
}
.why-ico{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  font-weight:950;
  background: linear-gradient(135deg, rgba(35,181,211,.22), rgba(31,111,134,.20));
  border:1px solid rgba(31,111,134,.20);
  margin-bottom:10px;
}
.why-card h3{ margin:0 0 6px; font-weight:950; }
.why-card p{ margin:0; color: rgba(7,18,31,.88); font-weight:650; }

.why-stats{
  margin-top:14px;
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.why-stats .stat{
  display:flex; align-items:center; gap:12px;
  background: rgba(255,255,255,.68);
  border:1px solid rgba(2,6,23,.10);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 14px 32px rgba(2,6,23,.08);
}
.stat-num{
  width:42px; height:42px;
  border-radius:16px;
  display:grid; place-items:center;
  font-weight:950;
  background: linear-gradient(135deg, #23b5d3, #1f6f86);
  color:#fff;
  box-shadow: 0 12px 28px rgba(31,111,134,.25);
}
.stat-txt strong{ display:block; font-weight:950; }
.stat-txt span{ display:block; color: var(--muted); font-size:13px; margin-top:2px; }

.why-actions{ margin-top:16px; display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.btn.outline{
  background: rgba(255,255,255,.64);
  color: var(--ink);
  border: 1px solid rgba(2,6,23,.10);
  box-shadow: 0 12px 28px rgba(2,6,23,.10);
}

/* ---------- TRUST STRIP ---------- */
.trust-strip{
  padding:28px 0;
  background: rgba(255,255,255,.42);
  border-top: 1px solid rgba(2,6,23,.06);
  border-bottom: 1px solid rgba(2,6,23,.06);
}
.trust-wrap{
  width: min(1100px, calc(100% - 32px));
  margin-inline:auto;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.trust-item{
  background: rgba(255,255,255,.78);
  border:1px solid rgba(2,6,23,.10);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 12px 28px rgba(2,6,23,.08);
}
.trust-ico{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(31,111,134,.12);
  border:1px solid rgba(31,111,134,.18);
  font-size:20px;
  margin-bottom:10px;
}
.trust-item h4{ margin:0 0 6px; font-size:15px; font-weight:950; }
.trust-item p{ margin:0; color: rgba(7,18,31,.86); font-weight:650; }

/* ---------- CONTACT ---------- */
.contact{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; align-items:start; }
.form{
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(2,6,23,.10);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 14px 32px rgba(2,6,23,.08);
}
label{ display:block; font-weight:950; font-size:13px; margin-bottom:10px; }
input,textarea,select{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(2,6,23,.12);
  background: rgba(255,255,255,.88);
  outline:none;
}
input:focus,textarea:focus,select:focus{
  border-color: rgba(31,111,134,.35);
  box-shadow: 0 0 0 4px rgba(31,111,134,.12);
}
.form-alert{ margin-top:10px; font-weight:950; }

.info{ display:grid; gap:12px; }
.info__box{
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(2,6,23,.10);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 14px 32px rgba(2,6,23,.08);
}
.info__links{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.mapfake{
  margin-top:10px;
  height:140px;
  border-radius:16px;
  border:1px dashed rgba(2,6,23,.18);
  background: rgba(255,255,255,.40);
  display:flex; align-items:center; justify-content:center;
  color: rgba(7,18,31,.55);
  font-weight:950;
}

/* ---------- FOOTER ---------- */
.footer{
  padding:20px 0;
  border-top: 1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.48);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.footbrand{ display:flex; align-items:center; gap:10px; }
.footlinks{ display:flex; gap:12px; font-weight:950; }
.footlinks a:hover{ text-decoration:underline; }
.socials{ display:flex; gap:10px; }
.socials a{
  width:40px; height:40px; display:grid; place-items:center;
  border-radius:14px;
  background: rgba(255,255,255,.64);
  border:1px solid rgba(2,6,23,.12);
  box-shadow:0 10px 24px rgba(2,6,23,.10);
  font-size:18px;
  transition: transform .15s ease;
}
.socials a:hover{ transform: translateY(-2px); }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(37,211,102,.45);
  border: 1px solid rgba(255,255,255,.35);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.wa-float:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 50px rgba(37,211,102,.55);
}
.wa-icon{ font-size:18px; line-height:1; }
.wa-text{ font-size:14px; letter-spacing:.3px; }

/* ---------- LEAD MINI FORM ---------- */
.lead-mini{
  margin-top:12px;
  padding:12px;
  border-radius:16px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(2,6,23,.08);
  backdrop-filter: blur(10px);
}
.lead-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.lead-item{ display:grid; gap:6px; font-size:12.5px; font-weight:950; opacity:.92; }
.lead-item span{ opacity:.78; font-weight:950; }
.lead-full{ grid-column: 1 / -1; }
.lead-actions{ margin-top:10px; display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.lead-btn{
  appearance:none; border:0; cursor:pointer;
  height:46px; padding:0 16px;
  border-radius:14px;
  font-weight:950;
  color:#0b4f6c;
  background: linear-gradient(180deg, #e9fbff, #c9f2fb);
  box-shadow: 0 10px 26px rgba(0,150,180,.28);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.lead-btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 34px rgba(0,150,180,.38); }
.lead-btn[aria-disabled="true"]{ opacity:.55; cursor:not-allowed; box-shadow:none; transform:none; }
.lead-link{ font-weight:950; opacity:.85; padding:10px 4px; border-bottom:1px dashed rgba(2,6,23,.18); }
.lead-link:hover{ opacity:1; }
.lead-privacy{ margin:8px 0 0; font-size:12px; opacity:.82; }
.lead-help{ margin:10px 0 0; font-size:14px; opacity:.90; line-height:1.35; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px){
  .hero__grid{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr 1fr; }
  .gallery{ grid-template-columns:1fr 1fr; }
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .why-stats{ grid-template-columns:1fr; }
  .trust-wrap{ grid-template-columns: 1fr 1fr; }
  .contact{ grid-template-columns:1fr; }
}
@media (max-width: 560px){
  .wrap{ width: min(1100px, calc(100% - 24px)); }
  .cards{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr; }

  /* Header bar hissi (mobilde logo yazısı çok yer kaplamasın) */
  .header__inner{ padding:10px 0; }
  .brand{ gap:8px; }
  .brand__mark{ width:34px; height:34px; border-radius:14px; }
  .brand__name{ font-size:14px; letter-spacing:.4px; }
  .brand__tag{ display:none !important; }
  .nav{ gap:6px; }
  .nav a{ padding:8px 9px; font-size:14px; }

  /* WhatsApp balonu: sadece ikon */
  .wa-text{ display:none; }
  .wa-float{ padding:14px; border-radius:50%; }
}

/* =========================================================
   OKANDE — HEADER/PROJECTS PATCH (2026-01)
   - Topbar kaldır
   - Header modern bar
   - Proje kartları label + CTA
   ========================================================= */

/* --- 1) ÜST MAVİ TOPBAR KAPAT (mobilde kötü) --- */
.topbar, .utilitybar, .top-strip, .upperbar, .mini-topbar{
  display:none !important;
  height:0 !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
}

/* --- 2) HEADER: daha kompakt, modern --- */
.header, header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Header iç boşluklarını toparla (class bağımsız tolerans) */
header .container, .header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* --- 3) LOGO ALANI: tagline gitsin, ikon büyüsün --- */
.brand .tagline,
.brand small,
.brand .subtitle,
.logo-area .tagline,
.logo-area small{
  display:none !important;
}

.brand, .logo-area, .site-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}

/* logo ikon / görsel */
.brand img, .logo-area img, .site-brand img, .brand .logo, .logo-area .logo{
  width: 54px !important;
  height: 54px !important;
  object-fit: contain;
  border-radius: 14px;
}

/* marka yazısı */
.brand .title, .logo-area .title, .site-brand .title,
.brand b, .logo-area b{
  font-weight: 900;
  letter-spacing: .2px;
}

/* --- 4) HEADER İLETİŞİM CHIP'LERİ (telefon/mail/ig/whatsapp) --- */
.header .contact-chips,
header .contact-chips{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.contact-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.contact-chip .ic{
  font-size: 16px;
  line-height: 1;
  opacity: .9;
}

/* Menü + teklif butonu hizası */
nav ul, .nav ul{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a, nav a{
  font-weight: 800;
}

/* --- 5) "En çok talep edilen..." başlığı büyüsün/ortalansın --- */
.section .section-subtitle,
.section .subtitle,
.section-subtitle,
.subtitle{
  text-align:center !important;
  font-weight: 900 !important;
  font-size: clamp(16px, 2.2vw, 20px) !important;
  opacity: .9;
  margin-top: 6px;
}

/* --- 6) PROJE KARTLARI: yazı resmin üstüne binmesin + CTA --- */
.project-card, .proj-card, .portfolio-card, .work-card, .proje-card{
  position: relative;
  overflow:hidden;
}
.project-card .label,
.proj-card .label,
.portfolio-card .label,
.work-card .label,
.proje-card .label,
.project-card .overlay,
.proj-card .overlay,
.portfolio-card .overlay,
.work-card .overlay,
.proje-card .overlay{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  padding:12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(2,6,23,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.project-card .overlay .cta,
.proj-card .overlay .cta,
.portfolio-card .overlay .cta,
.work-card .overlay .cta,
.proje-card .overlay .cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.12);
  background: rgba(255,255,255,.85);
  font-weight: 900;
  white-space: nowrap;
}

/* Kart tıklanabilir hissi */
.project-card, .proj-card, .portfolio-card, .work-card, .proje-card{
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.project-card:hover, .proj-card:hover, .portfolio-card:hover, .work-card:hover, .proje-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
}

/* --- 7) Mobil düzen: header daha iyi --- */
@media (max-width: 900px){
  header .container, .header .container{
    gap:10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .brand img, .logo-area img, .site-brand img{
    width: 48px !important;
    height: 48px !important;
  }
  nav ul, .nav ul{
    gap:12px;
  }
  .contact-chip{
    padding:9px 10px;
  }
}
@media (max-width: 600px){
  /* Mobilde menü + chipler taşarsa alt satıra */
  header .container, .header .container{
    flex-wrap: wrap;
  }
  .brand, .logo-area, .site-brand{
    flex: 1 1 200px;
  }
  .contact-chips{
    width:100%;
    justify-content:flex-start;
  }
}

/* =========================================================
   OKANDE — FIX PACK v2
   - Header çakışma/taşma düzeltme
   - Logo görünürlük
   - Kart kontrast + kenar belirginlik
   ========================================================= */

/* Üst şeritleri kapat */
.topbar, .utilitybar, .top-strip, .upperbar, .mini-topbar{
  display:none !important;
  height:0 !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
}

/* Header genel */
.header, header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(2,6,23,.08);
}

/* container hizalama */
header .container, .header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 12px 16px;
  flex-wrap: wrap;
}

/* Marka alanı */
.brand, .logo-area, .site-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
  flex: 1 1 220px;
}
.brand .tagline, .logo-area .tagline,
.brand small, .logo-area small{
  display:none !important;
}
.brand img, .logo-area img, .site-brand img{
  width: 56px !important;
  height: 56px !important;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(2,6,23,.10);
}

/* Eski header iletişim bloklarını gizle (çakışma yapanlar) */
.header .contact, .header .contacts, .header .top-contacts,
.header .phone, .header .email, .header .social,
header .contact, header .contacts, header .top-contacts,
header .phone, header .email, header .social{
  display:none !important;
}

/* Yeni chip alanı */
.contact-chips{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: wrap;
  justify-content:flex-start;
  width: 100%;
  order: 2;
}
.contact-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.12);
  background: rgba(255,255,255,.80);
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.contact-chip .ic{
  display:inline-flex;
  width: 18px;
  height: 18px;
  align-items:center;
  justify-content:center;
  opacity:.9;
}

/* Nav sağa, taşma olmasın */
nav, .nav{
  order: 3;
  flex: 1 1 320px;
}
nav ul, .nav ul{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
  flex-wrap: wrap;
}
nav a, .nav a{ font-weight: 900; }

/* Başlık: En çok talep edilen... */
.section-subtitle, .subtitle{
  text-align:center !important;
  font-weight: 900 !important;
  font-size: clamp(16px, 2.4vw, 22px) !important;
  opacity: .92;
}

/* Kart kontrast (bembeyaz değil, daha “premium” ama belirgin) */
.card, .feature, .service-card, .cards .card{
  border: 1px solid rgba(2,6,23,.12) !important;
  box-shadow: 0 18px 40px rgba(2,6,23,.08) !important;
  background: rgba(255,255,255,.78) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Proje kart overlay: yazı binmesin */
.project-card .overlay, .proj-card .overlay, .portfolio-card .overlay, .work-card .overlay, .proje-card .overlay{
  left:14px; right:14px; bottom:14px;
  padding:12px;
  border-radius: 14px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(2,6,23,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.project-card .overlay .cta, .proj-card .overlay .cta, .portfolio-card .overlay .cta, .work-card .overlay .cta, .proje-card .overlay .cta{
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.14);
  background: rgba(255,255,255,.86);
  font-weight: 900;
  white-space: nowrap;
}

/* Mobil: chip’leri sadeleştir */
@media (max-width: 600px){
  .contact-chip span:last-child{ font-size: 13px; }
  /* mobilde IG handle uzun gelirse gizle */
  .contact-chip[href*="instagram"] span:last-child{ display:none; }
  /* mail uzun gelirse kısalt */
  .contact-chip[href^="mailto:"] span:last-child{ display:none; }
}

/* =========================================================
   OKANDE — HEADER CLEAN v3
   - Üstteki saçmalığı bitirir
   - Tagline kesin görünmez
   - Header tek satır: logo solda, nav sağda
   ========================================================= */

.topbar, .utilitybar, .top-strip, .upperbar, .mini-topbar{
  display:none !important;
}

.header, header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(2,6,23,.10);
}

header .container, .header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 12px 16px;
  flex-wrap: nowrap;
}

/* Tagline'i nerede olursa olsun header içinde öldür */
header .tagline,
header small,
header .subtitle,
header .brand p,
header .brand .desc,
header .logo-area p,
header .logo-area .desc{
  display:none !important;
}

/* Logo boyut */
.brand img, .logo-area img, .site-brand img{
  width: 56px !important;
  height: 56px !important;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(2,6,23,.10);
}

/* Bizim enjekte ettiğimiz contact-chips artık yok ama olur da kalırsa: */
.contact-chips{ display:none !important; }

/* Mobilde satır taşarsa wrap serbest */
@media (max-width: 700px){
  header .container, .header .container{ flex-wrap: wrap; }
  nav, .nav{ width:100%; }
  nav ul, .nav ul{ justify-content:flex-start; }
}

/* ===== OKANDE — FORCE LOGO BG ===== */
.brand .logo, .logo-area .logo, .site-brand .logo{
  background-image: url("assets/img/logo-v2.png") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* ===== OKANDE — LOGO ONLY HEADER ===== */
/* Marka yazısı (OKANDE HAVUZ) görünmesin; sadece ikon/logo */
header .brand .title,
header .brand b,
header .logo-area .title,
header .logo-area b,
header .site-brand .title,
header .site-brand b,
header .brand h1, header .brand h2, header .brand span,
header .logo-area h1, header .logo-area h2, header .logo-area span{
  display:none !important;
}

/* Logo kutusu daha premium */
.brand img, .logo-area img, .site-brand img{
  width: 60px !important;
  height: 60px !important;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(2,6,23,.10);
}

/* Eğer tema logoyu background-image ile basıyorsa zorla */
.brand .logo, .logo-area .logo, .site-brand .logo{
  background-image: url("assets/img/logo-v2.png") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* =========================================================
   OKANDE — BRAND MARK LOGO ONLY FINAL
   Header’da sadece logo kalsın (brand_name + brand_tag tamamen gitsin)
   brand_mark arka planı -> assets/img/logo-v2.png
   ========================================================= */

/* üst mini bar varsa kapat */
.topbar{ display:none !important; }

/* yazıları kapat */
.brand_text,
.brand_name,
.brand_tag{
  display:none !important;
  visibility:hidden !important;
  height:0 !important;
  margin:0 !important;
  padding:0 !important;
}

/* logo alanını bizim logoya çevir */
.brand_mark{
  width: 60px !important;
  height: 60px !important;
  border-radius: 16px !important;
  background: url("assets/img/logo-v2.png") center / contain no-repeat !important;
  box-shadow: 0 10px 26px rgba(2,6,23,.10) !important;
  border: 1px solid rgba(2,6,23,.10) !important;
}

/* tema pseudo element ile ikon basıyorsa öldür */
.brand_mark::before,
.brand_mark::after{
  content: "" !important;
  display:none !important;
}

/* Header hizası düzgün kalsın */
header .wrap_header_inner{
  align-items:center !important;
}
/* === BRAND TEXT KILL (FINAL) === */
.brand_name,
.brand_tag{
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Logo sadece brand_mark */
.brand_mark{
  width: 60px !important;
  height: 60px !important;
  background: url("/assets/img/logo-v2.png") center / contain no-repeat !important;
  border-radius: 16px;
}

/* Tema ikon basıyorsa öldür */
.brand_mark::before,
.brand_mark::after{
  display: none !important;
  content: none !important;
}

/* ===== FINAL BRAND CLEAN ===== */
.brand_name, .brand_tag { display:none !important; visibility:hidden !important; height:0 !important; margin:0 !important; padding:0 !important; }
.brand_text { display:none !important; }

/* sadece logo */
.brand_mark{
  width:60px !important; height:60px !important;
  background:url("/assets/img/logo-v2.png") center/contain no-repeat !important;
  border-radius:16px !important;
  border:1px solid rgba(2,6,23,.10) !important;
  box-shadow:0 10px 26px rgba(2,6,23,.10) !important;
}
.brand_mark::before,.brand_mark::after{ content:none !important; display:none !important; }

/* ================================
   FLOATING SOCIAL BUTTONS
   ================================ */
.floating-social{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-btn{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-btn:hover{
  transform: scale(1.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
}

/* WhatsApp */
.social-btn.whatsapp{
  background: #25D366;
}

/* Instagram */
.social-btn.instagram{
  background: linear-gradient(45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}

/* ================================
   HEADER LOGO (REAL IMAGE)
   ================================ */
.brand_mark{
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand_mark img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ================================
   LOGO OVERRIDE (kill ::after icon)
   ================================ */
.brand_mark{
  background: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.brand_mark::before,
.brand_mark::after{
  content: none !important;
  display: none !important;
}

.brand_mark img{
  width: 52px !important;
  height: 52px !important;
  object-fit: contain !important;
  display: block !important;
}

/* ================================
   HEADER LOGO FIX (assets/img/logo-v2.png)
   - kill .brand_mark::before/::after (damla)
   ================================ */
.brand_mark{
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.brand_mark::before,
.brand_mark::after{
  content: none !important;
  display: none !important;
}

.brand_mark img{
  width: 52px !important;
  height: 52px !important;
  object-fit: contain !important;
  display: block !important;
}

/* =========================================================
   FINAL LOGO OVERRIDE (NUKE ALL OLD LOGO/DROP STYLES)
   - .brand_mark üstündeki tüm background-image / gradient / shadow / pseudo öğeleri öldürür
   - sadece <img.brand_logo_img> görünür
   ========================================================= */
.brand_mark{
  width: 52px !important;
  height: 52px !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.brand_mark::before,
.brand_mark::after{
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

.brand_mark *{
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.brand_logo_img{
  width: 52px !important;
  height: 52px !important;
  display: block !important;
  object-fit: contain !important;
}

/* =========================================================
   FINAL FINAL LOGO FIX (highest specificity)
   - damla dahil her şeyi susturur
   ========================================================= */
header .brand_mark,
header .brand .brand_mark{
  width: 52px !important;
  height: 52px !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

header .brand_mark::before,
header .brand_mark::after,
header .brand .brand_mark::before,
header .brand .brand_mark::after{
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

header .brand_mark img.brand_logo_img{
  width: 52px !important;
  height: 52px !important;
  display: block !important;
  object-fit: contain !important;
}

/* =========================================================
   BRAND LOGO (REMOVE BLUE BOX COMPLETELY)
   ========================================================= */

/* mavi kutu/ikon alanı tamamen kapansın */
header .brand_mark{ 
  display: none !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* gerçek logo görseli */
header .brand_logo{
  display: block !important;
  height: 46px !important;     /* istersen 40-54 arası oynat */
  width: auto !important;
  object-fit: contain !important;
}

/* brand hizalama (logo + yazı yan yana temiz dursun) */
header a.brand{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

/* =========================================================
   HEADER BRAND — PURE IMAGE ONLY (NO BOX, NO ICON)
   ========================================================= */

/* eski ikon/kutu her neyse tamamen kapat */
.brand_mark,
.brand_mark *,
header .brand_mark,
header .brand_mark::before,
header .brand_mark::after{
  display: none !important;
  background: none !important;
  content: none !important;
}

/* brand container */
header .brand{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: none !important;
}

/* SADECE logo görseli */
header .brand_logo{
  height: 44px !important;   /* 40–48 arası oynatabilirsin */
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* yazı */
header .brand_text{
  font-weight: 700;
  letter-spacing: .4px;
}

/* =========================================================
   HEADER BRAND — PURE IMAGE ONLY (NO BOX, NO ICON)
   ========================================================= */

/* eski ikon/kutu her neyse tamamen kapat */
.brand_mark,
.brand_mark *,
header .brand_mark,
header .brand_mark::before,
header .brand_mark::after{
  display: none !important;
  background: none !important;
  content: none !important;
}

/* brand container */
header .brand{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: none !important;
}

/* SADECE logo görseli */
header .brand_logo{
  height: 44px !important;   /* 40–48 arası oynatabilirsin */
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* yazı */
header .brand_text{
  font-weight: 700;
  letter-spacing: .4px;
}

/* =========================================================
   FOOTER LOGO — BIG & CLEAN
   ========================================================= */

.footer-brand{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.footer_logo{
  height: 72px !important;   /* BURASI: büyüklük (64–96 arası oynat) */
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* footer'da eski ikon/kutu varsa öldür */
footer .brand_mark,
footer .brand_mark *,
footer .logo,
footer .logo *{
  display: none !important;
  background: none !important;
}

/* =========================================================
   SAFE LOGO PATCH (CSS ONLY) - NO MORE HTML TOUCH
   ========================================================= */

/* HEADER: logo büyüt (footer gibi) */
header .brand_logo,
header .brand img.brand_logo,
header .brand img{
  height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* Çok küçük ekranlarda header taşmasın */
@media (max-width: 700px){
  header .brand_logo,
  header .brand img.brand_logo,
  header .brand img{
    height: 56px !important;
  }
}

/* FOOTER: logo büyük + ortalı, kayma olmasın */
footer .footer_logo,
footer .footer-brand img,
footer img.footer_logo{
  height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

footer .footer-brand{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  margin: 0 auto 10px auto !important;
  text-align:center !important;
}

/* FOOTER: "Yapım • Bakım • Tadilat" gibi alt açıklamaları gizle (copyright kalır) */
footer .brand .tagline,
footer .brand .subtitle,
footer .brand small,
footer .brand p,
footer .logo-area .tagline,
footer .logo-area .subtitle,
footer .logo-area small,
footer .logo-area p,
footer .site-brand .tagline,
footer .site-brand .subtitle,
footer .site-brand small,
footer .site-brand p{
  display:none !important;
}

/* footer içindeki linkler/menü kaymasın */
footer{
  padding-top: 22px !important;
  padding-bottom: 22px !important;
}

/* ================================
   LOGO ONLY BRAND (NO TEXT, NO BOX)
   ================================ */
header a.brand{
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  background: none !important;
}

/* eski kutu/ikon/placeholder ne varsa kapat */
header .brand_mark,
header .brand_mark::before,
header .brand_mark::after,
header .brand .logo,
header .logo-area .logo,
header .site-brand .logo{
  display: none !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* brand içindeki HER türlü yazıyı gizle (yanlışlıkla kalırsa) */
header a.brand .brand_text,
header a.brand b,
header a.brand strong,
header a.brand span,
header a.brand small,
header a.brand p,
header a.brand .title,
header a.brand .subtitle,
header a.brand .tagline{
  display: none !important;
}

/* logo boyutu */
header img.brand_logo{
  height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 700px){
  header img.brand_logo{ height: 56px !important; }
}

/* ============================================
   FINAL PREMIUM CARDS — DARK BG + 4 SIDE BORDER
   ============================================ */

/* Kartların bulunduğu ana section'lar (arka planı koyulaştır) */
.section,
.section-alt,
.section.process-trust,
#hizmetler,
#projeler{
  background: linear-gradient(180deg, #e3f2f7 0%, #d4edf4 100%) !important;
}

/* GENEL KART STİLİ (hizmet / proje / form kartları) */
.card,
.service-card,
.project-card,
.feature,
.box{
  background: #ffffff !important;
  border-radius: 18px !important;

  /* 4 kenarlı GRADIENT border */
  border: 2px solid transparent !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #2fb6c4, #5cc9a7) border-box;

  box-shadow: 0 12px 34px rgba(0,0,0,.10) !important;
  transition: box-shadow .25s ease, transform .25s ease;
}

/* Hover: hafif premium dokunuş */
.card:hover,
.service-card:hover,
.project-card:hover,
.feature:hover,
.box:hover{
  box-shadow: 0 18px 46px rgba(47,182,196,.28) !important;
  transform: translateY(-3px);
}

/* ============================================
   ULTRA CLEAR CARDS — DARK BG + STRONG BORDERS
   ============================================ */

/* Arka planı bir tık daha KOYU yap */
.section,
.section-alt,
.section.process-trust,
#hizmetler,
#projeler{
  background: linear-gradient(180deg, #cfe6ef 0%, #b9dce9 100%) !important;
}

/* ANA KARTLAR */
.card,
.service-card,
.project-card,
.feature,
.box{
  background: #ffffff !important;
  border-radius: 14px !important;

  /* Daha koyu, net GRADIENT çerçeve */
  border: 3px solid transparent !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #1f8fa3, #2fb6c4, #5cc9a7) border-box;

  box-shadow: 0 14px 40px rgba(0,0,0,.18) !important;
  transition: box-shadow .25s ease, transform .25s ease;
}

/* Kart içindeki AÇIKLAMA / METİN BLOKLARI DA KUTU GİBİ DURSUN */
.card p,
.card .desc,
.card .content,
.service-card p,
.project-card p,
.feature p{
  background: rgba(47,182,196,.08);
  padding: 10px 12px;
  border-radius: 10px;
}

/* Hover = daha da belirgin */
.card:hover,
.service-card:hover,
.project-card:hover,
.feature:hover,
.box:hover{
  box-shadow: 0 22px 60px rgba(31,143,163,.45) !important;
  transform: translateY(-4px);
}

/* ============================================
   PROJECT PAGES — MINI WHATSAPP + INSTAGRAM
   ============================================ */

/* proje sayfalarında aktif olsun */
body.proje-page .mini-floats{
  position: fixed;
  right: 18px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/* mini balonlar */
body.proje-page .mini-floats a{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

body.proje-page .mini-floats a:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}

body.proje-page .mini-wa{ background:#25D366; }
body.proje-page .mini-ig{
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}
