﻿/*Additional - Styles*/

.burger-icon>span {
    background-color: #ffffff;
}

/* базовый список */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

/* базовая галочка (цвет НЕ задаём — берёт цвет текста) */
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: currentColor; /* наследует текущий цвет */
}

/* вариант с синей галочкой */
.check-list--blue li::before {
  color: blue;
}

.check-list-custom {
  list-style: none;
  padding-left: 0;
}

.check-list-custom li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

.check-list-custom li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  /*color: #2ecc71;  цвет галочки */
  font-weight: bold;
}

/* =========================
   SECTION - LOCATION CARDS
========================= */

.locations-cards {
  margin: 40px 0;
}


/* =========================
   GRID (Apple-style container)
========================= */

/* =========================
   SECTION - LOCATION CARDS
========================= */

.locations-cards {
  margin: 40px 0;
}


/* =========================
   GRID (PREMIUM ASYMMETRIC LAYOUT)
========================= */

.location-grid {
  display: grid;
  gap: 22px;

  max-width: 1100px;
  margin: 0 auto;

  grid-template-columns: 1fr;
}

/* tablet */
@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* desktop */
@media (min-width: 1024px) {

  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* 🔥 HERO CARD — airport становится доминирующим */
  .location-card.airport {
    grid-column: span 2;
  }

}


/* =========================
   CARD
========================= */

.location-card {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;

  display: flex;
  flex-direction: column;
  gap: 14px;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

/* premium hover lift */
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

/* subtle glow */
.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at top left, rgba(0,0,0,0.04), transparent 60%);
  transition: opacity .3s ease;
  pointer-events: none;
}

.location-card:hover::after {
  opacity: 1;
}


/* =========================
   TYPOGRAPHY
========================= */

.location-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;

  display: flex;
  align-items: center;
  gap: 12px;
}

.location-card p {
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.location-card .btn {
  align-self: flex-start;
  position: relative;
  z-index: 2;
}


/* =========================
   SVG ICON SYSTEM
========================= */

.location-card h3::before {
  content: "";
  width: 26px;
  height: 26px;
  flex-shrink: 0;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ICON PATHS */

.location-card.airport h3::before {
  background-image: url("/images/icons/airport.svg");
}

.location-card.train h3::before {
  background-image: url("/images/icons/train.svg");
}

.location-card.port h3::before {
  background-image: url("/images/icons/port.svg");
}

.location-card.bus h3::before {
  background-image: url("/images/icons/bus.svg");
}

.location-card.city h3::before {
  background-image: url("/images/icons/city.svg");
}

.location-card.cheap h3::before {
  background-image: url("/images/icons/cheap.svg");
}

.location-card.no-deposit h3::before {
  background-image: url("/images/icons/credit-card.svg");
}

.location-card.zero-excess h3::before {
  background-image: url("/images/icons/shield-halved.svg");
}

/* =========================
   FULLY CLICKABLE CARD
========================= */

.location-card .card-link {
  position: static;
}

.location-card .card-link::after {
  content: "";
  position: absolute;
  inset: 0;
}


/* =========================
   SECTION
========================= */

.benefits-block {
  background: #f5f6f8;
  padding: clamp(40px, 6vw, 80px) 20px;
  text-align: center;
  border-radius: 8px;
}

.benefits-block > p {
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.7;
}


/* =========================
   GRID
========================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}


/* =========================
   ITEM
========================= */

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  transition: transform .25s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
}


/* =========================
   ICON (PREMIUM STYLE)
========================= */

.benefit-item::before {
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 50%;

  background-color: rgba(51,102,255,0.08); /* мягкий синий фон */

  background-size: 28px;
  background-repeat: no-repeat;
  background-position: center;

  transition: transform .25s ease;
}

.benefit-item:hover::before {
  transform: scale(1.08);
}

/* SVG paths */

.benefit-item.categories::before {
  background-image: url("/images/icons/car-on.svg");
}

.benefit-item.pricing::before {
  background-image: url("/images/icons/pricing.svg");
}

.benefit-item.conditions::before {
  background-image: url("/images/icons/thumb.svg");
}


/* =========================
   TYPOGRAPHY
========================= */

.benefit-item h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
  max-width: 340px;
}

