﻿/*Additional - Styles*/

.sp-megamenu-parent>li.active>a {
    font-weight: 600;
	color: #0345BF;
}

.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;
}

/* =========================
   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;
}


/* =========================
   BENEFITS GRID
========================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
/* =========================
   ITEM
========================= */
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #e7ebf2;
    border-radius: 18px;
    padding: 34px 28px;

    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    transition: all .25s ease;
}
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(15,23,42,.08);
}
/* =========================
   ICON
========================= */
.benefit-item::before {
    content: "";
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #FFC926;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .25s ease;
}
.benefit-item:hover::before {
    transform: scale(1.08);
}
/* SVG */
.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");
}
.benefit-item.trust::before {
    background-image: url("/images/icons/trust.svg");
}
.benefit-item.flex-protection::before {
    background-image: url("/images/icons/shield-halved.svg");
}
.benefit-item.secure::before {
    background-image: url("/images/icons/secure.svg");
}
.benefit-item.book-open::before {
    background-image: url("/images/icons/book-open.svg");
}
/* =========================
   TYPOGRAPHY
========================= */
.benefit-item h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #1f2937;
}
.benefit-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #5f6672;
}
/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .benefit-item {
        padding: 28px 22px;
    }
    .benefit-item::before {
        width: 64px;
        height: 64px;
        background-size: 28px;
    }
    .benefit-item h3 {
        font-size: 22px;
    }
}

/* =========================
   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
========================================== */

.faq-block {
    margin: 60px 0;
}
.faq-block > h2 {
    margin-bottom: 18px;
}
.faq-block > p {
    margin-bottom: 40px;
}

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

.faq-item {
    position: relative;
    margin-bottom: 22px;
    padding: 28px 30px 28px 82px;
    background: #fff;
    border: 1px solid #e7ebf2;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    transition: all .25s ease;
    counter-increment: faq-counter;
}

.faq-item:last-child {
    margin-bottom: 0;
}
.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15,23,42,.08);
}

/* ==========================================
   NUMBER
========================================== */

.faq-block {
    counter-reset: faq-counter;
}

.faq-item::before {
    content: counter(faq-counter, decimal-leading-zero);
    position: absolute;
    left: 24px;
    top: 28px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf4ff;
    color: #2468E5;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

/* ==========================================
   QUESTION
========================================== */

.faq-item h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    color: #1f2937;
}


/* ==========================================
   ANSWER
========================================== */

.faq-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #5f6672;
}


/* ==========================================
   HOVER ACCENT
========================================== */

.faq-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #FFC926;
    border-radius: 18px 0 0 18px;
    opacity: 0;
    transition: opacity .25s;
}

.faq-item:hover::after {
    opacity: 1;
}

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

@media (max-width:640px){
    .faq-item{
        padding:24px 22px 24px 72px;
    }

    .faq-item::before{
        left:18px;
        top:24px;
        width:38px;
        height:38px;
        font-size:12px;
    }
    .faq-item h3{
        font-size:20px;
    }
}


/* ===== 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%;
  }
}

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

.company-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid #edf2f7;

}

.supplier-card-logo {
    display: block;
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 18px;
}

.company-header h3 {
    margin: 0;
    text-align: center;

}

/* =========================
   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);
}

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

.cars-grid {
    display: grid;
    gap: 22px;
    margin: 30px 0;
}

/* 4 cards */

.cars-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* 5 cards */

.cars-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* 6 cards */

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

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

.car-card {

    background: #fff;
    border: 1px solid #e7ebf2;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    overflow: hidden;
    transition: all .25s ease;
    width: 100%;
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15,23,42,.08);
}

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

