
/* Compact FAQ Styles */
.seo-faq-compact {
    max-width: 800px;
    margin: 30px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-grid {
    display: grid;
    gap: 8px;
}

.faq-card {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    margin: 0;
    -webkit-text-fill-color:white;
}

.faq-toggle {
    width: 100%;
    padding: 9px 16px;
    text-align: left;
    background: black;
    border: none;
    border-bottom: 1px solid #e1e5e9;
    font-size: 15px;
    font-weight: 900;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    text-align:center;
}

.faq-toggle:hover {
    background:black;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    font-size: 18px;
    transition: transform 0.2s;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background:black;
}

.faq-toggle[aria-expanded="true"] + .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-content {
    line-height: 1.6;
    color: white;
    font-family:"HelveticaNeue-Light", "Helvetica Neue Light";
    font-weight:900;
    
}

.faq-wa-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #25D366;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.related-routes {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: black;
    border-radius: 12px;
}

.routes-header {
    text-align: center;
    margin-bottom: 25px;
}

.routes-header h2 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.routes-subtitle {
    color: #718096;
    font-size: 14px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}
.route-link {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    border: 2px solid white;
    border-radius: 8px;
    border-radius: 0px;
    color: white;
    font-size: 14px;
    transition: all 0.2s;
}

.route-link:hover {
    border-color: #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.route-link.current {
    border-color: #4299e1;
    background: #ebf8ff;
    color:black;
}

.route-from, .route-to {
    font-weight: 900;
}

.route-arrow {
    margin: 0 10px;
    color: #718096;
}

.current-badge {
    margin-left: auto;
    padding: 4px 8px;
    background: #4299e1;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.related-routes-subsection {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.related-routes-subsection h3 {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.related-link {
    padding: 2px 6px;
    background: black;
    border: 1px solid green;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    font-family: helvetica;
    font-weight: 900;
}

.related-link:hover {
    border-color: #4299e1;
    color: #4299e1;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
</style>

<style>
/* Premium Booking System Styles */
:root {
  --primary: #1a6b3c;
  --primary-dark: #14552f;
  --primary-light: #2e8b57;
  --secondary: #f8b739;
  --dark: #121212;
  --dark-light: #1e1e1e;
  --light: #f5f5f5;
  --border: rgba(255, 255, 255, 0.1);
  --success: #00c853;
  --warning: #ff9800;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.premium-booking {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.booking-container {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.booking-header {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 30px 40px;
  position: relative;
}

.booking-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 30px;
}

.booking-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
}

.booking-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #000;
  transform: scale(1.1);
}

.step-text {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.step.active .step-text {
  opacity: 1;
  font-weight: 600;
}

.booking-form {
  padding: 40px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid var(--border);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-header h3 {
  margin: 0;
  font-size: 20px;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-reverse {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--light);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-reverse:hover {
  background: rgba(255, 255, 255, 0.15);
}

.route-selector {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: end;
}

.location-input {
  position: relative;
}

.location-input label {
  display: block;
  color: var(--light);
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--light);
  font-size: 16px;
  transition: all 0.2s ease;
}

.input-with-icon input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26, 107, 60, 0.2);
}

.input-with-icon .dropdown-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.popular-routes {
  margin-top: 20px;
}

.quick-select-label {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-size: 14px;
}

.route-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.route-btn {
  background: rgba(26, 107, 60, 0.1);
  border: 1px solid rgba(26, 107, 60, 0.3);
  color: var(--primary-light);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.route-btn:hover {
  background: rgba(26, 107, 60, 0.2);
  transform: translateY(-1px);
}

.passenger-counter {
  display: flex;
  align-items: center;
  gap: 15px;
}

.passenger-counter label {
  color: var(--light);
  font-weight: 500;
  font-size: 14px;
}

.counter {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.counter-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--light);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s ease;
}

.counter-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.counter input {
  width: 60px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--light);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.vehicle-card {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.vehicle-card.active {
  border-color: var(--primary);
  background: rgba(26, 107, 60, 0.1);
}

.vehicle-icon {
  font-size: 32px;
  color: var(--primary-light);
  margin-bottom: 15px;
}

.vehicle-info h4 {
  margin: 0 0 8px;
  color: var(--light);
  font-size: 18px;
}

.vehicle-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0 0 15px;
}

.vehicle-specs {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.vehicle-price {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.price-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.price-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
}

.vehicle-selector {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-card.active .vehicle-selector {
  border-color: var(--primary);
  background: var(--primary);
}

.checkmark {
  color: white;
  font-size: 14px;
  display: none;
}

.vehicle-card.active .checkmark {
  display: block;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid var(--border);
}

.btn-prev, .btn-next {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
}

.btn-prev {
  background: rgba(255, 255, 255, 0.05);
  color: var(--light);
  border: 1px solid var(--border);
}

.btn-next {
  background: var(--primary);
  color: white;
}

.btn-prev:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-next:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.datetime-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  color: var(--light);
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--light);
  font-size: 16px;
  transition: all 0.2s ease;
}