.benefit-item p {
  margin: 0;
  line-height: 1.7;
  max-width: 360px;
}

/* =========================
   INFO BLOCK
========================= */

.info-block {
  position: relative;
  padding: clamp(30px, 5vw, 60px) 20px 30px 28px;
}

/* accent line */
.info-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: #3366FF;
  border-radius: 2px;
}


/* =========================
   HEADER
========================= */

.info-header {
  margin-bottom: 20px;
}

/* MOBILE (по умолчанию) */
.info-header h2 {
  margin: 0;
  line-height: 1.2;
}

/* планшет и выше */
@media (min-width: 768px) {
  .info-header h2 {
    line-height: 1.25;
  }
}

/* большой desktop (optional) */
@media (min-width: 1200px) {
  .info-header h2 {
    line-height: 1.8;
  }
}

/* =========================
   CONTENT
========================= */

.info-content {
  max-width: 900px;
}

.info-content p {
  margin: 0 0 18px;
  line-height: 1.7;
}

/* =========================
   FAQ BLOCK
========================= */

.faq-block {
  position: relative;
  margin: 60px 0;
  padding-left: 28px;

  counter-reset: faq-counter;
}

/* main accent line */
.faq-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: #3366FF;
  border-radius: 2px;
}


/* =========================
   TITLE
========================= */

.faq-block > h2 {
  margin: 0 0 36px;
  line-height: 1.2;
}


/* =========================
   FAQ ITEMS
========================= */

.faq-item {
  position: relative;
  margin-bottom: 36px;
  max-width: 900px;
  padding-left: 48px;

  counter-increment: faq-counter;
  transition: transform .2s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

/* numbering system */
.faq-item::before {
  content: counter(faq-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;

  font-weight: 600;
  color: #3366FF;
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* subtle hover movement */
.faq-item:hover {
  transform: translateX(6px);
}


/* =========================
   TYPOGRAPHY
========================= */

.faq-item h3 {
  margin: 0 0 10px;
  line-height: 1.25;
}

.faq-item p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.faq-item p:last-child {
  margin-bottom: 0;
}


/* ===== SECTION ===== */

.car-types-section {
  padding: 70px 0;
  background: #F5F6F8;
  border-radius: 8px;
}

.car-types-section h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 32px;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
  color: #555;
  line-height: 1.6;
}


/* ===== GRID ===== */

.car-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


/* ===== CARD ===== */

.car-type-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.car-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}


/* ===== IMAGE ===== */

.car-type-card img {
  width: 100%;
  height: 200px;

  object-fit: contain;   /* ВСЕ машины одинакового размера */
  object-position: center;

  background: #f3f5f7;
  padding: 20px;
}


/* ===== CONTENT ===== */

.car-type-content {
  padding: 22px;
  flex-grow: 1;
}

.car-type-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.car-type-content p {
  color: #666;
  line-height: 1.6;
}


/* ===== SEASON NOTE ===== */

.season-note {
  margin-top: 40px;
  padding: 20px 25px;
  background: #fff;
  border-left: 4px solid #0d6efd;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}


/* ===== RESPONSIVE ===== */

/* Laptop / small desktop */
@media (max-width: 1100px) {

  .car-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */
@media (max-width: 640px) {

  .car-types-section {
    padding: 50px 0;
  }

  .car-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .car-type-card img {
    height: 170px;
  }

}

/* HERO IMAGE */
.hero-airport {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 25px;
  display: block;
}

/* FLEX LAYOUT FOR INTRO + MAP */
.pickup-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 30px 0;
}

.pickup-text {
  flex: 1;
}

.pickup-map {
  flex: 1;
  text-align: right;
}

.pickup-map img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* TERMINAL CARD IMAGE */
.terminal-card {
  margin: 25px 0;
  padding: 12px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  max-width: 520px;
}

.terminal-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* MOBILE ADAPTATION */
@media (max-width: 768px) {

  .pickup-flex {
    flex-direction: column;
    gap: 25px;
  }

  .pickup-map {
    text-align: left;
  }

  .hero-airport {
    height: 220px;
  }

  .terminal-card {
    max-width: 100%;
  }
}

/* ===== Supplier block container ===== */

.supplier-logos {
  margin-top: 5px;
  padding: 14px 18px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);

  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);

  display: inline-block;
}