.car-image,
.car-image-160 {
    background: linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.car-image {
    height: 170px;
}

.car-image-160 {
    height: 190px;
}

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

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


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

.car-card h3,
.car-card h4 {
    margin: 18px 20px 10px;
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
}

.car-card p {
    margin: 0 20px 22px;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

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

@media (max-width:992px){
    .cars-grid-4,
    .cars-grid-5,
    .cars-grid-6{
        grid-template-columns:repeat(2,1fr);
    }
}

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

@media (max-width:640px){
    .cars-grid-4,
    .cars-grid-5,
    .cars-grid-6{
        grid-template-columns:1fr;
    }

    .cars-grid{
        gap:18px;
    }
    .car-card h3,
    .car-card h4{

        font-size:20px;
    }
    .car-card p{
        font-size:15px;
    }
    .car-image{
        height:160px;
    }
    .car-image-160{
        height:180px;
    }
}

/* =========================
   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 24px rgba(15, 23, 42, .05);

  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: 24px 0;
}
.article-section h2 {
    margin-bottom: 22px;
}

/* ==========================================
   INFO BOX
========================================== */

.info-box {
    position: relative;
    margin: 30px 0;
    padding: 30px 32px;
    border: 2px solid #8fc5ff;
    border-radius: 18px;
    background: linear-gradient(180deg,#f5fbff 0%,#ffffff 100%);
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
}

.info-box h3 {

    margin: 0 0 16px;
    color: #0f5ea8;
    font-size: 24px;
    font-weight: 600;

}
.info-box p {

    margin: 0 0 16px;
    line-height: 1.8;

}
.info-box p:last-child {
    margin-bottom: 0;
}
/* ==========================================
   MOBILE
========================================== */

@media (max-width:640px){
    .info-box{
        padding:24px;
    }
}

/* ==========================================
   GUIDE CAROUSEL
========================================== */

.guide-carousel {
    position: relative;
    margin: 40px 0 20px;
}
.guide-carousel-viewport {
    overflow: hidden;
}
.guide-carousel .guide-articles-grid {
    display: flex;
    gap: 28px;
    transition: transform .45s ease;
}

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

.guide-carousel .guide-card {
    position: relative;
    flex: 0 0 calc(100% / 3.4);
    background: #fff;
    border: 1px solid #e7ebf2;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    transition: all .25s ease;
    overflow: hidden;
}

/* синяя полоска сверху */

.guide-carousel .guide-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: #2468E5;
}
.guide-carousel .guide-card:hover {
    transform: translateY(-6px);
    border-color: #2468E5;
    box-shadow: 0 16px 38px rgba(36,104,229,.14);
}

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

.guide-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
}
.guide-card h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: .25s;
}
.guide-card:hover h3 a {
    color: #2468E5;
}

/* ==========================================
   DESCRIPTION
========================================== */

.guide-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #5f6672;
}

/* ==========================================
   READ MORE ACCENT
========================================== */

.guide-card::after {
    content: "Read guide →";
    display: inline-block;
    margin-top: 22px;
    font-size: 15px;
    font-weight: 600;
    color: #2468E5;
    transition: .25s;
}
.guide-card:hover::after {
    color: #FFC926;
    transform: translateX(5px);
}

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

.guide-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #2468E5;
    font-size: 28px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15,23,42,.12);
    transition: .25s;
}
.guide-arrow:hover {
    background: #2468E5;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.guide-arrow-left {
    left: -26px;
}
.guide-arrow-right {
    right: -26px;
}

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

@media (max-width:1024px){
    .guide-carousel .guide-card{
        flex:0 0 calc(100% / 2.2);
    }
}

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

@media (max-width:768px){
    .guide-carousel .guide-articles-grid{
        gap:20px;
    }
    .guide-carousel .guide-card{
        flex:0 0 calc(100% / 1.2);
        padding:24px;
    }
    .guide-card h3{
        font-size:20px;
    }
    .guide-arrow{
        width:42px;
        height:42px;
        font-size:22px;
    }
}
@media (max-width:480px){
    .guide-carousel .guide-card{
        flex:0 0 86%;
    }
}

/* ============================= */
/* 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;

  transition: transform 0.35s ease;
}

/* Цвет + лёгкий zoom */
.route-card:hover .route-card-image {
  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(10,18,35,.42) 0%,
rgba(10,18,35,.22) 42%,
rgba(10,18,35,.08) 72%,
transparent 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;
}

