:root {
  /* Kurumsal palet: soğuk nötr + kontrollü altın */
  --brand: #b8860b;
  --brand-bright: #d4a84b;
  --brand-muted: rgba(184, 134, 11, 0.14);
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --surface: #f1f5f9;
  --surface-elevated: #ffffff;
  --surface-subtle: #e8eef4;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 18px 48px rgba(15, 23, 42, 0.08);
  --shadow-header: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 30px rgba(15, 23, 42, 0.04);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Poppins", system-ui, -apple-system, sans-serif;
  --focus-ring: 0 0 0 2px var(--surface-elevated), 0 0 0 4px var(--brand);
  /* Eski değişken adları (şablon uyumu) */
  --yellow: var(--brand);
  --yellow-dark: #8a6a08;
  --yellow-soft: var(--brand-muted);
  --black: #0f172a;
  --paper: var(--surface);
  --paper-2: var(--surface-subtle);
  --card: #ffffff;
  --ink-2: var(--ink-soft);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible,
.btn:focus-visible,
.fab-pill:focus-visible,
.hero-cta:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

button:focus-visible,
.nav-toggle:focus-visible {
  border-radius: 999px;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: var(--yellow);
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
  box-shadow: none;
  outline: 2px solid #000;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-header);
  border-bottom-color: var(--border-strong);
}

.site-header.is-scrolled .header-inner {
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  transition: padding 0.35s var(--ease-out);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.logo:hover {
  color: var(--ink-2);
  opacity: 0.92;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-bright), var(--brand));
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.28);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
}

.nav-desktop a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  padding: 8px 6px;
  color: var(--ink);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.25s var(--ease-out);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}

.nav-desktop a:hover {
  background: rgba(15, 23, 42, 0.05);
  color: var(--ink);
}

.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta-desktop {
  display: none;
  gap: 10px;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-elevated);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.oval-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.oval-menu.is-open {
  pointer-events: auto;
  opacity: 1;
}

.oval-menu[hidden] {
  display: none;
}

.oval-menu-inner {
  width: min(420px, 92vw);
  padding: 28px 24px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.4s var(--ease-out);
}

.oval-menu.is-open .oval-menu-inner {
  transform: translateY(0) scale(1);
}

.oval-menu-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
  text-align: center;
}

.oval-menu-list a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
}

.oval-menu-list a:hover {
  background: var(--surface-subtle);
  border-color: var(--border-strong);
}

.oval-menu-cta {
  display: grid;
  gap: 10px;
}

.fab-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.fab-item {
  white-space: nowrap;
  font-size: 0.85rem;
  padding-inline: 14px;
}

.fab-ico {
  margin-right: 6px;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .header-cta-desktop {
    display: flex;
  }

  .fab-bar {
    display: none;
  }

  /* Masaüstünde mobil oval menü tamamen kapalı */
  .oval-menu,
  .oval-menu.is-open {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }

  .site-header.is-open .nav-toggle-bar:nth-child(1),
  .site-header.is-open .nav-toggle-bar:nth-child(2),
  .site-header.is-open .nav-toggle-bar:nth-child(3) {
    transform: none;
    opacity: 1;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.28s var(--ease-out), background 0.25s var(--ease-out), filter 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 14px 22px;
  font-size: 1rem;
}

.btn-dark {
  background: var(--black);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.btn-dark:hover {
  background: #000;
}

.btn-yellow {
  background: var(--yellow);
  color: #111;
}

.btn-yellow:hover {
  background: var(--yellow-dark);
}

.btn-wa {
  background: #25d366;
  color: #052e16;
}

.btn-wa:hover {
  filter: brightness(0.95);
}

.hero {
  position: relative;
  padding: 52px 0 64px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface-elevated) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.95) 0%, rgba(255, 255, 255, 0.5) 45%, rgba(241, 245, 249, 0.35) 100%),
    radial-gradient(ellipse 80% 55% at 85% 15%, rgba(184, 134, 11, 0.06), transparent 52%);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2364748b' stroke-opacity='0.07'%3E%3Cpath d='M0 32h64M32 0v64'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    padding: 24px 0 8px;
  }
}