.input-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: var(--light);
}

.checkbox-label input {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
}

.checkbox-text {
  flex: 1;
}

.checkbox-text strong {
  display: block;
  margin-bottom: 4px;
}

.checkbox-text small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  display: block;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.extra-option input {
  display: none;
}

.extra-card {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.extra-option input:checked + .extra-card {
  border-color: var(--primary);
  background: rgba(26, 107, 60, 0.1);
}

.extra-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.extra-card i {
  font-size: 24px;
  color: var(--primary-light);
  margin-bottom: 10px;
  display: block;
}

.extra-card span {
  display: block;
  color: var(--light);
  font-weight: 500;
  margin-bottom: 4px;
}

.extra-card small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.booking-summary {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid var(--border);
  margin-bottom: 25px;
}

.summary-content {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item span {
  color: rgba(255, 255, 255, 0.7);
}

.summary-item strong {
  color: var(--light);
  text-align: right;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  margin-top: 20px;
  border-top: 2px solid var(--primary);
}

.summary-total span {
  color: var(--light);
  font-size: 18px;
}

.total-price {
  color: var(--secondary) !important;
  font-size: 28px !important;
}

.payment-options {
  text-align: center;
}

.option-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 25px 0;
}

.btn-whatsapp, .btn-call, .btn-email {
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  border: none;
  transition: all 0.3s ease;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-call {
  background: var(--primary);
  color: white;
}

.btn-email {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  border: 1px solid var(--border);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-email:hover {
  background: rgba(255, 255, 255, 0.15);
}

.confirmation-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.support-widget {
  position: fixed;
  bottom: 10px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f7;
  z-index: 1000;
  min-width: 260px;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.support-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06);
}

.support-header {
  background: black;
  color: white;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.2px;
}

.support-header i {
  font-size: 22px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.support-options {
  background: black;
}

.support-option {
  display: flex;
  align-items: center;
  padding:15px;
  background: linear-gradient(135deg, #000 0%, #044f21 100%);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.25s ease;
  border: none;
  width: 100%;
  font-family: inherit;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f3f9;
  position: relative;
  overflow: hidden;
}

.support-option:last-child {
  margin-bottom: 0;
}

.support-option:hover {
  background:white;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #0a5e2a;
  border-color: white;
}

.support-option:hover i {
  transform: scale(1.1);
}

.support-option i {
  font-size: 20px;
  color: #4361ee;
  transition: all 0.25s ease;
  width: 24px;
  text-align: center;
}

.support-option:hover i {
  color: white;
}

.support-option::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.support-option:hover::after {
  left: 100%;
}

/* ვიჯეტის დახურვის ღილაკი */
.support-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 18px;
  transition: all 0.2s ease;
}

.support-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
.transfer-details-card {
    background: linear-gradient(135deg, rgba(10, 30, 20, 0.8), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(0, 177, 64, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.transfer-details-card h3 {
    color: #00b140;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid rgba(0, 177, 64, 0.3);
    padding-bottom: 10px;
}

.transfer-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #00b140;
}

.detail-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.detail-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.detail-item div {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .transfer-details-grid {
        grid-template-columns: 1fr;
    }
    
    .transfer-details-card {
        padding: 18px;
    }
}
/* ანიმაცია ვიჯეტის გამოჩენისთვის */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.support-widget {
  animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}

/* რესპონსიულობა */
@media (max-width: 768px) {
  .support-widget {
    bottom: 10px;
    left: 5px;
    max-width: none;
    min-width: auto;
  }
  
  .support-header {
    padding: 6px 6px;
  }
  
  .support-options {
    padding: 4px 6px 8px;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .premium-booking {
    margin: 20px auto;
    padding: 15px;
  }
  
  .booking-header {
    padding: 20px;
  }
  
  .booking-title {
    font-size: 24px;
  }
  
  .booking-form {
    padding: 20px;
  }
  
  .route-selector {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
  
  .datetime-selector {
    grid-template-columns: 1fr;
  }
  
  .option-buttons {
    flex-direction: column;
  }
  
  .step-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-prev, .btn-next {
    width: 100%;
    justify-content: center;
  }
  
  .support-widget {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .booking-steps {
    flex-direction: column;
    gap: 20px;
  }
  
  .booking-steps::before {
    display: none;
  }
  
  .step {
    flex-direction: row;
    gap: 15px;
  }
  
  .step-number {
    margin-bottom: 0;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}