/* ============================================
   Kızıltepe Taksi - Modern Mobile-First Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors - Taxi Theme */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --bg-glass: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.08);

  --yellow-primary: #FFD700;
  --yellow-light: #FFE44D;
  --yellow-dark: #E6C200;
  --yellow-glow: rgba(255, 215, 0, 0.15);

  --green-cta: #25D366;
  --green-cta-hover: #1EBE57;
  --blue-call: #3B82F6;
  --blue-call-hover: #2563EB;

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 60px 0;
  --container-padding: 0 20px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.2);
  --shadow-button: 0 4px 15px rgba(255, 215, 0, 0.3);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 120px;
  /* Space for sticky CTA */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header / Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow-primary);
  letter-spacing: -0.02em;
}

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-primary);
  color: #000;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.nav-call-btn:hover {
  background: var(--yellow-light);
  box-shadow: var(--shadow-button);
}

.nav-call-btn i {
  font-size: 0.9rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg,
      var(--bg-primary) 0%,
      #1a1a2e 40%,
      #16213e 70%,
      var(--bg-primary) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 60%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-glow);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--yellow-primary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 .highlight {
  color: var(--yellow-primary);
  position: relative;
}

.hero .subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-call {
  background: var(--yellow-primary);
  color: #000;
  box-shadow: var(--shadow-button);
  font-size: 1.1rem;
}

.btn-call:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-call:active {
  transform: translateY(0);
}

.btn-whatsapp {
  background: var(--green-cta);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--green-cta-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn i {
  font-size: 1.1em;
}

/* --- Section Styles --- */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-glow);
  color: var(--yellow-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- Pricing Cards --- */
.pricing-section {
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.price-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.price-card:hover::before {
  opacity: 1;
}

.price-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-4px);
}

.price-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--yellow-primary);
  font-size: 1.3rem;
}

.price-label {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow-primary);
  line-height: 1;
}

.price-value small {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--text-secondary);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(255, 215, 0, 0.15);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--yellow-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-primary);
  font-size: 1.2rem;
}

.service-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* --- Gallery Section --- */
.gallery-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 16px;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 260px;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

/* --- Map Section --- */
.map-section {
  padding: 0;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 20px;
  border: 1px solid var(--border-glass);
}

.map-wrapper iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: brightness(0.85) contrast(1.1);
}

.map-info {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  padding: 20px;
  text-align: center;
}

.map-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.map-info p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
  transition: var(--transition);
}

.map-open-link:hover {
  color: var(--yellow-light);
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  cursor: pointer;
}

.contact-card:hover {
  border-color: rgba(255, 215, 0, 0.15);
  background: var(--bg-card-hover);
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--yellow-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-primary);
  font-size: 1.1rem;
}

.contact-info h3 {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.contact-info p {
  font-size: 0.95rem;
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 40px 0 160px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-brand span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow-primary);
}

.footer-info {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-info a {
  color: var(--yellow-primary);
  transition: var(--transition);
}

.footer-info a:hover {
  color: var(--yellow-light);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--yellow-primary);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* --- Sticky CTA --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glass);
  padding: 12px 20px;
  display: flex;
  gap: 10px;
}

.sticky-cta .btn {
  flex: 1;
  padding: 14px 10px;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
}

.sticky-cta .btn-call {
  flex: 2;
}

/* --- Gizlilik Politikası Sayfası --- */
.policy-page {
  padding: 80px 20px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.policy-page h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--yellow-primary);
}

.policy-page .policy-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
}

.policy-page h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.policy-page p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.policy-page ul {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
  padding-left: 20px;
}

.policy-page li {
  margin-bottom: 6px;
}

.policy-page strong {
  color: var(--text-primary);
}

.policy-highlight {
  background: var(--yellow-glow);
  border-left: 3px solid var(--yellow-primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 20px 0;
}

.policy-highlight p {
  color: var(--text-primary) !important;
  margin-bottom: 0 !important;
}

.ticari-bilgiler {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 20px 0;
}

.ticari-bilgiler ul {
  list-style: none;
  padding-left: 0;
}

.ticari-bilgiler li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border-glass);
}

.ticari-bilgiler li:last-child {
  border-bottom: none;
}

/* --- Desktop Responsive (min-width) --- */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero .subtitle {
    font-size: 1.15rem;
  }

  .hero-actions {
    flex-direction: row;
    max-width: 500px;
  }

  .pricing-grid {
    gap: 20px;
  }

  .price-card {
    padding: 32px 24px;
  }

  .price-value {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 32px 24px;
  }

  .gallery-item {
    flex: 0 0 320px;
  }

  .map-wrapper {
    margin: 0;
  }

  .map-wrapper iframe {
    height: 380px;
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 0 40px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .services-grid {
    gap: 24px;
  }

  .gallery-item {
    flex: 0 0 380px;
  }

  .map-wrapper iframe {
    height: 450px;
  }

  .sticky-cta {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
  }

  .footer {
    padding-bottom: 180px;
  }

  body {
    padding-bottom: 0;
  }
}

/* ============================================
   Tarife Page - Route Cards & Calculator
   ============================================ */

/* --- Route Cards --- */
.route-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.route-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: var(--transition);
}

.route-card:hover {
  border-color: rgba(255, 215, 0, 0.15);
  background: var(--bg-card-hover);
}

.route-left {
  flex: 1;
  min-width: 0;
}

.route-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-name i {
  color: var(--yellow-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.route-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.route-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.route-meta span i {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.route-price {
  text-align: right;
  flex-shrink: 0;
}

.route-price .price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow-primary);
  line-height: 1;
}

.route-price .price-note {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Calculator --- */
.calculator-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
}

.calculator-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.calculator-card .calc-subtitle {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.calc-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.calc-input-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.calc-input-wrapper input {
  width: 120px;
  padding: 14px 50px 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: var(--transition);
  -moz-appearance: textfield;
  appearance: textfield;
}

.calc-input-wrapper input::-webkit-outer-spin-button,
.calc-input-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-input-wrapper input:focus {
  border-color: var(--yellow-primary);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.calc-input-wrapper .input-suffix {
  position: absolute;
  right: 14px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
}

.calc-result {
  background: var(--yellow-glow);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 8px;
}

.calc-result .result-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.calc-result .result-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow-primary);
  line-height: 1;
}

.calc-result .result-value small {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--text-secondary);
}

.calc-result .result-breakdown {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* --- FAQ / Accordion --- */
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(255, 215, 0, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  user-select: none;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question:focus-visible {
  outline: 2px solid var(--yellow-primary);
  outline-offset: -2px;
  background: var(--bg-card-hover);
}

.faq-question i {
  color: var(--yellow-primary);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.faq-answer-inner {
  padding: 0 20px 16px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- Info Tips --- */
.tip-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tip-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tip-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--yellow-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-primary);
  font-size: 1rem;
}

.tip-content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.tip-content p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* --- Disclaimer --- */
.disclaimer {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.disclaimer i {
  color: var(--yellow-primary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.disclaimer p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* --- Desktop for Tarife --- */
@media (min-width: 768px) {
  .route-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .tip-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .calc-result .result-value {
    font-size: 2.8rem;
  }
}
