/* ==========================================================================
   ÇINAR TAKSİ MERZİFON — Design tokens
   Palette pulled from the brand's own livery: taxi-cab yellow, checker
   black, and the gold used on the plaque/badge artwork. The LED green is
   lifted straight from the "TAKSİ BOŞ" roof-sign photos.
   ========================================================================== */
:root{
  --black:        #0a0a0b;
  --black-soft:   #131315;
  --panel:        #1a1a1d;
  --panel-line:   #2a2a2e;
  --yellow:       #F7C600;
  --yellow-deep:  #E6A800;
  --gold:         #C9A227;
  --gold-soft:    #E7C766;
  --led:          #34E27A;
  --white:        #F7F6F2;
  --muted:        #ADACA7;
  --whatsapp:     #25D366;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Manrope', -apple-system, sans-serif;
  --font-led:     'Share Tech Mono', monospace;

  --radius: 14px;
  --container: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 .5em;
  line-height: 1.08;
}
p{ margin: 0 0 1em; color: var(--muted); }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section{ padding: 88px 0; position: relative; }
.section-tight{ padding: 56px 0; }
@media (max-width: 720px){
  .section{ padding: 56px 0; }
}

/* eyebrow / kicker */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-led);
  color: var(--led);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width:8px; height:8px; border-radius:50%;
  background: var(--led);
  box-shadow: 0 0 8px 2px var(--led);
  animation: blink 1.6s infinite;
}
@keyframes blink{ 0%,100%{opacity:1;} 50%{opacity:.25;} }

/* Checker strip — literal taxi-door checker pattern, used as a divider */
.checker-strip{
  height: 14px;
  background-image: repeating-linear-gradient(45deg,
    var(--yellow) 0, var(--yellow) 10px, var(--black) 10px, var(--black) 20px);
  background-size: 28px 28px;
}
.checker-strip.thin{ height: 8px; }

/* ============================= NAV ============================= */
.topbar{
  background: var(--black);
  font-family: var(--font-led);
  font-size: 12.5px;
  color: var(--led);
  letter-spacing: 1.5px;
  overflow: hidden;
  border-bottom: 1px solid var(--panel-line);
}
.marquee-track{
  display: flex;
  white-space: nowrap;
  animation: scroll-left 28s linear infinite;
  padding: 7px 0;
}
.marquee-track span{ padding: 0 28px; display:inline-flex; align-items:center; gap:10px;}
.marquee-track span::after{ content:"•"; color: var(--yellow); margin-left:28px; }
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

nav.mainnav{
  position: sticky; top:0; z-index: 100;
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--panel-line);
}
.navwrap{
  max-width: var(--container); margin:0 auto; padding: 12px 24px;
  display:flex; align-items:center; justify-content:space-between; gap: 20px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height: 46px; width:auto; }
.brand-text{ font-family: var(--font-display); line-height:1; }
.brand-text b{ color: var(--yellow); font-size: 19px; letter-spacing: .5px; display:block;}
.brand-text small{ color: var(--muted); font-size: 11px; letter-spacing: 3px; font-family: var(--font-body); text-transform:uppercase;}

.navlinks{ display:flex; align-items:center; gap: 30px; }
.navlinks a{
  font-family: var(--font-display); font-size: 14px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white); position:relative; padding: 4px 0;
}
.navlinks a::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0;
  background: var(--yellow); transition: width .25s ease;
}
.navlinks a:hover::after, .navlinks a.active::after{ width:100%; }
.navlinks a.active{ color: var(--yellow); }

.nav-cta{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display); font-size: 15px; letter-spacing:.5px;
  background: var(--yellow); color: var(--black); padding: 10px 18px;
  border-radius: 999px; white-space:nowrap;
}
.nav-cta svg{ width:18px; height:18px; }

.burger{ display:none; background:none; border:none; color:var(--white); font-size:26px; cursor:pointer;}
@media (max-width: 900px){
  .navlinks{
    position:fixed; inset: 68px 0 0 0; background: var(--black);
    flex-direction:column; padding: 32px 24px; gap: 22px;
    transform: translateY(-120%); transition: transform .3s ease; z-index: 90;
  }
  .navlinks.open{ transform: translateY(0); }
  .burger{ display:block; }
  .nav-cta span{ display:none; }
}

