/* ---------- Base ---------- */
:root{
  --bg: #0b1020;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.12);
  --accent: #ff7a18; /* turuncu vurgu */
  --accent2: #2dd4bf; /* opsiyonel ikinci vurgu */
  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(255,122,24,0.22), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(45,212,191,0.18), transparent 55%),
    linear-gradient(180deg, #070a14 0%, #0b1020 40%, #070a14 100%);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.dot{ opacity: .6; margin: 0 10px; }

/* ---------- Topbar ---------- */
.topbar{
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}
.topbar__left, .topbar__right{ display:flex; align-items:center; flex-wrap: wrap; }
.topbar__link{
  color: var(--text);
  opacity: .9;
}
.topbar__link:hover{ opacity: 1; }

/* ---------- Header / Nav ---------- */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(11,16,32,0.55);
  backdrop-filter: blur(12px);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{ display:flex; align-items:center; gap: 12px; }
.brand__logo{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);

}
.brand__logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand__logo--small{
  width: 36px; height: 36px; border-radius: 12px;
}
.brand__text{ display:flex; flex-direction:column; }
.brand__text span{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
  font-size: 14px;
}
.nav a{ color: var(--muted); }
.nav a:hover{ color: var(--text); }

.nav-toggle{
  display:none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 99px;
  opacity: .9;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,122,24,0.35);
  background: rgba(255,122,24,0.18);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}
.btn:hover{
  background: rgba(255,122,24,0.26);
  border-color: rgba(255,122,24,0.55);
}
.btn--ghost{
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
}
.btn--ghost:hover{ background: rgba(255,255,255,0.07); }
.btn--small{ padding: 10px 12px; border-radius: 12px; }
.btn--block{ width: 100%; }

/* ---------- Hero ---------- */
.hero{
  padding: 56px 0 30px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: stretch;
}
.badge{
  display:inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}
.hero h1{
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.12;
  margin: 14px 0 10px;
}
.lead{ color: var(--muted); font-size: 16px; max-width: 60ch; }
.hero__cta{ display:flex; gap: 12px; margin: 18px 0 18px; flex-wrap: wrap; }

.hero__meta{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}
.meta-card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 12px;
}
.meta-card strong{ display:block; }
.meta-card span{ color: var(--muted); font-size: 13px; }

.hero__visual .visual-card{
  height: 65%;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.visual-card__tag{
  font-size: 12px;
  color: var(--muted);
  display:inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 999px;
}
.visual-card__title{ font-weight: 700; font-size: 16px; }
.visual-card__desc{ color: var(--muted); font-size: 14px; }
.visual-card__mock{
  margin-top: auto;
  border-radius: 16px;
  overflow: hidden;

  /* FOTOĞRAF */
  background-image: url("assets/dukkan.png"); /* <-- FOTOĞRAFIN */
  background-size: cover;      /* TAM DOLDURUR */
  background-position: center; /* ORTALAR */
  background-repeat: no-repeat;

  min-height: 260px;

}

/* ---------- Sections ---------- */
.section{ padding: 54px 0; }
.section--alt{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.section__head h2{
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
}
.section__head p{ margin: 0; color: var(--muted); max-width: 70ch; }

/* ---------- Cards / Grids ---------- */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 16px;
}
.card__icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 10px;
}
.card h3{ margin: 0 0 6px; }
.card p{ margin: 0; color: var(--muted); }

.service{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 16px;
}
.service__top{ display:flex; align-items:center; gap: 10px; }
.service__icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,122,24,0.12);
  border: 1px solid rgba(255,122,24,0.25);
}
.service h3{ margin: 0; }
.service p{ margin: 10px 0 10px; color: var(--muted); }
.list{ margin: 0; padding-left: 18px; color: var(--muted); }
.list li{ margin: 6px 0; }

/* ---------- Why ---------- */
.why{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.ticks{ margin: 18px 0; display:grid; gap: 10px; }
.tick{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--muted);
}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 12px;
}
.stat strong{ display:block; font-size: 18px; }
.stat span{ color: var(--muted); font-size: 13px; }