/* grid */

.supplier-logos-grid {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* individual logos */

.supplier-logo {
  height: 45px;
  width: auto;
  object-fit: contain;

  padding: 6px 10px;
  border-radius: 8px;

  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 768px) {

  .supplier-logos {
    display: block;
    text-align: center;
    padding: 12px 14px;
  }

  .supplier-logos-grid {
    justify-content: center;
    flex-wrap: nowrap;      /* запрет переноса */
    gap: 14px;              /* меньше расстояние */
  }

  .supplier-logo {
    /*height: 52px;           /* чуть больше */
    padding: 4px 6px;       /* компактнее внутренний отступ */
  }

}

/* =========================
   SITE FOOTER BASE
========================= */

.site-footer {
  color: #dadada;
  font-size: 16px;
  line-height: 1.6;
}

/* ссылки наследуют цвета темы */

.site-footer a {
  color: #dadada;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer a:hover {
  opacity: 0.8;
  color: #e5e5e5;
}

/* =========================
   INNER CONTAINER
   (не задаём width/max-width)
========================= */

.footer-inner {
  padding: 10px 0;
}

/* =========================
   COLUMNS GRID
========================= */

.footer-columns {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) 1fr 1fr 1fr;
  gap: 40px;
}

/* =========================
   HEADINGS
========================= */

.site-footer h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* =========================
   LISTS
========================= */

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 6px;
}

/* =========================
   ABOUT TEXT
========================= */

.footer-about {
  max-width: 420px;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding-top: 20px;
}

.footer-copy {
  margin: 0 0 6px 0;
  font-size: 16px;
}

.footer-seo {
  margin: 0;
  font-size: 16px;
  opacity: 0.8;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-about {
    max-width: none;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* =========================
   MEGAMENU UPDATE
========================= */

.sp-menu-heading {
	color: #ffffff;
}

.sp-megamenu-parent .sp-dropdown-inner ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.sp-megamenu-parent .sp-dropdown-inner li a {
    display: block;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all .25s ease;
}

.sp-megamenu-parent .sp-dropdown-inner li a:hover {
    background: #f3f6fb;
    transform: translateX(4px);
}

.sp-dropdown {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: none;
}

.sp-megamenu-parent .sp-dropdown-inner li a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .2px;
}

/* =========================
   PAGE HOOK
========================= */
.hook {
  display: block;
  border-left: 4px solid #d9d9d9;
  background: #f7f7f7;
  padding: 14px 18px;
  margin: 20px 0;
  color: #000;
  text-decoration: none;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.hook:hover {
  background: #f1f1f1;
  border-left-color: #999;
  transform: translateX(2px);
}

/* =========================
   GRID — smart responsive
========================= */

.cars-grid {
  display: grid;

  /*
    minmax(220px, 1fr):

    минимум — компактная карточка
    максимум — растягивается если карточек мало
  */

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 22px;
  margin: 30px 0;
}

/* =========================
   CARD
========================= */

.car-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ececec;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all 0.25s ease;

  /* ВАЖНО — убрали max-width */
  width: 100%;
}

.car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE
========================= */

.car-image {
  background: #f7f7f7;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.car-image img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.car-image-160 {
  background: #f7f7f7;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.car-image-160 img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
}


/* =========================
   TEXT
========================= */

.car-card h3,
.car-card h4 {
  margin: 16px 16px 8px;
  font-size: 16px;
}

.car-card p {
  margin: 0 16px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* =========================
   FLOAT IMAGE RIGHT
========================= */

.float-image-right {
  float: right;
  max-width: 380px;   /* регулируй под дизайн */
  width: 40%;         /* адаптивная ширина */

  margin: 0 0 20px 30px; /* отступ слева от текста */

  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);

  height: auto;
  display: block;
}

/* clearfix (если родитель ломается по высоте) */

.pickup-text::after {
  content: "";
  display: block;
  clear: both;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .float-image-right {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
  }

}

/* =========================
   CTA SECTION
========================= */

.automatic-internal-links {
  margin: 60px 0;
}

/* =========================
   BUTTON WRAPPER
========================= */

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

/* =========================
   BUTTON BASE
========================= */

.cta-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;

  border-radius: 8px;
  text-decoration: none;
  transition: 0.25s ease;
}

