/* ==========================================================================
   All Drive Kredi — Global Stylesheet
   ========================================================================== */

:root {
  --brand:        #0b3d91;   /* deep blue */
  --brand-dark:   #082a63;
  --brand-light:  #1e5fd6;
  --accent:       #ff8a00;   /* orange CTA */
  --accent-dark:  #e67a00;
  --ink:          #16202c;
  --muted:        #5b6b7d;
  --line:         #e5eaf0;
  --bg:           #ffffff;
  --bg-soft:      #f4f7fb;
  --bg-navy:      #0a1a33;
  --success:      #1a9f5a;
  --radius:       14px;
  --radius-sm:    10px;
  --shadow:       0 10px 30px rgba(11, 61, 145, .10);
  --shadow-sm:    0 4px 14px rgba(16, 32, 44, .08);
  --maxw:         1180px;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; color: var(--ink); }
h1 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.015em; }
h3 { font-size: 1.2rem; }

p { color: var(--muted); }

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

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #b9c6da; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-light);
  background: #eaf1fd; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section--navy .section-head .eyebrow { background: rgba(255,255,255,.1); color: #7db1ff; }
.section-head p { font-size: 1.05rem; margin-top: 12px; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(255,138,0,.32); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-dark); }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); }
.btn--light { background: #fff; color: var(--brand); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* ============================ HEADER ============================ */
.topbar {
  background: var(--bg-navy); color: #cdd8e8;
  font-size: .85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.topbar a { color: #cdd8e8; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar .topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .topbar__social { display: flex; gap: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.25rem; color: var(--ink); }
.brand__logo {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  display: grid; place-items: center; color: #fff; flex: none;
}
.brand__logo svg { width: 24px; height: 24px; }
.brand strong { color: var(--brand); }
.brand small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; }

.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__menu a {
  display: block; padding: 10px 16px; border-radius: 8px;
  font-weight: 600; font-size: .96rem; color: var(--ink);
  transition: background .15s, color .15s;
}
.nav__menu a:hover { background: var(--bg-soft); color: var(--brand); }
.nav__menu a.active { color: var(--brand); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ============================ HERO ============================ */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--bg-navy) 0%, var(--brand-dark) 55%, var(--brand) 100%);
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,0,.35), transparent 70%);
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding-top: 72px; padding-bottom: 72px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); padding: 7px 16px; border-radius: 999px;
  font-size: .85rem; font-weight: 600; margin-bottom: 22px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: #ffb454; }