.quote{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.quote p{ margin: 0 0 10px; }
.quote span{ color: var(--muted); font-size: 13px; }
.quote--alt{
  margin-top: 12px;
  background: rgba(255,122,24,0.10);
  border-color: rgba(255,122,24,0.25);
}

/* ---------- Timeline ---------- */
.timeline{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 16px;
}
.step__no{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(45,212,191,0.10);
  border: 1px solid rgba(45,212,191,0.25);
  margin-bottom: 10px;
  font-weight: 800;
}
.step h3{ margin: 0 0 6px; font-size: 16px; }
.step p{ margin: 0; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq{ display:grid; gap: 10px; }
.faq__item{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight: 700;
}
.faq__item p{ margin: 10px 0 0; color: var(--muted); }

/* ---------- Contact ---------- */
.section--contact{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.contact{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items:start;
}
.contact-cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.contact-card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 12px;
}
.contact-card strong{ display:block; }
.contact-card span{ color: var(--muted); font-size: 13px; }

.map__mock{
  border: 1px dashed rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  height: 220px;
  display:grid;
  place-items:center;
  color: var(--muted);
  text-align:center;
  padding: 12px;
}

.form{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.form h3{ margin: 0 0 12px; }
label{ display:block; margin-bottom: 12px; font-size: 13px; color: var(--muted); }
input, select, textarea{
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(255,122,24,0.55);
  box-shadow: 0 0 0 4px rgba(255,122,24,0.12);
}
.form__note{ margin: 10px 0 0; color: var(--muted); font-size: 12px; }

/* ---------- Footer ---------- */
.footer{
  border-top: 1px solid var(--line);
  padding: 22px 0 70px;
  color: var(--muted);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  align-items:center;
}
.footer__brand{ display:flex; gap: 12px; align-items:center; }
.footer__brand p{ margin: 2px 0 0; }
.footer__links{ display:flex; gap: 14px; flex-wrap: wrap; }
.footer__links a:hover{ color: var(--text); }
.footer__copy{ justify-self: end; }

/* ---------- Floating button ---------- */
.fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,122,24,0.35);
  background: rgba(255,122,24,0.20);
  box-shadow: var(--shadow);
  display:none; /* desktop hidden */
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual .visual-card__mock{ min-height: 200px; }
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .why{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: repeat(2, 1fr); }
  .contact{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; }
  .footer__copy{ justify-self: start; }
}

@media (max-width: 720px){
  .topbar__inner{ display:none; } /* mobilde üst barı kaldır */
  .nav-toggle{ display:block; }
  .nav{
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(1120px, calc(100% - 24px));
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(11,16,32,0.86);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav a{ padding: 10px 10px; border-radius: 12px; }
  .nav a:hover{ background: rgba(255,255,255,0.06); }
  .nav--open{ display:flex; }

  .grid-3{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr; }
  .hero__meta{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }

  .fab{ display:inline-flex; }
}
.service--link{
  display: block;              /* a etiketi kart gibi davransın */
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.service--link:hover{
  transform: translateY(-2px);
  border-color: rgba(255,122,24,0.45);
  background: rgba(255,255,255,0.055);
}
.service--link:active{
  transform: translateY(0);
}
.service-intro{
  width: 100%;
  max-width: 820px;
  margin: 0 auto 22px;
  padding: 16px 18px;
  border-left: 4px solid rgba(255,122,24,0.6);
  background: rgba(255,255,255,0.035);
  border-radius: 12px;
  justify-content: center;
}

.service-intro p{
  margin: 0 0 10px 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  font-size: 15px;
}

.service-intro p:last-child{
  margin-bottom: 0;
}
.service-image{
  display: flex;
  justify-content: center;
  margin: 22px 0 26px 0;
}

.service-image img{
  width: 100%;
  max-width: 700px;   /* ortalı ve kontrollü */
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.service-image img{
  filter: contrast(1.05) saturate(1.05);
}