/* PRIMARY */

.primary-cta {
  background: #0d6efd;
  color: #fff;
}

.primary-cta:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}

/* SECONDARY */

.secondary-cta {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #e2e2e2;
}

.secondary-cta:hover {
  background: #fff;
}

/* =========================
   MOBILE CTA ADAPTATION
========================= */

@media (max-width: 768px) {

  .cta-buttons {
    flex-direction: column;
    align-items: flex-start; /* остаётся левое выравнивание */
    gap: 12px;
  }

  .cta-buttons a {
    width: 100%;              /* full width кнопки */
    max-width: 420px;         /* не слишком длинные */
    padding: 14px 16px;
  }

  /* primary чуть сильнее визуально */
  .primary-cta {
    font-size: 16px;
  }

}

/* =========================
   SUV vs Standard comparison (PRO)
========================= */

.suv-comparison {
  padding: 60px 0;
  text-align: left;
}

.suv-comparison h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.suv-comparison > p {
  margin-bottom: 40px;
  line-height: 1.7;
  color: #555;
}

/* GRID */

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */

.comparison-item {
  padding: 28px;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  background: #fff;
  transition: 0.25s ease;
}

/* subtle hover (очень аккуратно) */
.comparison-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

/* TITLE */

.comparison-item h3 {
  font-size: 18px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 14px;
}

/* accent line (визуальный якорь) */
.comparison-item h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 18px;
  background: #ffb400; /* можно заменить на брендовый цвет */
  border-radius: 2px;
}

/* TEXT */

.comparison-item p {
  margin: 0;
  line-height: 1.7;
  color: #666;
}

/* ===== ADAPTIVE ===== */

@media (max-width: 992px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .suv-comparison {
    padding: 40px 0;
  }
}

/* =================================
   HELIX OFFCANVAS TOP GAP — REAL FIX
================================= */

/* убираем space от module wrapper */
.helix-offcanvas .sp-module {
  margin-top: 0 !important;
}

/* убираем padding контейнера */
.helix-offcanvas .offcanvas-inner {
  padding-top: 0 !important;
}

/* иногда именно body создаёт gap */
.helix-offcanvas .offcanvas-body {
  padding-top: 0 !important;
}

/* убрать gap перед первым элементом */
.helix-offcanvas .sp-module:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.helix-offcanvas .offcanvas-header {
  padding-bottom: 10px !important;
  margin-bottom: 0 !important;
}

.offcanvas-menu .offcanvas-inner {
    padding: 0 25px 25px 25px !important;
}

/* =====================================
   ULTRA OFFCANVAS MOBILE MENU
===================================== */

.site-map {
  width: 100%;
  font-size: 16px;
}

/* RESET */
.site-map-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LINKS BASE */
.site-map-list li a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: all .2s ease;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

/* hover */
.site-map-list li a:hover {
  color: #0066ff;
  transform: translateX(6px);
}

/* ==========================
   SECTION TITLES
========================== */

.site-map-list .menu-section {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: #9a9a9a;
  padding: 26px 0 8px;
}

/* ==========================
   AIRPORT = MAIN HUB CTA
========================== */

.site-map-list a[href="/car-rental-valencia-airport"] {
  font-weight: 700;
  font-size: 17px;
  color: #000;
}

.site-map-list a[href="/car-rental-valencia-airport"]::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 65%;
  background: #0066ff;
  border-radius: 3px;
}

/* ==========================
   INTENT BLOCK — PREMIUM CARD STYLE
========================== */

