/* ============================================================
   Kolay Taşı — Evden Eve Nakliyat
   Palet: mavi #1E63D8 · turuncu #FF7A1A · lacivert #0F1E38
   ============================================================ */

:root {
  --blue: #1E63D8;
  --blue-d: #164aa6;
  --blue-l: #eaf1fe;
  --orange: #FF7A1A;
  --orange-d: #e8650a;
  --ink: #0F1E38;
  --muted: #5a6b85;
  --line: #e5ebf4;
  --bg: #ffffff;
  --bg-tint: #f5f8fd;
  --white: #fff;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(15,30,56,.06);
  --shadow: 0 14px 40px rgba(15,30,56,.10);
  --shadow-lg: 0 30px 70px rgba(15,30,56,.16);
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: var(--white); box-shadow: 0 10px 24px rgba(255,122,26,.32);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(255,122,26,.42); }
.btn--ghost { background: rgba(255,255,255,.14); color: var(--white); border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn--block { width: 100%; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-l); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.eyebrow--light { color: #fff; background: rgba(255,255,255,.16); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.nav.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: #fff; }
.nav.scrolled .brand { color: var(--ink); }
.brand__mark { color: var(--blue); display: inline-flex; }
.nav.scrolled .brand__mark { color: var(--blue); }
.brand__text strong { color: var(--orange); font-weight: 800; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-weight: 500; color: rgba(255,255,255,.92); font-size: .98rem; transition: color .2s; }
.nav.scrolled .nav__links a { color: var(--ink); }
.nav__links a:hover { color: var(--orange); }
.nav__cta { background: var(--orange); color: #fff !important; padding: 10px 20px; border-radius: 999px; font-weight: 600 !important; box-shadow: 0 8px 20px rgba(255,122,26,.32); }
.nav__cta:hover { color: #fff !important; transform: translateY(-2px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.nav.scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 150px 0 90px;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(255,122,26,.20), transparent 60%),
    linear-gradient(160deg, #10336f 0%, var(--blue) 55%, #2f74e6 100%);
  color: #fff; overflow: hidden;
}
.hero__road {
  position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.35) 0 40px, transparent 40px 80px);
  opacity: .18; mask: linear-gradient(to top, #000, transparent);
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 500;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.25); }

.hero__copy h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
.hero__copy h1 .hl { color: #ffcf9e; position: relative; }
.hero__copy h1 .hl::after { content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 8px; background: var(--orange); opacity: .35; border-radius: 4px; z-index: -1; }
.hero__lead { margin: 20px 0 30px; font-size: 1.12rem; color: rgba(255,255,255,.9); max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero__trust { list-style: none; display: flex; gap: 30px; flex-wrap: wrap; }
.hero__trust li { font-size: .92rem; color: rgba(255,255,255,.82); }
.hero__trust strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff; font-weight: 700; }

/* İMZA BİLEŞEN: HIZLI TEKLİF WIDGET */
.quote-widget {
  background: var(--white); color: var(--ink); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-lg); position: relative;
}
.quote-widget::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  padding: 2px; background: linear-gradient(135deg, var(--orange), var(--blue));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.quote-widget__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.quote-widget__head h2 { font-size: 1.4rem; }
.quote-widget__badge { background: var(--blue-l); color: var(--blue); font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; font-family: var(--font-head); }

.quote-widget__form { display: grid; gap: 14px; }
.quote-widget__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-widget__note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 2px; }
.quote-widget__success { margin-top: 16px; background: #eafaf0; color: #0f7a3d; border: 1px solid #b8ecc9; padding: 14px 16px; border-radius: 12px; font-weight: 500; font-size: .95rem; }

/* ---------- Fields ---------- */
.field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink); font-family: var(--font-head); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .96rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fbfcfe; transition: border .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30,99,216,.12); background: #fff;
}
.field--icon { position: relative; }
.field--icon input { padding-left: 40px; }
.field--icon::after {
  content: ''; position: absolute; left: 13px; top: 35px; width: 16px; height: 16px;
  background: var(--blue); mask-size: contain; mask-repeat: no-repeat;
}
.field--from::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='9' r='7' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='12' cy='9' r='2.5' fill='%23000'/%3E%3C/svg%3E"); }
.field--to::after { background: var(--orange); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8 2 5 5 5 9c0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7z' fill='%23000'/%3E%3Ccircle cx='12' cy='9' r='2.5' fill='%23fff'/%3E%3C/svg%3E"); }
.field.err input, .field.err select { border-color: #e5484d; box-shadow: 0 0 0 4px rgba(229,72,77,.1); }

.check { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--muted); cursor: pointer; }
.check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--blue); flex: 0 0 auto; }

/* ============================================================
   STRIP
   ============================================================ */
.strip { background: var(--ink); color: #fff; }
.strip__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 30px; padding: 20px 24px; }
.strip span { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.85); position: relative; padding-left: 26px; }
.strip span::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; background: var(--orange);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m10 15-3-3 1.4-1.4L10 12.2l5.6-5.6L17 8z' fill='%23000'/%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 90px 0; }
.section--tint { background: var(--bg-tint); }
.section__head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.section__head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); letter-spacing: -.02em; }
.section__head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover .card__media img { transform: scale(1.06); }
.card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,30,56,.35), transparent 55%); }
.card__icon {
  position: absolute; left: 20px; bottom: -24px; z-index: 2;
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow-sm);
}
.card__icon--blue { background: linear-gradient(135deg, var(--blue), var(--blue-d)); }
.card__icon--orange { background: linear-gradient(135deg, var(--orange), var(--orange-d)); }
.card__body { padding: 34px 26px 28px; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .97rem; }

