/* ============================================================
   LARA REKLAM — Ortak Stil Dosyası
   Marka rengi: Marka turuncusu #B34023 (RGB 179-64-35)
   ============================================================ */

:root {
  --brand: #B34023;
  --brand-dark: #8c331b;
  --brand-light: #d05a39;
  --ink: #1c1917;
  --ink-soft: #44403c;
  --muted: #78716c;
  --line: #e7e5e4;
  --bg: #ffffff;
  --bg-soft: #faf8f6;
  --bg-dark: #191512;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 24px 60px rgba(28, 25, 23, 0.14);
  --wrap: 1180px;
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
h2.section-title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 14px;
}
.lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .98rem; padding: 14px 26px;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(179,64,35,.28); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline { border-color: var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.3); }
.btn-wa:hover { background: #1eb457; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand .brand-fallback { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; letter-spacing: .04em; color: var(--brand); }
.brand .brand-fallback .mark { width: 30px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 500; font-size: .96rem; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 8px; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--brand); background: var(--bg-soft); }
.nav-links a.active { color: var(--brand); font-weight: 600; }
.nav-cta { margin-left: 8px; }
/* Teklif Al butonu: .nav-links a kuralının beyaz yazıyı ezmesini engelle */
.nav-links a.nav-cta { color: #fff; background: var(--brand); }
.nav-links a.nav-cta:hover { color: #fff; background: var(--brand-dark); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, #2a1c16 0%, #7a2c1a 55%, #b34023 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.14), transparent 45%);
}
.hero .wrap { position: relative; z-index: 2; padding: 96px 24px 104px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.7rem); max-width: 16ch; margin-bottom: 20px; }
.hero p { font-size: 1.14rem; max-width: 54ch; color: rgba(255,255,255,.9); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: 2.1rem; font-weight: 800; }
.hero-stats .stat span { font-size: .9rem; color: rgba(255,255,255,.8); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section-head .lead { margin: 14px auto 0; }
.bg-soft { background: var(--bg-soft); }

/* ---------- Service grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-ico {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-light)); color: #fff; margin-bottom: 18px;
}
.svc-ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: .96rem; }

/* ---------- Feature / why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { text-align: center; padding: 26px 18px; }
.why-card .num { font-size: 2.4rem; font-weight: 800; color: var(--brand); }
.why-card h3 { font-size: 1.05rem; margin: 6px 0; }
.why-card p { color: var(--muted); font-size: .92rem; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.split .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--bg-soft); aspect-ratio: 4/3; display: grid; place-items: center; }
.split ul { list-style: none; margin-top: 22px; display: grid; gap: 14px; }
.split ul li { display: flex; gap: 12px; align-items: flex-start; }
.split ul li .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: .8rem; margin-top: 2px; }

/* ---------- Founders ---------- */
.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 780px; margin: 0 auto; }
.founder {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; text-align: center;
}
.founder .avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light)); color: #fff;
  display: grid; place-items: center; font-size: 1.8rem; font-weight: 700;
}
.founder h3 { font-size: 1.2rem; }
.founder .role { color: var(--brand); font-weight: 600; font-size: .92rem; margin-bottom: 8px; }
.founder p { color: var(--muted); font-size: .94rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid .item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg-soft); display: grid; place-items: center;
  border: 1px dashed var(--line); color: var(--muted); font-size: .9rem; text-align: center; padding: 16px;
}
.gallery-grid .item.tall { aspect-ratio: 3/4; }
.gallery-grid a.item { padding: 0; border: 0; cursor: pointer; }
.gallery-grid a.item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-grid a.item:hover img { transform: scale(1.06); }

/* ---------- References logo wall ---------- */
.ref-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.ref-grid .logo {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  height: 118px; display: grid; place-items: center; padding: 12px 18px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.ref-grid .logo:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.ref-grid .logo img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: .7; transition: filter .25s, opacity .25s; }
.ref-grid .logo:hover img { filter: none; opacity: 1; }
.ref-more { text-align: center; margin-top: 26px; font-style: italic; color: var(--muted); }
@media (max-width: 860px) { .ref-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .ref-grid { grid-template-columns: repeat(2, 1fr); } .ref-grid .logo { height: 96px; padding: 14px; } }

/* ---------- 5'li değer/adım ızgarası (responsive) ---------- */
.why-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 940px) { .why-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .why-5 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Geo stats ---------- */
.geo-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 840px; margin: 0 auto; }
@media (max-width: 620px) { .geo-stats { grid-template-columns: 1fr; } }

/* ---------- Process timeline ---------- */
.timeline { position: relative; margin-top: 30px; }
.timeline .line { position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: var(--line); }
.timeline .steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.timeline .step { text-align: center; position: relative; padding: 0 6px; }
.timeline .step .dot {
  width: 46px; height: 46px; border-radius: 50%; margin: 14px auto; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-weight: 700; box-shadow: 0 6px 16px rgba(179,64,35,.3); position: relative; z-index: 2;
}
.timeline .step h3 { font-size: .98rem; }
@media (max-width: 700px) {
  .timeline .line { left: 27px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .timeline .steps { grid-template-columns: 1fr; gap: 4px; }
  .timeline .step { display: flex; align-items: center; gap: 16px; text-align: left; }
  .timeline .step .dot { margin: 10px 0; flex: none; }
}

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; text-align: center; border-radius: var(--radius); padding: 60px 30px; }
.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: 28px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: box-shadow .2s; }
.contact-row:hover { box-shadow: var(--shadow); }
.contact-row .ico { flex: none; width: 46px; height: 46px; border-radius: 11px; background: var(--bg-soft); color: var(--brand); display: grid; place-items: center; }
.contact-row .ico svg { width: 22px; height: 22px; }
.contact-row b { display: block; font-size: 1rem; }
.contact-row span, .contact-row a { color: var(--muted); font-size: .95rem; }
.contact-row a:hover { color: var(--brand); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.form .field { margin-bottom: 16px; }
.form label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .96rem; background: var(--bg-soft); transition: border .15s, background .15s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--brand); background: #fff; }
.form textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; justify-content: center; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; text-align: center; }

.map-embed { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.72); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer .brand-fallback { color: #fff; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer p { font-size: .92rem; margin-top: 14px; max-width: 34ch; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { font-size: .92rem; transition: color .15s; }
.footer-links a:hover { color: var(--brand-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(135deg, #2a1c16, #8c331b); color: #fff; text-align: center; padding: 70px 0; }
.page-hero h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 10px; }
.page-hero .crumb { font-size: .9rem; color: rgba(255,255,255,.75); }
.page-hero .crumb a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px 24px 24px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .28s ease; z-index: 40;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 12px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .svc-grid, .why-grid, .gallery-grid, .founders, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  section { padding: 60px 0; }
}
