* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/Inter-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Inter-Bold.woff2') format('woff2');
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #0f0f1a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Навигация ===== */
.navbar {
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-bottom-color: rgba(255, 215, 0, 0.5);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo i {
  color: #ffd700;
  margin-right: 8px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}
.nav-menu a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #ffd700;
}
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* ===== Fade-in ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Кнопки ===== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a1a2e;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 800;
  transition: 0.3s;
  cursor: pointer;
}
.btn-large {
  font-size: 20px;
  padding: 15px 40px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* ===== Hero ===== */
.hero-wrapper {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('/image/taxi-bg.jpg') center/cover no-repeat;
}
.hero {
  background: none;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ===== Преимущества ===== */
.features {
  padding: 60px 20px;
  text-align: center;
}
.features h2 {
  font-size: 36px;
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.feature-icon {
  font-size: 50px;
  margin-bottom: 15px;
  color: #ffd700;
}

/* ===== Инфо-блок ===== */
.info {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  text-align: center;
  padding: 60px 20px;
  color: #1a1a2e;
}
.info .btn {
  background: #1a1a2e;
  color: #ffd700;
  margin-top: 20px;
}

/* ===== Цены (краткий обзор) ===== */
.preview-section {
  padding: 60px 20px;
  background: #0a0a12;
}
.preview-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.preview-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
}
.preview-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}
.preview-card i {
  font-size: 40px;
  color: #ffd700;
  margin-bottom: 15px;
}
.preview-card h3 {
  margin-bottom: 10px;
}
.preview-card p {
  color: #ccc;
  margin-bottom: 20px;
}

/* ===== Акции (краткий обзор) ===== */
.promo-small {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
  border-left: 4px solid #ffd700;
}

/* ===== Страница цен (аккордеон) ===== */
.accordion-item {
  margin-bottom: 8px;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
  color: #fff;
  border-radius: 12px;
}
.accordion-header:hover {
  background: rgba(255, 255, 255, 0.1);
}
.accordion-header i {
  transition: transform 0.3s;
  color: #ffd700;
  font-size: 1.2rem;
}
.accordion-header.active i {
  transform: rotate(180deg);
}
.accordion-content {
  display: none;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 0 0 12px 12px;
}
.accordion-content.show {
  display: block;
}
.subprice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.subprice-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  font-weight: 500;
  color: #f0f0f0;
}
.subprice-list li:last-child {
  border-bottom: none;
}
.subprice-list li span:first-child {
  flex: 2;
}
.subprice-list li span:last-child {
  font-weight: 800;
  color: #ffd700;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.95rem;
  text-align: center;
  min-width: 80px;
}
@media (max-width: 640px) {
  .accordion-header {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  .accordion-content {
    padding: 12px 16px;
  }
  .subprice-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    padding: 8px 0;
  }
  .subprice-list li span:first-child {
    word-break: break-word;
  }
  .subprice-list li span:last-child {
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 800;
    color: #ffd700;
    font-size: 0.85rem;
    justify-self: end;
  }
}
.price-note {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ===== Страница акций ===== */
.promo-card {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), url('/image/promotions.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  padding: 50px 30px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 40px 0;
}
.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.4);
}
.promo-icon {
  font-size: 72px;
  margin-bottom: 20px;
}
.promo-card h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.promo-date {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f5b042;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 50px;
}
.promo-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.promo-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== Заголовок страницы ===== */
.page-header {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 215, 0, 0.1);
}
.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

