:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;

  --line: rgba(15, 23, 42, .10);

  --primary: #1f6feb;     /* mavi ton */
  --primary-2: #0ea5e9;   /* açık mavi */
  --dark: #0b1220;
  --dark-2: #111827;

  --shadow: 0 10px 30px rgba(2, 6, 23, .10);
  --radius: 14px;

  --container: 1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font:inherit; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left: 12px;
  top: 12px;
  width:auto;
  height:auto;
  padding: 10px 12px;
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index: 9999;
}

/* Topbar */
.topbar{
  background:#f8fafc;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.topbar__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}
.topbar__left{ display:flex; gap: 8px; align-items:center; }
.icon-btn{
  width: 32px;
  height: 32px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: .2s ease;
}
.icon-btn svg{ width: 16px; height: 16px; fill: #64748b; }
.icon-btn:hover{
  border-color: rgba(31,111,235,.25);
  background: rgba(31,111,235,.06);
}
.icon-btn:hover svg{ fill: var(--primary); }

.topbar__right{
  display:flex;
  align-items:center;
  gap: 16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.topbar__item{
  display:flex;
  align-items:center;
  gap: 8px;
  white-space: nowrap;
}
.topbar__item svg{ width: 16px; height: 16px; fill:#64748b; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}
.header.is-sticky{
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(2, 6, 23, .06);
}
.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 0px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
}
.brand__logo{
  width: 150px;
  
  object-fit:contain;
    
    padding-top: 10px;
    padding-bottom: 10px;
}
.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand__text strong{
  font-size: 16px;
  letter-spacing:.2px;
}
.brand__text small{
  font-size: 12px;
  color: var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap: 20px;
}
.nav__list{
  display:flex;
  align-items:center;
  gap: 22px;
}
.nav__link{
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0b1220;
  opacity: .85;
  padding: 10px 2px;
  position:relative;
}
.nav__link:hover{ opacity: 1; color: var(--primary); }
.nav__link.is-active{
  opacity: 1;
  color: var(--primary);
}
.nav__link.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom: 2px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.nav__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}
.search-btn{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:#fff;
  cursor:pointer;
  transition:.2s ease;
}
.search-btn svg{ width: 18px; height: 18px; fill:#334155; }
.search-btn:hover{
  border-color: rgba(31,111,235,.35);
  box-shadow: 0 10px 20px rgba(31,111,235,.12);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor:pointer;
  transition:.2s ease;
  font-weight: 600;
}
.btn--sm{ padding: 10px 12px; border-radius: 11px; font-size: 13px; }
.btn--primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 14px 30px rgba(31,111,235,.22);
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--outline{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn--outline:hover{
  background: rgba(255,255,255,.08);
}
.btn--ghost{
  background: #fff;
  border-color: var(--line);
  color: #0b1220;
}
.btn--ghost:hover{
  border-color: rgba(31,111,235,.35);
}

/* Nav toggle (mobile) */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width: 18px;
  height: 2px;
  background:#0b1220;
  margin: 4px auto;
  border-radius: 999px;
}

/* Search drawer */
.search-drawer{
  border-top: 1px solid var(--line);
  background:#fff;
  max-height: 0;
  overflow:hidden;
  transition: max-height .25s ease;
}
.search-drawer.is-open{
  max-height: 90px;
}
.search-drawer__row{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 0;
}
.search-drawer__input{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline:none;
}
.search-drawer__input:focus{
  border-color: rgba(31,111,235,.45);
  box-shadow: 0 0 0 4px rgba(31,111,235,.10);
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

/* HERO */
.hero{
  position:relative;
  min-height: 560px;
  height: calc(70vh);
  max-height: 760px;
  overflow:hidden;
  background: #0b1220;
}
.hero__track{
  height: 100%;
  display:flex;
  will-change: transform;
  transition: transform .55s ease;
}
.hero__slide{
  position:relative;
  min-width:100%;
  height: 100%;
  background: #0b1220;
  background-size: cover;
  background-position: center;
}
.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(11,18,32,.78) 0%, rgba(11,18,32,.35) 55%, rgba(11,18,32,.10) 100%);
}
.hero__content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 12px;
  padding: 40px 0;
  color:#fff;
  max-width: 760px;
}
.hero__kicker{
  margin:0;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.hero__title{
  margin:0;
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.05;
  letter-spacing: -0.02em;
}
.hero__text{
  margin:0;
  font-size: 16px;
  line-height:1.65;
  color: rgba(255,255,255,.85);
  max-width: 60ch;
}
.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 10px;
}

/* hero arrows + dots */
.hero__arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:.2s ease;
}
.hero__arrow svg{ width: 22px; height: 22px; fill:#fff; }
.hero__arrow:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
}
.hero__arrow--prev{ left: 18px; }
.hero__arrow--next{ right: 18px; }

