/* ===== Adaklı Taksi — Base ===== */
:root {
  --yellow: #FFC107;
  --yellow-dark: #E0A800;
  --black: #111111;
  --black-soft: #1c1c1c;
  --white: #ffffff;
  --gray: #4a4a4a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; }

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

section { padding: 70px 0; }

.section-sub {
  color: var(--gray);
  margin-top: -10px;
  margin-bottom: 40px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  text-align: center;
}
.section-sub { text-align: center; }

/* ===== Checkered taxi strip ===== */
.taxi-check-strip {
  width: 100%;
  height: 14px;
  background-image: repeating-conic-gradient(var(--black) 0% 25%, var(--yellow) 0% 50%);
  background-size: 28px 28px;
}

.taxi-check-block {
  background-image: repeating-conic-gradient(var(--black) 0% 25%, var(--yellow) 0% 50%);
  background-size: 34px 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 6px 18px rgba(255, 193, 7, .4);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  box-shadow: 0 8px 22px rgba(255, 193, 7, .45);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37, 211, 102, .4);
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .45);
}

.btn-call {
  background: var(--black);
  color: var(--yellow);
  padding: 10px 18px;
  font-size: .95rem;
}
.btn-call:hover { background: var(--black-soft); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: .3px;
}

.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.main-nav a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.header-call { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--black) 55%, var(--black-soft) 100%);
  color: var(--white);
  padding-top: 60px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}

.eyebrow {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--white);
}
.hero h1 span {
  display: block;
  color: var(--yellow);
  font-size: .55em;
  font-weight: 600;
  margin-top: 10px;
}

.hero-desc {
  color: #d8d8d8;
  max-width: 560px;
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--yellow);
  font-weight: 600;
  font-size: .95rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.taxi-check-block {
  position: absolute;
  width: 260px;
  height: 260px;
  right: 0;
  opacity: .5;
  transform: rotate(6deg);
}
.hero-taxi {
  position: relative;
  width: 90%;
  max-width: 380px;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,.45));
}

/* ===== Services ===== */
.services { background: var(--white); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--white);
  border: 2px solid #f0f0f0;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.service-card h3 { font-size: 1.1rem; }
.service-card p { color: var(--gray); font-size: .95rem; margin-bottom: 0; }

/* ===== Areas ===== */
.areas { background: var(--black); color: var(--white); }
.areas h2 { color: var(--white); }
.areas .section-sub { color: #cfcfcf; }

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.area-card {
  background: var(--black-soft);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}
.area-card h3 { color: var(--yellow); font-size: 1.1rem; }
.area-card p { color: #d8d8d8; font-size: .92rem; margin-bottom: 0; }

.area-card-villages {
  grid-column: 1 / -1;
  text-align: left;
}
.area-card-villages h3 { text-align: center; }
.area-card-villages p { text-align: center; margin-bottom: 18px; }

.village-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.village-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 193, 7, .08);
  border: 1px solid var(--yellow);
  border-radius: 999px;
  padding: 7px 16px;
  line-height: 1.3;
}
.village-name { color: var(--yellow); font-weight: 700; font-size: .85rem; }
.village-old { color: #a8a8a8; font-size: .7rem; }

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.about-check-block {
  width: 210px;
  height: 210px;
  right: 10px;
}
.about-taxi {
  width: 85%;
  max-width: 300px;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
}
.about-list li {
  padding: 8px 0;
  font-weight: 600;
  border-bottom: 1px dashed #ddd;
}
.about-list li:last-child { border-bottom: none; }

/* ===== FAQ ===== */
.faq { background: var(--white); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fafafa;
  border: 2px solid #eee;
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--yellow); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 28px 18px 0;
  font-weight: 700;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow-dark);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  color: var(--gray);
  padding-bottom: 18px;
  margin: 0;
}

/* ===== Contact ===== */
.contact { background: #fafafa; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.contact-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 2px solid var(--black);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: var(--shadow);
}
.contact-icon { font-size: 2rem; }
.contact-label { color: var(--yellow); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; }
.contact-value { font-size: 1.2rem; font-weight: 700; }
.contact-card-static:hover { transform: none; }

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: #cfcfcf;
}
.footer-inner {
  padding: 40px 20px;
  text-align: center;
}
.footer-logo {
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.footer-phone a {
  color: var(--yellow);
  font-weight: 700;
}
.footer-copy {
  margin-top: 20px;
  font-size: .85rem;
  color: #888;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float,
.call-float {
  position: fixed;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
  z-index: 200;
}
.whatsapp-float {
  bottom: 22px;
  background: #25D366;
  animation: pulse 2.2s infinite;
}
.call-float {
  bottom: 92px;
  background: var(--yellow);
  animation: pulse-call 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55), 0 8px 20px rgba(0,0,0,.3); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 20px rgba(0,0,0,.3); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 20px rgba(0,0,0,.3); }
}
@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, .55), 0 8px 20px rgba(0,0,0,.3); }
  70% { box-shadow: 0 0 0 14px rgba(255, 193, 7, 0), 0 8px 20px rgba(0,0,0,.3); }
  100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0), 0 8px 20px rgba(0,0,0,.3); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto; }
  .hero-buttons, .hero-badges { justify-content: center; }
  .hero-visual { order: -1; min-height: 220px; }
  .taxi-check-block { display: none; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }

  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-list { text-align: left; max-width: 420px; margin-left: auto; margin-right: auto; }

  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    border-bottom: 1px solid #262626;
  }
  .nav-toggle { display: flex; }
  .header-call { display: none; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
}

@media (max-width: 640px) {
  section { padding: 50px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-buttons { flex-direction: column; }
}