/* начинаем intent зону */
.site-map-list .menu-section + li a {
  margin-top: 4px;
}

/* intent links — ИСПРАВЛЕНО */
.site-map-list a[href*="-car-rental-valencia"],
.site-map-list a[href*="-car-rental-in-valencia"],
.site-map-list a[href*="-car-rental-from-valencia"] {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  background: rgba(0, 102, 255, 0.05);
  margin-bottom: 8px;
}

/* hover for intent — ИСПРАВЛЕНО */
.site-map-list a[href*="-car-rental-valencia"]:hover,
.site-map-list a[href*="-car-rental-in-valencia"]:hover,
.site-map-list a[href*="-car-rental-from-valencia"]:hover {
  background: rgba(0, 102, 255, 0.12);
  transform: translateX(4px);
}

/* ==========================
   SOCIAL AREA
========================== */

.mobile-menu-social {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.mobile-menu-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0,0,0,0.05);
  color: #1a1a1a;
  transition: all .2s ease;
}

.mobile-menu-social a:hover {
  background: #0066ff;
  color: #fff;
  transform: translateY(-3px);
}

/* =========================
   SOCIAL ICONS BRAND STYLE
========================= */

.mobile-menu-social .whatsapp {
  background: #25D366;
  color: #fff;
}

.mobile-menu-social .telegram {
  background: #229ED9;
  color: #fff;
}

/* hover эффект */

.mobile-menu-social .whatsapp:hover {
  background: #1ebe5d;
}

.mobile-menu-social .telegram:hover {
  background: #1c8bc2;
}

.search-widget-wrapper {
  position: relative;
}


/* ==========================
   WIDGET UNDER BUTTON
========================== */
/* кнопка */
.search-toggle {
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background: #2468e5;
  color: white;
  font-weight: 600;
}

/* скрытый виджет */
.search-widget {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease;
}

/* показ */
.search-widget-wrapper.active .search-widget {
  max-height: 700px; /* больше высоты виджета */
  opacity: 1;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .search-toggle {
    width: 100%;
  }
}

/* ==========================
   HERO SECTION for ARTICLES
========================== */

.article-hero {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

/* Левая колонка */
.hero-text {
  flex: 1;
}

/* Правая колонка */
.hero-img {
  flex: 0 0 420px; /* фиксированная ширина картинки */
  max-width: 45%;
}

.hero-img img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Мобильная версия */
@media (max-width: 992px) {
  .article-hero {
    flex-direction: column;
  }

  .hero-img {
    max-width: 100%;
  }
}

/* ==========================
   PREMIUM ARTICLE VIEW
========================== */
.article-section {
  margin: 20px 0;
}

.article-section h2 {
  margin-bottom: 25px;
}

.info-box {
  background: #f7f9fc;
  padding: 25px 30px;
  border-radius: 16px;
  margin: 25px 0;
}

/* ===== КАРУСЕЛЬ ARTICLES ===== */

.guide-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.guide-card {
  padding: 25px;
  border-radius: 12px;
  background: #f8f9fb;
  transition: 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
}

.guide-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}


/* ===== МОИ ДОБАВКИ (карусель) ===== */

/* wrapper */

.guide-carousel {
  position: relative;
}

/* viewport */

.guide-carousel-viewport {
  overflow: hidden;
}

/* превращаем grid в горизонтальный поток
   только внутри карусели */

.guide-carousel .guide-articles-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
}

/* ширина карточек — 3.5 на экран */

.guide-carousel .guide-card {
  flex: 0 0 calc(100% / 3.5);
}


/* ===== ARROWS ===== */

.guide-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;

  width: 42px;
  height: 42px;

  border-radius: 50%;
  border: none;

  background: white;
  cursor: pointer;

  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.guide-arrow-left {
  left: -20px;
}

.guide-arrow-right {
  right: -20px;
}
/* ===== MOBILE ADAPTATION ===== */

@media (max-width: 1024px) {

  /* планшеты — видно 2.2 карточки */

  .guide-carousel .guide-card {
    flex: 0 0 calc(100% / 2.2);
  }

}