.hero-copy h1 {
  font-size: clamp(2.05rem, 4.2vw, 2.95rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.hero-lead {
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 52ch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 12px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.hero-card-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.hero-card-favicon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
}

.hero-visual:hover .hero-card {
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(184, 134, 11, 0.25) inset;
}

.hero-card img {
  border-radius: 20px;
  background: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 56px 0;
}

.section-tint {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-dark {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.section-head h1,
.section-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 auto 12px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.section-head h1::after,
.section-head h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
}

.section-dark .section-head h2 {
  color: #fafafa;
}

.section-dark .section-head h2::after {
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
}

.section-head .muted {
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.55;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.muted.light {
  color: #cbd5e1;
}

.two-col {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
}

.about-card {
  border-radius: var(--radius);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-card-inner {
  padding: 26px 24px;
  position: relative;
}

.big-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--yellow-dark);
  position: absolute;
  top: 10px;
  left: 16px;
  opacity: 0.35;
}

.about-card-inner p {
  margin: 18px 0 0;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 800px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat-card {
  background: var(--surface-elevated);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 134, 11, 0.35);
}

.stat-value {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 800px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 24px 22px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.35s ease, box-shadow 0.4s var(--ease-out);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-dark), var(--yellow));
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 0.35s var(--ease-out), transform 0.45s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 134, 11, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.service-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-card h3 {
  margin: 10px 0 8px;
}

.service-card p {
  margin: 0;
  color: #d6d6d6;
}

.service-icon {
  font-size: 1.6rem;
}

.center {
  text-align: center;
}

.mt-lg {
  margin-top: 28px;
}

.mt-md {
  margin-top: 18px;
}

.contact-grid {
  display: grid;
  gap: 22px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.contact-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.phone-big {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.map-wrap iframe {
  width: 100%;
  border: 0;
}

.prose {
  max-width: 72ch;
}

.prose h2 {
  margin-top: 1.6em;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
}

.link-arrow::after {
  content: "→";
}

.blog-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 800px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card a {
  display: block;
  padding: 20px;
  height: 100%;
  text-decoration: none;
}

.blog-card h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.blog-card time {
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-intro {
  margin-top: 12px;
}

.post-single .post-head time {
  color: var(--muted);
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #e2e8f0;
  padding: 36px 0 18px;
  margin-top: 40px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.45), transparent);
  pointer-events: none;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.footer-muted {
  color: #bdbdbd;
  margin: 6px 0 0;
}

.footer-partner a {
  color: var(--brand-bright);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9c9c9c;
}

.anim-rise {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-rise.is-visible {
  opacity: 1;
  transform: none;
}

.anim-delay-1 {
  transition-delay: 0.08s;
}

.anim-delay-2 {
  transition-delay: 0.16s;
}

.anim-delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .anim-rise {
    opacity: 1;
    transform: none;
  }

  .hero-card--motion {
    animation: none;
  }

  .svc-icon-wrap--pulse {
    animation: none;
  }
}

.btn-ico {
  margin-right: 6px;
}

.hero-card--motion {
  animation: taxi-float 5s ease-in-out infinite;
}

@keyframes taxi-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.cv-auto {
  content-visibility: auto;
  contain-intrinsic-size: 1px 480px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.taxi-band {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
}

.taxi-band-inner {
  display: grid;
  gap: 22px;
  align-items: center;
}

@media (min-width: 900px) {
  .taxi-band-inner {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.taxi-band-bullets {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.taxi-band-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.taxi-band-bullets span {
  color: var(--brand-bright);
  font-weight: 700;
}

.taxi-band-visual img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.regions-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.2s ease;
}

.region-pill:hover {
  transform: translateY(-2px);
  background: var(--surface-subtle);
  border-color: var(--border-strong);
}

.region-pill--all {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-bright) 100%);
  color: var(--ink);
  border-color: rgba(184, 134, 11, 0.45);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--surface-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.faq-item:hover {
  border-color: rgba(184, 134, 11, 0.28);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.08);
}

.faq-item[open] {
  border-color: rgba(184, 134, 11, 0.4);
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.1);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.faq-item summary:hover {
  background: var(--yellow-soft);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--brand-muted);
  color: var(--ink);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  transition: background 0.25s ease, transform 0.3s var(--ease-out);
}

.faq-item[open] summary::after {
  content: "−";
  background: linear-gradient(135deg, var(--brand), var(--brand-bright));
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--muted);
  border-top: none;
  line-height: 1.65;
  animation: faq-reveal 0.35s var(--ease-out);
}

@keyframes faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.regions-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .regions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .regions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.region-card {
  display: block;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.region-card:hover {
  transform: translateY(-4px);
}

.region-card h2 {
  margin: 8px 0 10px;
  font-size: 1.1rem;
}

.region-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.region-ico {
  font-size: 1.2rem;
}

.logo-mark--taxi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-bright), var(--brand));
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.28);
}