/* ==========================================
   COMPARISON BLOCK
========================================== */

.comparison-box {
    display: flex;
    gap: 24px;
    margin: 40px 0;
    align-items: stretch;
}

.comparison-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    transition: all .25s ease;
}

.comparison-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.comparison-column h3 {
    margin: 0 0 22px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #1f2937;
}

.comparison-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comparison-column li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.comparison-column li:last-child {
    margin-bottom: 0;
}

/* ==========================================
   DEFAULT ICON
========================================== */

.comparison-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 1px;
    color: #64748b;
    font-size: 22px;
    line-height: 1;
}

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

@media (max-width: 992px) {

    .comparison-box {
        flex-wrap: wrap;
    }

    .comparison-column {
        flex: 1 1 calc(50% - 12px);
    }

}

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

@media (max-width: 640px) {

    .comparison-box {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .comparison-column {
        width: 100%;
        padding: 24px;
    }

    .comparison-column h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

}

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

.title-accent {
    font-weight: 700;
    color: #1f1f1f;
}

.title-accent::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 28px;
    background: #ffc107;
    margin-right: 12px;
    border-radius: 3px;
    vertical-align: middle;
}

/* ==========================================
   REVIEWS
========================================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

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

.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e7ebf2;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    transition: all .25s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(15,23,42,.08);
}

/* Верхняя синяя полоска */

.review-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: #2468E5;
    border-radius: 18px 18px 0 0;
}

/* ==========================================
   STARS
========================================== */