.hero__dots{
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display:flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(11,18,32,.35);
  border: 1px solid rgba(255,255,255,.18);
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor:pointer;
}
.dot.is-active{
  background: #fff;
}













/* ===== Slider (Hero) UX iyileştirmeleri ===== */
.hero,
.hero *{
  -webkit-user-select: none;
  user-select: none;
}

.hero{
  touch-action: pan-y;         /* dikey kaydırma serbest, yatay sürükleme JS ile */
}

.hero__track{
  cursor: grab;
}

.hero.is-dragging .hero__track{
  cursor: grabbing;
}

/* Görsel sürükleme gölgesini engelle (özellikle desktop) */
.hero img{
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}











/* Features */
.features{ padding: 25px 0 10px; }
.feature-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 26px;
  align-items:start;
}
.feature-card{
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .04);
}
.feature-card__media{
  border-radius: 14px;
  overflow:hidden;
  margin-bottom: 14px;
}
.media-collage{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.media-collage img{
  width: 100%;
  height: 78px;
  object-fit: cover;
}
.media-wide img{
  width: 100%;
  height: 52.5px;
  object-fit: cover;
}
.feature-card__title{
  margin: 0;
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.feature-card__subtitle{
  margin: 8px 0 12px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.feature-card__text{
  margin: 0 0 12px;
  color: #475569;
  line-height: 1.75;
}
.feature-card__link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}
.feature-card__link:hover{ text-decoration: underline; }

.feature-card--consult{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: rgba(31,111,235,.18);
}
.feature-card__cta{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

/* Featured (dark section) */
.featured{
  margin-top: 10px;
  padding: 20px 0;
  background: linear-gradient(180deg, var(--dark-2), #0b1220);
  color:#fff;
}
.featured__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.section-title{
  margin:0;
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mini-btn{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}

.featured__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-card{
  position:relative;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.work-card img{
  width:100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(1.05);
  transform: scale(1.02);
  transition: transform .25s ease;
}
.work-card:hover img{ transform: scale(1.06); }
.work-card__cap{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(11,18,32,.85) 70%);
}
.work-card__cap strong{ display:block; font-size: 15px; }
.work-card__cap span{ display:block; font-size: 13px; color: rgba(255,255,255,.75); margin-top: 2px; }

/* Footer */
.footer{
  background:#0b1220;
  color: rgba(255,255,255,.88);
  padding-top: 20px;
}
.footer__row{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 24px;
  padding-bottom: 26px;
}
.footer__brand p{
  margin: 12px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}
.footer__logo img{
  width: 100% !important;
  height: auto !important;
  max-width: none !important;  /* global img max-width varsa etkisiz */
  display: block;
  object-fit: contain;
}
.footer__col h3{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer__col a{
  color: rgba(255,255,255,.72);
}
.footer__col a:hover{ color:#fff; text-decoration: underline; }
.footer__col li{ padding: 6px 0; }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 14px 0;
}
.footer__bottomRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.to-top{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

/* noscript */
.noscript{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 9999;
}

/* Responsive */
@media (max-width: 980px){
  .topbar__row{ flex-direction: column; align-items: flex-start; }
  .topbar__right{ justify-content:flex-start; }

  .nav-toggle{ display:block; }
  .nav{
    position: fixed;
    inset: 0 0 auto 0;
    top: 64px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(2, 6, 23, .14);
    padding: 14px 20px 18px;
    transform: translateY(-120%);
    transition: transform .25s ease;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  body.nav-open .nav{ transform: translateY(0); }

  .nav__list{
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav__link{ padding: 12px 10px; border-radius: 12px; }
  .nav__link:hover{ background: rgba(31,111,235,.06); }

  .nav__actions{
    justify-content: space-between;
  }

  .hero__arrow{ display:none; }

  .feature-grid{
    grid-template-columns: 1fr;
  }
  .media-collage img{ height: 92px; }

  .featured__grid{
    grid-template-columns: 1fr;
  }
  .work-card img{ height: 240px; }

  .footer__row{
    grid-template-columns: 1fr;
  }
}








/* =========================
   PROJECTS PAGE
========================= */

.page-hero{
  position: relative;
  padding: 44px 0;
  background: #f3f6fb;
  border-bottom: 1px solid rgba(15,23,42,.08);
  overflow: hidden;
}

.page-hero__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.page-hero__title{
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: .2px;
  color: #0b1220;
}

.breadcrumb{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(15,23,42,.7);
  font-size: 14px;
}
.breadcrumb a{
  color: rgba(15,23,42,.75);
  text-decoration: none;
}
.breadcrumb a:hover{ text-decoration: underline; }

/* Screenshot benzeri hafif blueprint arka plan */
.page-hero--projects::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 320px at 30% 40%, rgba(37,99,235,.12), transparent 60%),
    radial-gradient(900px 260px at 70% 30%, rgba(14,165,233,.10), transparent 55%),
    url("assests/logo.jpg");
  background-size: cover;
  background-position: center;
  opacity: .55;
  transform: scale(1.02);
  pointer-events:none;
}
.page-hero--projects::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.75));
  pointer-events:none;
}
.page-hero > .container{ position: relative; z-index: 1; }

.projects{ padding: 34px 0 70px; }

.projects-filter{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  margin: 8px 0 28px;
  color: rgba(15,23,42,.75);
}

.projects-filter__icon{
  display:inline-flex;
  width: 34px;
  height: 34px;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  background: rgba(37,99,235,.08);
  color: #2563eb;
  font-weight: 700;
}

.projects-filter__links{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

.pf-link{
  appearance:none;
  border:0;
  background: transparent;
  color: rgba(15,23,42,.72);
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 6px 2px;
  cursor:pointer;
}
.pf-link:hover{ color:#2563eb; }
.pf-link.is-active{ color:#2563eb; }
.pf-sep{
  opacity: .35;
  font-size: 13px;
}

/* grid */
.projects-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.project-card{
  display:block;
  text-decoration:none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.project-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(2,6,23,.10);
  border-color: rgba(37,99,235,.25);
}

.project-card__img{
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.project-card__title{
  padding: 14px 14px 16px;
  text-align:center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(15,23,42,.92);
}

/* filter hide animation */
.project-card.is-hidden{
  display:none;
}

@media (max-width: 1100px){
  .projects-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px){
  .projects-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero__row{ flex-direction: column; align-items:flex-start; }
}

@media (max-width: 520px){
  .projects-grid{ grid-template-columns: 1fr; }
}







.footer-logo{
  width: 100px;   /* 100-180 arası deneyiniz */
  height: auto;
  max-width: 100%;
} 


/* Footer logo altı yazıları sağa al */
.footer__brand{
  display:flex;
  align-items:flex-end;
  gap:12px;
}

.footer__brand > div{
  text-align: right;
}





/* =========================
   ABOUT PAGE (Hakkımızda)
========================= */
.page-hero{
  position: relative;
  min-height: 170px;
  display: flex;
  align-items: center;
  background-image: var(--pageHeroBg);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.page-hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.75));
    
  max-height: 50px;
}
.page-hero__inner{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
}
.page-hero__title{
  margin:0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .2px;
}
.page-hero__crumb{
  color: rgba(10,20,35,.7);
  font-size: 14px;
  white-space: nowrap;
}
.page-hero__crumb span{ opacity:.6; padding:0 6px; }

.about{ padding: 54px 0; }
.about__head{
  text-align:center;
  max-width: 900px;
  margin: 0 auto 34px;
}
.about__title{
  margin:0;
  letter-spacing: .14em;
  font-size: 22px;
}
.about__line{
  width: 70px;
  height: 3px;
  border-radius: 99px;
  margin: 14px auto 12px;
  background: #1f6feb; /* mavi vurgu */
}
.about__lead{
  margin:0;
  color: rgba(10,20,35,.75);
  line-height: 1.6;
}

.about__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.about__circle{
  width: min(520px, 92vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow:hidden;
  margin: 0 auto;
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
  border: 10px solid rgba(31,111,235,.10);
  background: #fff;
}
.about__circle img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.about-item{
  display:flex;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(6px);
}
.about-item + .about-item{ margin-top: 12px; }

.about-item__icon{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(31,111,235,.10);
  color: #1f6feb;
  flex: 0 0 54px;
}
.about-item__icon svg{ width: 26px; height: 26px; }

.about-item__body h3{
  margin: 2px 0 6px;
  font-size: 16px;
}
.about-item__body p{
  margin:0;
  color: rgba(10,20,35,.75);
  line-height: 1.6;
  font-size: 14px;
}

.about__cta{
  display:flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px){
  .about__grid{ grid-template-columns: 1fr; }
  .page-hero__inner{ flex-direction: column; align-items:flex-start; }
}

.project-card.is-hidden { display: none !important; }































/* =========================
   CONTACT PAGE (mavi ton)
========================= */

/* Banner */

.page-hero__bg{
  position:absolute; inset:0;
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
  opacity: .16;                 /* görsel “ince yatay dikdörtgen” hissi */
  filter: saturate(.9) contrast(1.05);
}
.page-hero__bg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.85), rgba(255,255,255,.75));
}
.page-hero__row{
  position: relative;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 44px 0;
}


.page-hero__crumb a{
  color: inherit;
  text-decoration: none;
}
.page-hero__crumb a:hover{ text-decoration: underline; }

/* Contact layout */
.contact{
  padding: 40px 0 70px;
}
.contact__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start;
}
@media (max-width: 980px){
  .contact__grid{ grid-template-columns: 1fr; }
  .page-hero__row{ flex-direction: column; align-items: flex-start; }
  .page-hero__crumb{ white-space: normal; }
}

.contact__kicker{
  display:flex;
  align-items:center;
  gap: 12px;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 12px;
  color: rgba(15, 23, 42, .65);
}
.contact__kickerLine{
  width: 22px;
  height: 2px;
  background: rgba(20, 110, 255, .9);
  border-radius: 999px;
}
.contact__title{
  margin: 0 0 12px;
  font-size: clamp(34px, 4.1vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.contact__lead{
  margin: 0 0 18px;
  color: rgba(15, 23, 42, .72);
  font-size: 16px;
  line-height: 1.7;
  max-width: 62ch;
}

.contact__media{
  margin: 18px 0 18px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
}
.contact__media img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display:block;
}

.contact__info{
  display:grid;
  gap: 12px;
  margin-top: 12px;
}

.cinfo{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.cinfo__icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(20, 110, 255, .10);
  border: 1px solid rgba(20, 110, 255, .18);
  flex: 0 0 auto;
}
.cinfo__icon svg{
  width: 20px; height: 20px;
  fill: rgba(20, 110, 255, .95);
}
.cinfo__body strong{
  display:block;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}
.cinfo__body span,
.cinfo__body a{
  color: rgba(15, 23, 42, .72);
  text-decoration: none;
}
.cinfo__body a:hover{ text-decoration: underline; }

/* Form card */
.contact__card{
  background: #f6f8fb;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(2, 6, 23, .06);
}
.contact__cardTitle{
  margin: 0 0 18px;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.cform__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 14px;
}
@media (max-width: 560px){
  .cform__grid{ grid-template-columns: 1fr; }
}
.cform__field{
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.cform__field--full{ grid-column: 1 / -1; }
.cform__field span{
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, .70);
}
.cform__field input,
.cform__field textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, .18);
  background: #fff;
  padding: 12px 12px;
  font-size: 15px;
  outline: none;
}
.cform__field input:focus,
.cform__field textarea:focus{
  border-color: rgba(20, 110, 255, .55);
  box-shadow: 0 0 0 4px rgba(20, 110, 255, .12);
}
.cform__submit{
  margin-top: 14px;
  width: fit-content;
  padding-right: 18px;
}
.cform__note{
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(15, 23, 42, .60);
}



@media (max-width: 600px){
  .footer__logo{ width: 110px; }
}























/* =========================
   SERVICES PAGE (hizmetler.html)
   - mavi tonlar
   - kartlar: ekran görüntüsüne benzer
========================= */

:root{
  --im-blue-900:#0a1324;
  --im-blue-800:#0b1b33;
  --im-blue-700:#102a4d;
  --im-blue-600:#163b6b;
  --im-blue-500:#1e4f8f;
  --im-blue-400:#2f6fbf;
  --im-blue-100:#eaf3ff;
  --im-line: rgba(10,19,36,.12);
}

.services{
  padding: clamp(34px, 4vw, 10px) 0;
  background: #fff;
}

.services__head{
  max-width: 860px;
  margin: 0 0 22px;
}

.services__kicker{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.08em;
  color: var(--im-blue-600);
  margin: 0 0 10px;
}

.services__kickerLine{
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--im-blue-400), transparent);
  border-radius: 999px;
}