.hero-actions--premium {
  gap: 14px;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.hero-cta:hover {
  transform: translateY(-2px);
}

.hero-cta--call {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.35);
}

.hero-cta--wa {
  background: linear-gradient(135deg, #2fe06d, #25d366);
  color: #04210f;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.35);
}

.hero-cta-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.28), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.hero-cta-glow--wa {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 55%);
}

.hero-cta:hover .hero-cta-glow {
  opacity: 1;
}

.hero-cta-ico {
  display: inline-flex;
  flex-shrink: 0;
}

.hero-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.15;
}

.hero-cta-text strong {
  font-size: 1rem;
}

.hero-cta-text small {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.88;
}

.section-about-premium {
  background: linear-gradient(180deg, var(--surface-elevated) 0%, var(--surface) 55%, var(--surface-subtle) 100%);
  border-block: 1px solid var(--border);
}

.about-premium-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-premium-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
  }
}

.about-premium-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--surface-elevated);
  transition: box-shadow 0.4s var(--ease-out), transform 0.45s var(--ease-out);
}

.about-premium-visual:hover .about-premium-frame {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.about-premium-frame img {
  width: 100%;
  height: auto;
}

.about-premium-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.about-premium-text {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-premium-cta {
  margin-bottom: 20px;
}

.about-quote-card {
  position: relative;
  margin-top: 8px;
  padding: 22px 22px 22px 26px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.about-quote-card .big-quote {
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 2.8rem;
  color: var(--brand-bright);
  opacity: 0.4;
}

.about-quote-card p {
  margin: 18px 0 0;
  font-weight: 500;
  font-size: 1.02rem;
}

.service-icon .svc-icon-wrap {
  display: inline-flex;
}

.service-icon .svc-svg {
  width: 40px;
  height: 40px;
}

.service-card .svc-icon-wrap {
  color: var(--brand);
}

.svc-icon-wrap--pulse {
  animation: svc-pulse 2.4s ease-in-out infinite;
}

@keyframes svc-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(184, 134, 11, 0));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 6px 12px rgba(184, 134, 11, 0.35));
  }
}

.contact-mega {
  position: relative;
  padding: 64px 0 72px;
  color: #e2e8f0;
  overflow: hidden;
  background: #0f172a;
}

.contact-mega::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, var(--brand), var(--brand-bright), transparent);
  pointer-events: none;
}

.contact-mega-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 50% -10%, rgba(30, 41, 59, 0.85), transparent 58%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 45%, #0f172a 100%);
  pointer-events: none;
}

.contact-mega-inner {
  position: relative;
  z-index: 1;
}

.contact-mega-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.contact-mega-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-mega-head h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
}

.contact-mega-lead {
  margin: 0;
  color: #94a3b8;
  font-size: 1.05rem;
}

.contact-mega-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 960px) {
  .contact-mega-grid {
    grid-template-columns: 1fr 1fr 1.4fr;
    align-items: stretch;
  }
}

.contact-card {
  border-radius: var(--radius);
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, box-shadow 0.35s var(--ease-out);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 75, 0.35);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.45);
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.contact-card-ico {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand-bright);
}

.contact-mega-tel {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  color: #f8fafc;
}

.contact-mega-tel:hover {
  text-decoration: underline;
}

.contact-card-hint {
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: #94a3b8;
}

.contact-mega-wa {
  width: 100%;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.site-footer--after-contact {
  margin-top: 0;
  padding-top: 40px;
}

.footer-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  padding-bottom: 22px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-regions a {
  font-size: 0.88rem;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
}

.footer-regions a:hover {
  color: var(--brand-bright);
  text-decoration: underline;
}

.fab-bar--premium {
  gap: 12px;
  padding: 12px 14px;
  background: rgba(13, 13, 13, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.fab-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.fab-pill:hover {
  transform: translateY(-2px);
}

.fab-pill--call {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.45);
}

.fab-pill--wa {
  background: linear-gradient(135deg, #3ae078, #25d366);
  color: #031a0c;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.fab-pill-ico {
  display: inline-flex;
}

.fab-pill-text strong {
  font-size: 0.9rem;
}

.is-home .section {
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.is-home .section-head .muted {
  color: var(--muted);
}