/* ============================= HERO ============================= */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex; align-items:center;
  background-size: cover; background-position: center;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(10,10,11,.97) 8%, rgba(10,10,11,.72) 45%, rgba(10,10,11,.25) 80%),
    linear-gradient(0deg, rgba(10,10,11,1) 0%, rgba(10,10,11,.1) 32%, rgba(10,10,11,.35) 100%);
}
.hero-inner{ position:relative; z-index:2; max-width: var(--container); margin:0 auto; padding: 40px 24px; width:100%; }
.hero h1{
  font-size: clamp(40px, 7vw, 88px);
  color: var(--white);
  max-width: 800px;
}
.hero h1 em{ font-style:normal; color: var(--yellow); }
.hero .lede{ max-width: 520px; font-size: 17px; color: #D8D6CE; }
.hero-actions{ display:flex; flex-wrap:wrap; gap: 16px; margin-top: 28px; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-display); font-size: 16px; letter-spacing: .5px;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor:pointer; transition: transform .18s ease, box-shadow .18s ease;
}
.btn svg{ width:20px; height:20px; flex-shrink:0; }
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--yellow); color: var(--black); box-shadow: 0 10px 26px -10px rgba(247,198,0,.6);}
.btn-whatsapp{ background: var(--whatsapp); color: #06210f; box-shadow: 0 10px 26px -10px rgba(37,211,102,.55);}
.btn-outline{ background: transparent; border-color: var(--panel-line); color: var(--white); }
.btn-outline:hover{ border-color: var(--yellow); color: var(--yellow); }

/* meter badge floating on hero */
.meter-badge{
  position:absolute; z-index:3; right: 42px; bottom: 42px;
  background: var(--panel); border:1px solid var(--panel-line);
  border-radius: var(--radius); padding: 18px 22px; text-align:center;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.8);
}
.meter-badge .num{ font-family:var(--font-display); font-size: 40px; color: var(--yellow); line-height:1; }
.meter-badge small{ font-family: var(--font-led); color: var(--led); letter-spacing: 2px; font-size:11px;}
@media (max-width: 720px){ .meter-badge{ display:none; } }

/* ============================= trust strip ============================= */
.trust{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--panel-line); border-top:1px solid var(--panel-line); border-bottom:1px solid var(--panel-line);
}
.trust > div{ background: var(--black-soft); padding: 22px 18px; text-align:center; }
.trust b{ display:block; font-family: var(--font-display); color: var(--yellow); font-size: 22px; }
.trust span{ font-size: 12.5px; color: var(--muted); letter-spacing: .5px; }
@media (max-width: 760px){ .trust{ grid-template-columns: repeat(2,1fr); } }

/* ============================= section headers ============================= */
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(28px,4vw,42px); color: var(--white); }
.section-head p{ font-size: 16px; }

/* ============================= service cards ============================= */
.grid{ display:grid; gap: 22px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-3, .grid-4{ grid-template-columns: 1fr; } }