.services__title{
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  color: var(--im-blue-900);
}

.services__lead{
  margin: 0;
  color: rgba(10,19,36,.72);
  font-size: 16px;
  line-height: 1.65;
}

.services-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

@media (max-width: 820px){
  .services-grid{ grid-template-columns: 1fr; }
}

.service-card{
  position: relative;
  display:flex;
  align-items:center;
  gap: 16px;
  padding: 22px 22px;
  border: 1px solid var(--im-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(10,19,36,.08);
  overflow:hidden;
}

.service-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 18px;
  background: radial-gradient(1200px 200px at 25% 0%, rgba(47,111,191,.16), transparent 60%);
  pointer-events:none;
}

.service-card__num{
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  background: var(--im-blue-100);
  color: var(--im-blue-600);
  font-weight: 800;
  letter-spacing: .02em;
}

.service-card__body{
  min-width: 0;
  flex: 1 1 auto;
}

.service-card__title{
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.15;
  color: var(--im-blue-900);
}

.service-card__text{
  margin: 0;
  color: rgba(10,19,36,.72);
  line-height: 1.6;
}

.service-card__icon{
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: rgba(47,111,191,.10);
  border: 1px solid rgba(47,111,191,.20);
}

.service-card__icon svg{
  width: 28px;
  height: 28px;
  fill: rgba(10,19,36,.55);
}