/* ---------- Steps ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps__line { position: absolute; top: 44px; left: 16%; right: 16%; height: 3px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 12px, transparent 12px 22px); opacity: .35; }
.step { position: relative; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 26px 30px; box-shadow: var(--shadow-sm); }
.step:hover { box-shadow: var(--shadow); transform: translateY(-6px); transition: .25s; }
.step__num {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(255,122,26,.4); border: 4px solid #fff;
}
.step__icon { width: 60px; height: 60px; border-radius: 50%; background: var(--blue-l); color: var(--blue); display: grid; place-items: center; margin: 6px auto 18px; }
.step h3 { font-size: 1.22rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.why__media { position: relative; }
.why__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.why__badge {
  position: absolute; bottom: -22px; right: -14px; background: var(--ink); color: #fff;
  padding: 18px 22px; border-radius: 18px; box-shadow: var(--shadow); text-align: center;
}
.why__badge strong { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--orange); }
.why__badge span { font-size: .8rem; color: rgba(255,255,255,.8); }
.why__intro { color: var(--muted); margin: 8px 0 26px; font-size: 1.05rem; }

.feature-list { list-style: none; display: grid; gap: 20px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list__ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; background: var(--blue-l); color: var(--blue); display: grid; place-items: center; }
.feature-list h3 { font-size: 1.08rem; margin-bottom: 2px; }
.feature-list p { color: var(--muted); font-size: .95rem; }

/* ---------- Counters ---------- */
.counters { background: linear-gradient(135deg, var(--ink), #16305c); color: #fff; padding: 60px 0; }
.counters__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.counter { position: relative; }
.counter:not(:last-child)::after { content: ''; position: absolute; right: -12px; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,.15); }
.counter__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--orange); letter-spacing: -.02em; }
.counter__label { font-size: .95rem; color: rgba(255,255,255,.82); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { color: var(--orange); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 14px; }
.testimonial blockquote { font-size: 1rem; color: #2c3b56; line-height: 1.7; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial__av { width: 44px; height: 44px; border-radius: 50%; background: var(--c, var(--blue)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: .95rem; flex: 0 0 auto; }
.testimonial figcaption strong { display: block; font-family: var(--font-head); font-size: .98rem; }
.testimonial figcaption small { color: var(--muted); font-size: .84rem; }

/* ---------- Detailed quote ---------- */
.quote {
  background:
    radial-gradient(800px 400px at 15% 10%, rgba(255,122,26,.18), transparent 60%),
    linear-gradient(150deg, #12356f, var(--blue));
  color: #fff;
}
.quote__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.quote__intro h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); letter-spacing: -.02em; }
.quote__intro > p { color: rgba(255,255,255,.88); margin: 16px 0 24px; font-size: 1.06rem; }
.quote__perks { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; }
.quote__perks li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.quote__perks svg { color: #4ade80; flex: 0 0 auto; }
.quote__contact a { display: inline-flex; flex-direction: column; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 14px 22px; border-radius: 14px; }
.quote__contact strong { font-family: var(--font-head); font-size: 1.5rem; }
.quote__contact span { font-size: .84rem; color: rgba(255,255,255,.8); }

.quote__form { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); display: grid; gap: 16px; }
.quote__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote__success { background: #eafaf0; color: #0f7a3d; border: 1px solid #b8ecc9; padding: 14px 16px; border-radius: 12px; font-weight: 500; font-size: .95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.brand--light { color: #fff; margin-bottom: 16px; }
.footer__brand p { font-size: .95rem; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col a { display: block; padding: 5px 0; font-size: .94rem; transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: var(--orange); padding-left: 5px; }
.footer__addr { font-size: .92rem; margin-top: 10px; line-height: 1.7; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 22px 24px; font-size: .86rem; color: rgba(255,255,255,.55); }

/* ---------- To top ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--orange); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(255,122,26,.4);
  opacity: 0; visibility: hidden; transform: translateY(16px); transition: .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--orange-d); transform: translateY(-3px); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__grid, .why__grid, .quote__grid { grid-template-columns: 1fr; }
  .why__media { max-width: 480px; margin: 0 auto; }
  .cards, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .counters__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .counter:nth-child(2)::after { display: none; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps__line { display: none; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 320px);
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 8px; padding: 40px; transform: translateX(100%); transition: transform .35s ease;
    box-shadow: -20px 0 60px rgba(15,30,56,.2);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: var(--ink) !important; font-size: 1.1rem; padding: 10px 0; width: 100%; }
  .nav__cta { margin-top: 10px; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .cards, .testimonials, .counters__grid, .quote-widget__row, .quote__row { grid-template-columns: 1fr; }
  .counter:nth-child(odd)::after { display: none; }
  .hero { padding-top: 120px; }
  .hero__actions .btn { flex: 1 1 auto; }
  .why__badge { right: 10px; }
  .quote-widget, .quote__form { padding: 22px; }
  .strip__inner { justify-content: flex-start; }
}