.hero p.lead { color: #d5e0f2; font-size: 1.14rem; max-width: 520px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero__stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__stats .stat strong { font-size: 1.9rem; font-weight: 800; color: #fff; display: block; }
.hero__stats .stat span { font-size: .85rem; color: #b9c6da; }

/* Calculator card in hero */
.calc-card {
  background: #fff; color: var(--ink);
  border-radius: 18px; padding: 30px; box-shadow: var(--shadow);
}
.calc-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.calc-card > p { font-size: .9rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.field input, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; color: var(--ink);
  background: #fff; transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--brand-light); box-shadow: 0 0 0 3px rgba(30,95,214,.12); }
.range-row { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); margin-top: 6px; }

.calc-result {
  margin-top: 20px; background: var(--bg-soft); border-radius: var(--radius-sm);
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center;
}
.calc-result span { font-size: .85rem; color: var(--muted); }
.calc-result strong { font-size: 1.7rem; color: var(--brand); }

/* ============================ GENERIC PAGE HERO ============================ */
.page-hero {
  background: linear-gradient(120deg, var(--bg-navy), var(--brand-dark));
  color: #fff; padding: 66px 0; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #cdd8e8; max-width: 620px; margin: 0 auto; font-size: 1.06rem; }
.breadcrumb { font-size: .85rem; color: #9db0cd; margin-top: 18px; }
.breadcrumb a:hover { color: #fff; }

/* ============================ CARDS / GRIDS ============================ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: #eaf1fd; color: var(--brand); margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .95rem; }

/* Feature list */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__num {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800;
}

/* ============================ FINANCING / PRODUCT CARDS ============================ */
.fin-card { position: relative; overflow: hidden; }
.fin-card--featured { border: 2px solid var(--brand-light); box-shadow: var(--shadow); }
.fin-card .tag {
  position: absolute; top: 18px; right: -34px; transform: rotate(45deg);
  background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700;
  padding: 5px 44px;
}
.fin-card ul { list-style: none; margin: 18px 0 24px; }
.fin-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--muted); padding: 7px 0; }
.fin-card ul li svg { flex: none; width: 20px; height: 20px; color: var(--success); margin-top: 2px; }

/* ============================ STEPS ============================ */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step .step__badge {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark)); color: #fff;
  display: grid; place-items: center; font-size: 1.4rem; font-weight: 800; margin-bottom: 18px;
}

/* ============================ CAMPAIGNS ============================ */
.campaign {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; transition: transform .2s, box-shadow .2s;
}
.campaign:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.campaign__media { height: 180px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.5rem; position: relative; }
.campaign__media .pct { font-size: 2.6rem; }
.campaign__body { padding: 24px; }
.campaign__body .chip { display: inline-block; background: #eaf1fd; color: var(--brand); font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.campaign__body h3 { margin-bottom: 8px; }
.campaign__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }

/* ============================ STATS BAND ============================ */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-band .num { font-size: 2.6rem; font-weight: 800; color: var(--accent); }
.stats-band .lbl { font-size: .95rem; color: #b9c6da; }

/* ============================ ABOUT / SPLIT ============================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split__media {
  border-radius: 18px; min-height: 380px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.split__media .badge-float {
  position: absolute; background: #fff; color: var(--ink); border-radius: 14px;
  padding: 16px 20px; box-shadow: var(--shadow); font-weight: 700;
}
.checklist { list-style: none; margin-top: 22px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; font-size: 1rem; color: var(--ink); }
.checklist li svg { flex: none; width: 24px; height: 24px; color: var(--success); }

/* ============================ FAQ ============================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-size: 1.05rem; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit;
}
.faq__q .ico { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; transition: .25s; color: var(--brand); font-weight: 800; }
.faq__item.open .faq__q .ico { background: var(--brand); color: #fff; transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 24px 22px; font-size: .98rem; }

/* ============================ CTA BAND ============================ */
.cta-band {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand-light));
  color: #fff; border-radius: 20px; padding: 50px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #d5e0f2; max-width: 560px; margin: 0 auto 26px; }
.cta-band .hero__cta { justify-content: center; }

/* ============================ CONTACT ============================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info .info-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .info-item .ico { flex: none; width: 50px; height: 50px; border-radius: 12px; background: #eaf1fd; color: var(--brand); display: grid; place-items: center; }
.contact-info .info-item h4 { margin-bottom: 3px; }
.contact-info .info-item p { font-size: .95rem; margin: 0; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; resize: vertical; min-height: 120px;
}
.field textarea:focus { outline: none; border-color: var(--brand-light); box-shadow: 0 0 0 3px rgba(30,95,214,.12); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 40px; }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--bg-navy); color: #b9c6da; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand strong { color: #ffb454; }
.site-footer .brand small { color: #7f93b3; }
.site-footer p { font-size: .92rem; color: #97a8c4; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .92rem; color: #b9c6da; transition: color .15s; }
.footer-col ul a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; margin-bottom: 12px; }
.footer-contact svg { flex: none; width: 18px; height: 18px; color: #ffb454; margin-top: 3px; }
.footer-bottom {
  margin-top: 50px; border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .85rem; color: #7f93b3;
}

/* ============================ WHATSAPP FLOAT ============================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }

/* ============================ UTIL ============================ */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 820px) {
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px 20px 22px; gap: 2px; box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .3s ease; border-bottom: 1px solid var(--line);
  }
  .nav__menu.open { transform: none; }
  .nav__menu a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: block; }
  .nav__actions .btn:not(.nav__toggle) { display: none; }
  .topbar .topbar__contact { display: none; }
}
@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .hero__stats { gap: 22px; }
}

/* ============== ANLAŞMALI BANKALAR ŞERİDİ ============== */
.bank-strip{
  margin-top:26px;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.bank-strip__track{
  display:flex;
  align-items:center;
  gap:56px;
  width:max-content;
  animation:bank-scroll 34s linear infinite;
}
.bank-strip:hover .bank-strip__track{ animation-play-state:paused; }
.bank-strip__track img{
  height:34px;
  width:auto;
  flex:none;
  filter:grayscale(1);
  opacity:.62;
  transition:filter .25s ease, opacity .25s ease, transform .25s ease;
}
.bank-strip__track img:hover{
  filter:grayscale(0);
  opacity:1;
  transform:translateY(-2px);
}
@keyframes bank-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .bank-strip__track{ animation:none; flex-wrap:wrap; justify-content:center; gap:32px 44px; }
}
@media (max-width:640px){
  .bank-strip__track{ gap:38px; }
  .bank-strip__track img{ height:28px; }
}