/* CTA */
.services-cta{
  margin-top: 24px;
}

.services-cta__box{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid var(--im-line);
  background: linear-gradient(90deg, rgba(47,111,191,.10), rgba(47,111,191,.03));
}

.services-cta__text h3{
  margin: 0 0 6px;
  color: var(--im-blue-900);
  font-size: 18px;
}

.services-cta__text p{
  margin: 0;
  color: rgba(10,19,36,.72);
  line-height: 1.55;
}

.services-cta__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 820px){
  .services-cta__box{ flex-direction: column; align-items: flex-start; }
}

/* Footer logo (normal gözükecek şekilde büyütme) */
.footer__logo img{
  width: 120px;
  height: auto;
  display: block;
  object-fit: contain;
}















/* =========================
   Project Detail Page
========================= */

.pdetail{
  padding: clamp(28px, 4vw, 56px) 0;
  background: #fff;
}

.pdetail__grid{
  display: grid;
  grid-template-columns: 1.55fr .9fr;
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.pdetail__quote{
  margin: 0 0 18px;
  padding: 18px 18px;
  border-left: 4px solid rgba(33, 125, 255, .55);
  background: linear-gradient(90deg, rgba(33,125,255,.08), rgba(33,125,255,0));
  border-radius: 12px;
  font-size: clamp(16px, 2vw, 18px);
  color: #1b2a3a;
}

.pdetail__text p{
  margin: 0 0 12px;
  color: #334155;
  line-height: 1.7;
}

.pdetail__gallery{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pdetail__img{
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: 0 10px 24px rgba(2, 10, 28, .10);
}

.pdetail__img img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.pdetail__img:hover img{ transform: scale(1.05); }

.pdetail__cta{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pdetail__meta .pmeta{
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(2, 10, 28, .10);
  border: 1px solid rgba(15, 23, 42, .08);
  overflow: hidden;
}

.pmeta__item{
  padding: 14px 16px;
  display: grid;
  gap: 6px;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.pmeta__item:last-child{ border-bottom: 0; }

.pmeta__label{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
}

.pmeta__value{
  color: #0f172a;
  font-weight: 700;
}

.pmeta-note{
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(33,125,255,.07);
  color: #1f2b3a;
}

/* =========================
   Other Projects Cards
========================= */
.pnext{
  padding: clamp(28px, 4vw, 56px) 0;
  background: linear-gradient(180deg, rgba(2,6,23,.02), rgba(2,6,23,0));
}

.pnext__head{
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-bottom: 16px;
}

.pnext__sub{
  margin: 0;
  color: #64748b;
}

.pnext__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pnext-card{
  display: grid;
  grid-template-rows: 160px auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 12px 28px rgba(2, 10, 28, .10);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}

.pnext-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(2, 10, 28, .14);
}

.pnext-card__img{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.pnext-card__img::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(2,6,23,0), rgba(2,6,23,.25));
}

.pnext-card__body{
  padding: 12px 14px 14px;
  display: grid;
  gap: 6px;
}

.pnext-card__body strong{
  color: #0f172a;
}

.pnext-card__body span{
  color: #64748b;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px){
  .pdetail__grid{ grid-template-columns: 1fr; }
  .pnext__grid{ grid-template-columns: repeat(2, 1fr); }
  .pdetail__img img{ height: 200px; }
}
@media (max-width: 520px){
  .pnext__grid{ grid-template-columns: 1fr; }
  .pdetail__gallery{ grid-template-columns: 1fr; }
  .pdetail__img img{ height: 220px; }
}








/* =========================
   Project Lightbox
========================= */
.plb[hidden]{ display:none !important; }

.plb{
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 23, .78);
  display: grid;
  place-items: center;
  z-index: 9999;
  padding: 24px;
}

.plb__panel{
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
}

.plb__img{
  display: block;
  max-width: 100%;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  background: #fff;
}

.plb__close{
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.plb__close svg{
  width: 18px;
  height: 18px;
}

@media (max-width: 520px){
  .plb{ padding: 14px; }
  .plb__close{ top: -10px; right: -10px; width: 40px; height: 40px; }
}











/* =========================================
   Projects Filter – Grid geçiş animasyonu
========================================= */
.projects-grid{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease;
  will-change: opacity, transform;
}

.projects-grid.is-switching{
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* Hareketi sevmeyen kullanıcılar için */
@media (prefers-reduced-motion: reduce){
  .projects-grid{ transition: none; }
}








/* ============================
   MOBİL: TAM EKRAN MENÜ + TOPBAR
============================ */
@media (max-width: 900px){

  /* Mobilde topbar varsayılan gizli */
  .topbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1012;

    opacity: 0;
    transform: translateY(-110%);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  body.nav-open .topbar{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Header üstte kalsın */
  .header{
    position: sticky;
    top: 0;
    z-index: 1011;
    background: #fff;
  }
  .nav-toggle{
    position: relative;
    z-index: 1013; /* buton her zaman tıklanabilir */
  }

  /* NAV = tam ekran overlay */
  #siteNav{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: #fff;
    z-index: 1010;

    /* Kapalı */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;

    /* içerik padding (topbar + header yüksekliğine göre JS set edecek) */
    padding: calc(var(--m-topbar-h, 0px) + var(--m-header-h, 72px) + 18px) 18px 22px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Açık */
  body.nav-open #siteNav{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease;
  }

  /* Açıkken sayfa kaymasın */
  body.nav-open{
    overflow: hidden;
    touch-action: none;
  }

  /* Mobil menü dikey */
  #siteNav .nav__list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  #siteNav .nav__actions{
    margin-top: 16px;
  }
}






/* ===== Mobile: topbar + full-screen menu (topbar bittikten sonra başlasın) ===== */
@media (max-width: 900px){

  /* Topbar: varsayılan gizli, nav-open olunca görünür */
  .topbar{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1200;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    background: #fff;
  }
  body.nav-open .topbar{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Header (logo + hamburger) hep üstte kalsın */
  .header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1150;              /* ✅ menünün üstünde */
    background: #fff;
    transform: translateY(0);
    transition: transform .25s ease;
  }

  /* Topbar açılınca header aşağı insin (hamburger aynı yerde kalsın, kaybolmasın) */
  body.nav-open .header{
    transform: translateY(var(--m-topbar-h, 0px));
  }

  /* İçerik header altında başlasın */
  body{
    padding-top: var(--m-header-h, 72px);
  }

  /* Menü paneli: topbar + header bittikten sonra başlasın */
  #siteNav{
    position: fixed;
    left: 0; right: 0;
    top: calc(var(--m-topbar-h, 0px) + var(--m-header-h, 72px));
    bottom: 0;
    z-index: 1100;              /* ✅ header’ın altında */
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(105%); /* kapalı */
    transition: transform .25s ease;
    padding: 18px 16px;
  }
  body.nav-open #siteNav{
    transform: translateX(0);    /* açık */
  }
}