.review-stars {
    color: #FFC926;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

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

.review-card p {
    flex: 1;
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    font-style: italic;
}

/* ==========================================
   AUTHOR
========================================== */

.review-author {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}
.review-author a {
    color: #2468E5;
    text-decoration: none;
    transition: .2s;
}
.review-author a:hover {
    color: #184db5;
    text-decoration: underline;
}

/* ==========================================
   SOURCE
========================================== */

.review-source {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    background: #edf4ff;
    color: #2468E5;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

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

@media (max-width:992px){
    .reviews-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (max-width:640px){
    .reviews-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
    .review-card{
        padding:24px;
    }
}
/* ==========================================
   RECOMMENDED / HIGHLIGHT CARDS
========================================== */

.comparison-good,
.comparison-highlight {
    position: relative;
}

/* Общий стиль бейджей */

.comparison-good::before,
.comparison-highlight::before {

    position: absolute;
    top: -18px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 5;
}


/* ==========================================
   RECOMMENDED (BLUE)
========================================== */

.comparison-good {
    border: 2px solid #3b82f6;
    background: linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.comparison-good::before {
    content: "Recommended";
    background: #3b82f6;
    color: #fff;

}

.comparison-good h3 {
    color: #166534;
}
.comparison-good li::before {
    content: "✓";
    color: #16a34a;
    font-size: 18px;
    font-weight: 700;
    top: 3px;
}

/* ==========================================
   HIGHLIGHT (YELLOW)
========================================== */

.comparison-highlight {
    border: 2px solid #FFC926;
    background: linear-gradient(180deg,#fffdf5 0%,#ffffff 100%);
}

.comparison-highlight::before {
    content: attr(data-label);
    background: #FFC926;
    color: #1f2937;
}

.comparison-highlight h3 {
    color: #9a6700;
}

.comparison-highlight li::before {
    content: "✓";
    color: #16a34a;
    font-size: 18px;
    font-weight: 700;
    top: 3px;
}

/* ==========================================
   INFO (LIGHT BLUE)
========================================== */

.comparison-info {
    position: relative;
    border: 2px solid #8fc5ff;
    background: linear-gradient(180deg,#f5fbff 0%,#ffffff 100%);
}

.comparison-info::before {
    content: attr(data-label);
    position: absolute;
    top: -18px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    background: #8fc5ff;
    color: #134074;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.comparison-info h3 {
    color: #0f5ea8;
}

.comparison-info li::before {
    content: "✓";
    color: #2468E5;
    font-size: 18px;
    font-weight: 700;
    top: 3px;
}

/* ==========================================
   WARNING (ORANGE)
========================================== */

.comparison-warning {
    position: relative;
    border: 2px solid #ffb84d;
    background: linear-gradient(180deg,#fff9f2 0%,#ffffff 100%);

}

.comparison-warning::before {
    content: attr(data-label);
    position: absolute;
    top: -18px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ffb84d;
    color: #7a4200;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;

}

.comparison-warning h3 {
    color: #b45309;
}

.comparison-warning li::before {

    content: "✓";
    color: #ea580c;
    font-size: 18px;
    font-weight: 700;
    top: 3px;

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

@media (max-width: 992px) {

    .comparison-box {
        flex-wrap: wrap;
    }
    .comparison-column {
        flex: 1 1 calc(50% - 12px);
    }
}


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

@media (max-width: 640px) {

    .comparison-box {
        flex-direction: column;
        gap: 18px;
    }

    .comparison-column {
        width: 100%;
        padding: 24px;
    }

    .comparison-column h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    /* Бейджи одинаково располагаются на всех типах карточек */

    .comparison-good::before,
    .comparison-highlight::before,
    .comparison-info::before,
    .comparison-warning::before {

        top: -16px;
        right: 18px;
        height: 32px;
        padding: 0 14px;
        font-size: 11px;
    }
}

/* ==========================================
   CONTENT IMAGE RIGHT
========================================== */

.content-image-right {
    float: right;
    width: 34%;
    max-width: 380px;
    min-width: 300px;
    margin: 0 0 28px 36px;
    display: block;
    background: #fff;
    border: 1px solid #e7ebf2;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
    overflow: hidden;
    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.content-image-right:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15,23,42,.10);
}

/* Если после картинки идёт карточка,
   она всегда начнётся ниже изображения */

.content-image-right + .info-box{
    clear: both;
}

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

@media (max-width:992px){

    .content-image-right{
        float:none;
        width:100%;
        max-width:100%;
        min-width:0;
        margin:0 0 24px;
    }
}
/* ==========================================
   MCR — CITY OFFICES
========================================== */

.city-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 35px 0;
}

/* OFFICE CARD */
.office-card {
  position: relative;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid #e5eaf1;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.office-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 104, 229, .35);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .09);
}

/* OFFICE TITLE */
.office-card h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf1f6;
  color: #1f2937;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

/* Building icon */
.office-card h3 > i {
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: -3px;
  border-radius: 10px;
  background: rgba(36, 104, 229, .09);
  color: #2468e5;
  font-size: 17px;
}

/* OFFICE ITEM */
.office-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.65;
}

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

/* ITEM ICON */
.office-item > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  border-radius: 50%;
  background: #f4f7fb;
  color: #2468e5;
  font-size: 13px;
}

/* LABEL */
.office-item strong {
  display: block;
  margin-bottom: 2px;
  color: #1f2937;
  font-size: 15px;
  font-weight: 700;
}

/* SUBTLE ACCENT */
.office-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 46px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: #ffc926;
}

/* GOOD TO KNOW */
.pickup-notice {
  position: relative;
  margin: 25px 0 35px;
  padding: 18px 22px 18px 24px;
  border: 1px solid rgba(255, 201, 38, .55);
  border-left: 4px solid #ffc926;
  border-radius: 14px;
  background: #fffdf5;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
  box-shadow: 0 5px 18px rgba(15, 23, 42, .04);
}

.pickup-notice strong {
  color: #8a6200;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .city-offices { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .city-offices { gap: 18px; margin: 28px 0; }
  .office-card { padding: 24px 20px; border-radius: 16px; }
  .office-card h3 { margin-bottom: 22px; padding-bottom: 16px; font-size: 20px; }
  .office-item { grid-template-columns: 30px 1fr; gap: 10px; margin-bottom: 18px; font-size: 15px; line-height: 1.6; }
  .office-item > i { width: 28px; height: 28px; }
  .pickup-notice { padding: 16px 18px; font-size: 14px; }
}