/* index2.html — Sivas Taksi standalone */
:root {
  --gold: #ffc400;
  --gold-dark: #e6b000;
  --dark: #0c1117;
  --dark-2: #151d28;
  --text: #5c6573;
  --text-dark: #0f172a;
  --white: #ffffff;
  --bg: #f5f7fa;
  --radius: 16px;
  --font: "Poppins", system-ui, sans-serif;
  --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
}
.logo i { color: var(--gold); font-size: 1.4rem; }
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-desktop a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  transition: 0.2s;
}
.nav-desktop a:hover { color: var(--gold); background: rgba(255,196,0,0.1); }
.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.btn-call-header:hover { background: var(--gold-dark); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 0 16px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.08); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--dark) url("../gorseller/hero.jpg?v=3") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12,17,23,0.94) 0%, rgba(12,17,23,0.75) 55%, rgba(12,17,23,0.5) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,196,0,0.15);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,196,0,0.35);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(255,196,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,196,0,0.45); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}
.hero-trust i { color: var(--gold); }
.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}
.hero-card p { color: rgba(255,255,255,0.6); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin: 0 0 8px; }
.hero-card .phone { font-size: 1.85rem; font-weight: 800; color: var(--gold); margin-bottom: 24px; }
.hero-card .btn-primary { width: 100%; justify-content: center; }

/* Sections */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 12px;
}
.section-head p { margin: 0; font-size: 17px; }

/* Trust strip */
.trust-strip {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid #e8ecf0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item i {
  font-size: 28px;
  color: var(--gold-dark);
  margin-bottom: 8px;
  display: block;
}
.trust-item strong { display: block; color: var(--text-dark); font-size: 15px; }
.trust-item span { font-size: 13px; color: var(--text); }

/* Services */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid #e8ecf0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255,196,0,0.25), rgba(255,196,0,0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon i { font-size: 24px; color: var(--gold-dark); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin: 0 0 10px; }
.service-card p { margin: 0; font-size: 15px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-text h2 { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin: 0 0 16px; }
.about-text p { margin-bottom: 16px; }
.about-text ul { margin: 20px 0 24px; }
.about-text li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-dark);
  font-weight: 500;
}
.about-text li::before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}

/* Gallery */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "\f00e";
  font-family: FontAwesome;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  background: rgba(12,17,23,0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 100%; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
}

/* Reviews */
.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #e8ecf0;
  position: relative;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 56px;
  color: rgba(255,196,0,0.25);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars { color: var(--gold-dark); margin-bottom: 12px; font-size: 14px; }
.review-card p { margin: 0 0 16px; font-size: 15px; }
.review-card cite { font-style: normal; font-weight: 700; color: var(--text-dark); font-size: 14px; }

/* FAQ */
.faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #e8ecf0;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--gold-dark); }
.faq-item[open] summary::after { content: "−"; }
.faq-item div { padding: 0 22px 18px; font-size: 15px; }

/* Contact */
.contact { background: var(--dark); color: rgba(255,255,255,0.8); }
.contact .section-head h2,
.contact .section-head p { color: var(--white); }
.contact .section-label { color: var(--gold); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info a { color: var(--gold); font-weight: 600; }
.contact-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.contact-box h3 { color: var(--white); font-size: 1rem; margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
.contact-box h3 i { color: var(--gold); }
.contact-box p { margin: 0; font-size: 15px; }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  background: var(--dark-2);
}
.contact-map iframe { width: 100%; height: 280px; border: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 48px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--dark); margin: 0 0 12px; }
.cta-band p { margin: 0 0 24px; color: rgba(0,0,0,0.7); font-size: 17px; }
.cta-band .btn-primary { background: var(--dark); color: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-band .btn-primary:hover { background: var(--dark-2); color: var(--white); }

/* Footer */
.site-footer {
  background: #080b0f;
  padding: 40px 0 24px;
  text-align: center;
}
.site-footer .brand { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.site-footer .phone { font-size: 1.1rem; color: var(--gold); font-weight: 700; margin-bottom: 16px; display: block; }
.site-footer p { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; }
.site-footer a { color: var(--gold); }

/* Mobile action bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 58px;
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}
.mobile-bar .bar-call { background: #2563eb; }
.mobile-bar .bar-wa { background: #25d366; }

/* Responsive */
@media (max-width: 991px) {
  .nav-desktop, .btn-call-header { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-bar { display: flex; }
  body { padding-bottom: 58px; }
}
@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}