/* ===== Футер ===== */
footer {
  background: #0a0a12;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
.social-link {
  font-size: 2rem;
  color: #0077ff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.social-link:hover {
  opacity: 0.8;
}
.gold-link {
  color: #ffd700;
  text-decoration: none;
}
.gold-link:hover {
  text-decoration: underline;
}
footer p a.gold-link {
  margin: 0 15px;
}
.loading-indicator {
  text-align: center;
  padding: 40px;
  font-size: 1.2rem;
  color: #ffd700;
}
.loading-indicator::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 2px solid #ffd700;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Адаптивность ===== */
@media (max-width: 910px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .features h2,
  .preview-section h2,
  .reviews-section h2,
  .page-header h1 {
    font-size: 28px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    border-radius: 0 0 12px 12px;
    display: flex !important;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }
  .hamburger.active {
    color: #ffd700;
  }
  .promo-card h2 {
    font-size: 1.4rem;
  }
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ===== Вакансии ===== */
.vacancies-list {
  padding: 60px 20px;
}
.vacancy-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: 0.3s;
}
.vacancy-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.vacancy-icon {
  font-size: 40px;
}
.vacancy-info h3 {
  margin-bottom: 10px;
  color: #ffd700;
}
.vacancy-info p {
  margin-bottom: 8px;
  color: #ddd;
}
@media (max-width: 768px) {
  .vacancy-item {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .btn-large {
    padding: 10px 20px;
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .logo {
    font-size: 18px;
    white-space: nowrap;
    overflow-x: auto;
  }
  .nav-container {
    gap: 8px;
  }
}

/* ===== Форма отзывов ===== */
.feedback-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
}
.feedback-form {
  background: rgba(30, 30, 46, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 35px 30px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s;
}
.feedback-form:hover {
  transform: translateY(-3px);
}
.feedback-form h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.feedback-form .subtitle {
  color: #a0a0b0;
  margin-bottom: 30px;
  font-size: 0.95rem;
  border-left: 3px solid #ffd700;
  padding-left: 12px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #e0e0e0;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #1e1e2a;
  border: 1px solid #2c2c3a;
  border-radius: 20px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s;
  outline: none;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: #252535;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.feedback-form .btn-submit {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a1a2e;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  margin-top: 10px;
}
.feedback-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}
#formStatus {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 50px;
}
@media (max-width: 640px) {
  .feedback-form {
    padding: 25px 20px;
  }
  .feedback-form h3 {
    font-size: 1.5rem;
  }
}
.feedback-btn-container {
  text-align: center;
  margin: 40px 0 20px;
}
.btn-open-feedback {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a1a2e;
  border: none;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn-open-feedback:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}
.modal-content {
  position: relative;
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(15px);
  margin: 10% auto;
  padding: 30px;
  border-radius: 32px;
  max-width: 550px;
  width: 90%;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
}
.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 32px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: 0.2s;
}
.close-modal:hover {
  color: #ffd700;
}
@media (max-width: 640px) {
  .modal-content {
    margin: 20% auto;
    padding: 20px;
  }
}
.rating-group {
  margin-bottom: 20px;
}
.rating-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}
.rating-stars input {
  display: none;
}
.rating-stars label {
  font-size: 28px;
  color: #555;
  cursor: pointer;
  transition: color 0.1s;
}
.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
  color: #ffd700;
}
.char-counter {
  text-align: right;
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 5px;
}

/* ===== Динамические отзывы (карусель) ===== */
/* ===== Динамические отзывы (карусель) ===== */
.reviews-section {
  padding: 60px 20px;
  background: #0a0a12;
}
.reviews-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.reviews-carousel {
  position: relative;
}

.reviews-carousel__container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 10px 40px 30px;   /* увеличил боковые отступы, чтобы текст не заходил под кнопки */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-carousel__container::-webkit-scrollbar {
  display: none;
}

.review-carousel-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .review-carousel-item {
    flex: 0 0 calc(50% - 15px);
  }
}
@media (min-width: 1024px) {
  .review-carousel-item {
    flex: 0 0 calc(33.333% - 20px);
  }
}

.review-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  transition: 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: bold;
  color: #ffd700;
}

.review-stars {
  display: inline-flex;
  gap: 4px;
  font-size: 18px;
}
.review-stars i {
  transition: all 0.2s ease;
}
.review-stars .fas.fa-star {
  color: #ffd700;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.8));
}
.review-stars .far.fa-star {
  color: #4a4a5a;
}
.review-item:hover .review-stars i {
  transform: scale(1.15);
}
.review-item:hover .review-stars .far.fa-star {
  color: #6a6a7a;
}

.review-message {
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 15px;
  flex: 1;
}
.review-item small {
  color: #888;
  font-size: 0.8rem;
}

/* Кнопки навигации – больше не перекрывают текст */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.carousel-prev,
.carousel-next {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffd700;
  cursor: pointer;
  transition: 0.2s;
  margin: 0;
}
.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255, 215, 0, 0.3);
  transform: scale(1.05);
}

/* На больших экранах можно вернуть кнопки по бокам, но не поверх текста */
@media (min-width: 768px) {
  .reviews-carousel {
    padding: 0 20px;
  }
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 40px);
    left: -20px;
    right: -20px;
    justify-content: space-between;
    margin-top: 0;
    pointer-events: none;
  }
  .carousel-prev,
  .carousel-next {
    pointer-events: auto;
    margin: 0;
    background: rgba(0, 0, 0, 0.7);
  }
  .carousel-prev {
    margin-left: -10px;
  }
  .carousel-next {
    margin-right: -10px;
  }
  .reviews-carousel__container {
    padding: 10px 20px 30px;
  }
}

@media (max-width: 767px) {
  .reviews-carousel__container {
    padding: 10px 15px 20px;
  }
}

.scroll-hint {
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 15px;
}

.no-reviews {
  text-align: center;
  width: 100%;
  padding: 60px 20px;
  font-size: 1.1rem;
  color: #aaa;
  margin: 0;
}