.card{
  background: var(--panel); border:1px solid var(--panel-line); border-radius: var(--radius);
  padding: 28px 24px; transition: border-color .2s ease, transform .2s ease;
}
.card:hover{ border-color: var(--yellow); transform: translateY(-4px); }
.card .icon{
  width:52px; height:52px; border-radius:12px; background: rgba(247,198,0,.1);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.card .icon svg{ width:26px; height:26px; color: var(--yellow); }
.card h3{ font-size: 19px; color: var(--white); }
.card p{ font-size: 14.5px; margin-bottom:0; }

/* ============================= gallery / poster showcase ============================= */
.poster-row{ display:grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.poster-row img, .poster-row a{ border-radius: 10px; overflow:hidden; border:1px solid var(--panel-line); }
@media (max-width: 900px){ .poster-row{ grid-template-columns: repeat(2,1fr); } }

/* ============================= districts / bölgeler ============================= */
.district-card{
  position:relative; border-radius: var(--radius); overflow:hidden; min-height: 230px;
  display:flex; align-items:flex-end; background-size:cover; background-position:center;
  border:1px solid var(--panel-line);
}
.district-card::after{ content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.15) 65%); }
.district-card .dc-inner{ position:relative; z-index:2; padding: 22px; }
.district-card h3{ color: var(--yellow); margin-bottom:.2em; font-size:22px;}
.district-card p{ color: #E4E2D9; font-size: 13.5px; margin-bottom:0;}

/* ============================= testimonials ============================= */
.testi{
  background: var(--panel); border:1px solid var(--panel-line); border-radius: var(--radius);
  padding: 26px 24px;
}
.stars{ color: var(--yellow); letter-spacing:2px; margin-bottom:12px; font-size:15px;}
.testi p{ color:#DAD8D0; font-size:15px; }
.testi .who{ display:flex; align-items:center; gap:10px; margin-top:16px; }
.testi .avatar{
  width:38px; height:38px; border-radius:50%; background: var(--yellow); color:var(--black);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700;
}
.testi .who b{ display:block; font-size:14px; color: var(--white); }
.testi .who span{ font-size:12px; color: var(--muted); }

/* ============================= CTA band ============================= */
.cta-band{
  background: linear-gradient(120deg, var(--yellow), var(--gold-soft));
  color: var(--black); border-radius: var(--radius);
  padding: 44px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.cta-band h3{ font-size: 28px; margin-bottom:.2em; color: var(--black); }
.cta-band p{ color: rgba(0,0,0,.65); margin-bottom:0; font-size:15px; }
.cta-band .btn-primary{ background: var(--black); color: var(--yellow); box-shadow:none; }
.cta-band .btn-primary:hover{ background:#000; }

/* ============================= footer ============================= */
footer{ background: var(--black-soft); border-top:1px solid var(--panel-line); padding: 60px 0 0; }
.foot-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px;}
@media (max-width: 900px){ .foot-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .foot-grid{ grid-template-columns: 1fr; } }
.foot-grid h4{ color: var(--white); font-size:15px; letter-spacing:1px; margin-bottom:16px;}
.foot-grid ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px;}
.foot-grid ul a{ color: var(--muted); font-size:14px; }
.foot-grid ul a:hover{ color: var(--yellow); }
.foot-brand img{ height:52px; margin-bottom:14px; }
.foot-brand p{ font-size:13.5px; max-width:280px; }
.foot-bottom{
  border-top:1px solid var(--panel-line); padding: 18px 0; text-align:center;
  font-size:12.5px; color: var(--muted);
}
.foot-bottom b{ color: var(--yellow); }

/* ============================= floating action buttons ============================= */
.fab-stack{
  position: fixed; right: 20px; bottom: 22px; z-index: 200;
  display:flex; flex-direction:column; gap: 12px; align-items:flex-end;
}
.fab{
  display:flex; align-items:center; gap:10px;
  width:56px; height:56px; border-radius:50%; justify-content:center;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,.7);
  transition: width .25s ease, border-radius .25s ease, padding .25s ease;
  overflow:hidden; white-space:nowrap; cursor:pointer;
}
.fab svg{ width:24px; height:24px; flex-shrink:0; }
.fab .label{ font-family: var(--font-display); font-size:14px; letter-spacing:.5px; max-width:0; opacity:0; transition: max-width .25s ease, opacity .2s ease; }
.fab:hover{ width: auto; padding: 0 20px 0 16px; border-radius: 30px; }
.fab:hover .label{ max-width:160px; opacity:1; margin-left:2px; }
.fab-call{ background: var(--yellow); color: var(--black); }
.fab-wa{ background: var(--whatsapp); color:#06210f; }
.fab-ring{
  position:absolute; inset:-4px; border-radius:50%; border:2px solid var(--yellow); opacity:0;
  animation: ring 2.2s infinite;
}
@keyframes ring{ 0%{ transform:scale(.9); opacity:.6;} 100%{ transform:scale(1.5); opacity:0;} }

/* ============================= page hero (inner pages) ============================= */
.page-hero{
  padding: 64px 0 40px; background: var(--black-soft); border-bottom:1px solid var(--panel-line);
  background-size:cover; background-position:center; position:relative;
}
.page-hero::before{ content:""; position:absolute; inset:0; background: rgba(10,10,11,.86); }
.page-hero .container{ position:relative; z-index:2; }
.page-hero .crumbs{ font-family: var(--font-led); color: var(--led); font-size:12.5px; letter-spacing:2px; margin-bottom:10px;}
.page-hero h1{ font-size: clamp(32px,5vw,52px); }

/* ============================= misc ============================= */
.two-col{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items:center; }
@media (max-width: 860px){ .two-col{ grid-template-columns:1fr; } }
.badge-list{ list-style:none; padding:0; margin: 18px 0; display:flex; flex-direction:column; gap:12px; }
.badge-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color:#DAD8D0; }
.badge-list li svg{ width:20px; height:20px; color: var(--led); flex-shrink:0; margin-top:2px; }

.map-frame{ border-radius: var(--radius); overflow:hidden; border:1px solid var(--panel-line); }
.map-frame iframe{ width:100%; height:420px; border:0; filter: grayscale(.2) invert(.92) contrast(.9); }

.contact-form{ display:grid; gap:14px; }
.contact-form input, .contact-form textarea, .contact-form select{
  width:100%; background: var(--panel); border:1px solid var(--panel-line); color: var(--white);
  padding: 14px 16px; border-radius: 10px; font-family: var(--font-body); font-size:14.5px;
}
.contact-form label{ font-size:13px; color: var(--muted); margin-bottom:6px; display:block; letter-spacing:.5px;}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus{ outline:2px solid var(--yellow); border-color: var(--yellow); }
.contact-form .row2{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
@media (max-width:560px){ .contact-form .row2{ grid-template-columns:1fr; } }

.info-strip{ display:flex; gap:16px; flex-wrap:wrap; }
.info-pill{
  display:flex; align-items:center; gap:12px; background: var(--panel);
  border:1px solid var(--panel-line); border-radius: 999px; padding: 12px 18px; font-size:14px;
}
.info-pill svg{ width:18px; height:18px; color:var(--yellow); }

:focus-visible{ outline: 3px solid var(--yellow); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