/* Menü açıkken arka planı flu yap (blur + hafif karartma) */
@media (max-width: 900px){
  body::before{
    content:"";
    position: fixed;
    inset: 0;
    z-index: 1000;                 /* içerik üstü, menü/header altı */
    background: rgba(10,15,25,.18);/* isteğe göre daha açık/koyu */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;          /* arka planı tıklanamaz yapma ihtiyacı yok */
    transition: opacity .25s ease;
    pointer-events: none;          /* kapalıyken tıklanmasın */
  }
  body.nav-open::before{
    opacity: 1;
    pointer-events: auto;          /* ✅ menü açıkken flu alana tıklanabilsin */
    cursor: pointer;
  }
}

.feature-card__media{
  width: 100%;
  overflow: hidden;
  /* Eğer yükseklik sizde zaten varsa bu satırı kaldırabilirsiniz */
  aspect-ratio: 16 / 9;
}

.feature-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* tam alanı doldurur, taşanı kırpar */
  display: block;
}

/* Footer marka alanı: mobil düzen */
@media (max-width: 600px) {
  .footer__brand{
    display: flex;
    flex-direction: column;   /* yazı alta insin */
    align-items: flex-start;
  }

  .footer__logo{
    width: 150px;             /* logo genişliği */
    max-width: 150px;
  }

  .footer__logo img{
    width: 100%;
    height: auto;
    display: block;
  }

  .footer__brand p{
    margin-top: 10px;         /* logo ile yazı arası */
    margin-left: 0;
  }
}


/* =========================
   Lightbox / Popup Gallery
========================= */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lightbox.is-open{ display:block; }

.lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox__panel{
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.lightbox__figure{
  margin: 0;
  width: min(980px, 92vw);
  justify-self: center;
  text-align: center;
}

.lightbox__img{
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  background: rgba(255,255,255,.04);
}

.lightbox__caption{
  margin-top: 10px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
}

.lightbox__nav{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  user-select: none;
}

.lightbox__nav:hover{ background: rgba(0,0,0,.55); }

.lightbox__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox__close:hover{ background: rgba(0,0,0,.55); }

@media (max-width: 640px){
  .lightbox__panel{
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 10px;
    padding: 12px;
  }
  .lightbox__nav{
    width: 46px;
    height: 46px;
    justify-self: center;
  }
  .lightbox__figure{
    width: min(980px, 96vw);
  }
  .lightbox__img{
    max-height: 72vh;
  }
}