@media (max-width: 768px) {

  /* мобильные — видно 1.2 карточки */

  .guide-carousel .guide-card {
    flex: 0 0 calc(100% / 1.2);
  }

  /* уменьшаем gap */

  .guide-carousel .guide-articles-grid {
    gap: 20px;
  }

  /* стрелки меньше */

  .guide-arrow {
    width: 36px;
    height: 36px;
  }

}

@media (max-width: 480px) {

  /* маленькие телефоны — почти 1 карточка */

  .guide-carousel .guide-card {
    flex: 0 0 85%;
  }

}

/* ============================= */
/* ONE WAY ROUTES SECTION */
/* ============================= */

.oneway-routes {

  margin: 0px auto;

  /*max-width: 1240px;*/

  padding: 0 0px;

}


/* ============================= */
/* HEADER — LEFT ALIGN */
/* ============================= */

.oneway-routes h2 {

  text-align: left;

  margin-bottom: 12px;

  font-size: 32px;

  font-weight: 700;

  color: #1f1f1f;

}


/* Желтый акцент перед заголовком */

.oneway-routes h2::before {

  content: "";

  display: inline-block;

  width: 6px;

  height: 28px;

  background: #ffc107;

  margin-right: 12px;

  border-radius: 3px;

  vertical-align: middle;

}


.oneway-routes p {

  text-align: left;

  max-width: 720px;

  margin-bottom: 36px;

  color: #555;

  line-height: 1.6;

}


/* ============================= */
/* GRID — максимум 4 карточки */
/* ============================= */

.routes-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

}


/* Адаптив */

@media (max-width: 1200px) {

  .routes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 900px) {

  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 520px) {

  .routes-grid {
    grid-template-columns: 1fr;
  }

}


/* ============================= */
/* CARD */
/* ============================= */

.route-card {

  position: relative;

  border-radius: 16px;

  overflow: hidden;

  background: #f3f3f3;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;

}


/* Hover — подъем и тень */

.route-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 14px 30px rgba(0,0,0,0.18);

}


/* ============================= */
/* IMAGE */
/* ============================= */

.route-card-image {

  position: relative;

  width: 100%;

  height: 220px;

  background-size: cover;

  background-position: center;

  /* Серое фото по умолчанию */

  filter: grayscale(100%) brightness(0.75);

  transition:
    filter 0.35s ease,
    transform 0.35s ease;

}


/* Цвет + лёгкий zoom */

.route-card:hover .route-card-image {

  filter: grayscale(0%) brightness(0.85);

  transform: scale(1.05);

}


/* ============================= */
/* DARK OVERLAY */
/* ============================= */

.route-card-overlay {

  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 20px;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.15) 70%,
      rgba(0,0,0,0) 100%
    );

  color: white;

}


/* ============================= */
/* TITLE */
/* ============================= */

.route-card-title {

  font-size: 18px;

  font-weight: 700;

  margin-bottom: 6px;

  color: #fff;

}


/* ============================= */
/* META */
/* ============================= */

.route-card-meta {

  font-size: 14px;

  opacity: 0.9;

  margin-bottom: 14px;

}


/* ============================= */
/* BUTTON */
/* ============================= */

.route-card-btn {

  display: inline-block;

  background: #ffc107;

  color: #000;

  font-size: 14px;

  font-weight: 600;

  padding: 8px 14px;

  border-radius: 8px;

  width: fit-content;

  transition: background 0.2s ease;

}


/* Hover кнопки */

.route-card:hover .route-card-btn {

  background: #ffb300;

}


/* ============================= */
/* DISABLED STATE */
/* ============================= */

.route-card-disabled {

  cursor: default;

}


/* отключаем hover у Coming Soon */

.route-card-disabled:hover {

  transform: none;

  box-shadow: none;

}

.route-card-disabled:hover .route-card-image {

  transform: none;

}


/* ============================= */
/* FULL CLICKABLE CARD */
/* ============================= */

.route-card-link {

  display: block;

  height: 100%;

  text-decoration: none;

  color: inherit;

}