/* ==========================================================================
   Skopje Airport Transfers — design system
   Palette: red #c8102e, light grey #f3f4f6, black #111, white #fff
   ========================================================================== */

:root {
  --as-red: #c8102e;
  --as-red-dark: #9c0c24;
  --as-grey: #f3f4f6;
  --as-grey-2: #e5e7eb;
  --as-black: #111111;
  --as-text: #1f2933;
  --as-muted: #6b7280;
  --as-white: #ffffff;
  --as-shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.06);
  --as-shadow-md: 0 8px 24px rgba(17, 17, 17, 0.10);
  --as-shadow-lg: 0 18px 50px rgba(17, 17, 17, 0.18);
  --as-radius: 14px;
  --as-radius-sm: 10px;
}

* { box-sizing: border-box; }

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

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  color: var(--as-text);
  background: var(--as-white);
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .as-display {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--as-black);
}

a { color: var(--as-red); text-decoration: none; }
a:hover { color: var(--as-red-dark); text-decoration: underline; }

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

/* Skip link for accessibility */
.as-skip {
  position: absolute; top: -40px; left: 0;
  background: var(--as-black); color: var(--as-white);
  padding: 8px 14px; z-index: 9999;
}
.as-skip:focus { top: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.as-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--as-radius-sm);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  font-size: .95rem;
  line-height: 1.2;
}
.as-btn:focus-visible { outline: 3px solid rgba(200,16,46,.35); outline-offset: 2px; }
.as-btn:hover { transform: translateY(-1px); }

.as-btn-primary { background: var(--as-red); color: var(--as-white); }
.as-btn-primary:hover { background: var(--as-red-dark); color: var(--as-white); box-shadow: var(--as-shadow-md); }

.as-btn-ghost {
  background: transparent; color: var(--as-white); border-color: var(--as-white);
}
.as-btn-ghost:hover { background: var(--as-white); color: var(--as-red); }

.as-btn-dark { background: var(--as-black); color: var(--as-white); }
.as-btn-dark:hover { background: #000; color: var(--as-white); box-shadow: var(--as-shadow-md); }

.as-btn-outline {
  background: var(--as-white); color: var(--as-red); border-color: var(--as-red);
}
.as-btn-outline:hover { background: var(--as-red); color: var(--as-white); }

.as-btn-block { width: 100%; }

/* ==========================================================================
   Preheader strip
   ========================================================================== */
.as-preheader {
  background: var(--as-red);
  color: var(--as-white);
  font-size: .85rem;
  padding: 6px 0;
}
.as-preheader a { color: var(--as-white); text-decoration: none; }
.as-preheader a:hover { color: #ffe1e6; text-decoration: underline; }
.as-preheader .as-preheader-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  justify-content: space-between;
}
.as-preheader .as-pre-contact { display: flex; flex-wrap: wrap; gap: 14px; }
.as-preheader .as-pre-contact span { display: inline-flex; align-items: center; gap: 6px; }
.as-preheader .as-prepay {
  background: var(--as-black); padding: 3px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--as-white); font-weight: 600; font-size: .75rem;
}
.as-preheader .as-prepay img { height: 18px; width: auto; }
@media (max-width: 575.98px) {
  .as-preheader .as-pre-contact .as-pre-email { display: none; }
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.as-header { background: var(--as-white); box-shadow: var(--as-shadow-sm); position: sticky; top: 0; z-index: 1030; }
.as-brand {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem;
  color: var(--as-black); text-decoration: none; line-height: 1;
}
.as-brand:hover { color: var(--as-black); text-decoration: none; }
.as-brand span { color: var(--as-red); }
.navbar { padding: 12px 0; }
.navbar .nav-link {
  color: var(--as-black) !important;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 8px;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--as-red) !important; background: var(--as-grey); }
.navbar .dropdown-menu { border: 1px solid var(--as-grey-2); box-shadow: var(--as-shadow-md); border-radius: 10px; }
.navbar .dropdown-item:hover, .navbar .dropdown-item:focus { background: var(--as-grey); color: var(--as-red); }
.navbar-toggler { border-color: var(--as-grey-2); }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(200,16,46,.2); }

/* ==========================================================================
   Sections
   ========================================================================== */
.as-section { padding: 70px 0; }
@media (max-width: 767.98px) { .as-section { padding: 50px 0; } }
.as-section-grey { background: var(--as-grey); }
.as-section-dark { background: var(--as-black); color: var(--as-white); }
.as-section-dark h1, .as-section-dark h2, .as-section-dark h3 { color: var(--as-white); }

.as-eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--as-red);
  margin-bottom: 8px;
}
.as-section-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.as-section-sub { color: var(--as-muted); max-width: 720px; margin: 0 auto 36px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.as-hero {
  position: relative;
  min-height: 88vh;
  background: #2a0710 url('../img/hero-skopje.jpg') center/cover no-repeat;
  color: var(--as-white);
  display: flex; align-items: center;
  padding: 80px 0 60px;
}
.as-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,.78) 0%, rgba(60,5,15,.72) 100%);
}
.as-hero > .container { position: relative; z-index: 1; }
.as-hero h1, .as-hero h2 { color: var(--as-white); }
.as-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 .25rem;
}
.as-hero h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 18px;
  color: #ffe1e6;
}
.as-hero .as-hero-sub {
  font-size: 1.05rem; max-width: 540px; color: rgba(255,255,255,.92);
  margin-bottom: 28px;
}
.as-hero .as-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 991.98px) {
  .as-hero { min-height: auto; padding: 60px 0 40px; }
}

/* Small hero (interior pages) */
.as-hero-sm {
  position: relative;
  background: var(--as-red);
  color: var(--as-white);
  padding: 70px 0 60px;
  overflow: hidden;
}
.as-hero-sm::after {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 80% 30%, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
}
.as-hero-sm > .container { position: relative; z-index: 1; }
.as-hero-sm h1 { color: var(--as-white); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: .5rem; }
.as-hero-sm p { color: rgba(255,255,255,.92); max-width: 780px; font-size: 1.05rem; }
.as-breadcrumb {
  font-size: .85rem; color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}
.as-breadcrumb a { color: rgba(255,255,255,.85); }
.as-breadcrumb a:hover { color: var(--as-white); }
.as-breadcrumb .sep { margin: 0 6px; opacity: .6; }

/* ==========================================================================
   Booking widget (homepage hero)
   ========================================================================== */
.as-widget {
  background: var(--as-white);
  color: var(--as-text);
  border-radius: var(--as-radius);
  padding: 26px 24px;
  box-shadow: var(--as-shadow-lg);
}
.as-widget h3 {
  font-size: 1.25rem; margin-bottom: 4px;
  color: var(--as-black);
}
.as-widget .as-widget-sub { font-size: .9rem; color: var(--as-muted); margin-bottom: 18px; }

/* ==========================================================================
   Forms
   ========================================================================== */
.as-label {
  display: flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--as-black);
  margin-bottom: 6px;
}
.as-label i { color: var(--as-red); }
.as-input, .as-select, .as-textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--as-text);
  background: #fafafa;
  border: 1.5px solid var(--as-grey-2);
  border-radius: var(--as-radius-sm);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.as-input:focus, .as-select:focus, .as-textarea:focus {
  outline: none;
  border-color: var(--as-red);
  background: var(--as-white);
  box-shadow: 0 0 0 3px rgba(200,16,46,.12);
}
.as-textarea { min-height: 110px; resize: vertical; }

.as-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c8102e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.as-field { margin-bottom: 14px; }
.as-field-grid { display: grid; gap: 14px; }
@media (min-width: 576px) {
  .as-field-grid.cols-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .as-field-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.as-error-text { color: #b91c1c; font-size: .82rem; margin-top: 4px; display: none; }
.as-field.has-error .as-input,
.as-field.has-error .as-select,
.as-field.has-error .as-textarea { border-color: #b91c1c; background: #fff5f5; }
.as-field.has-error .as-error-text { display: block; }

/* Phone with country picker */
.as-phone-group {
  display: flex; align-items: stretch; gap: 0;
  border: 1.5px solid var(--as-grey-2);
  border-radius: var(--as-radius-sm);
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.as-phone-group:focus-within {
  border-color: var(--as-red); background: var(--as-white);
  box-shadow: 0 0 0 3px rgba(200,16,46,.12);
}
.as-phone-group .as-dial-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 12px;
  border: 0; background: transparent;
  border-right: 1px solid var(--as-grey-2);
  font: inherit; cursor: pointer;
  border-top-left-radius: var(--as-radius-sm);
  border-bottom-left-radius: var(--as-radius-sm);
  white-space: nowrap;
  font-weight: 600;
}
.as-phone-group .as-dial-trigger:hover { background: var(--as-grey); }
.as-phone-group .as-dial-flag { font-size: 1.1rem; line-height: 1; }
.as-phone-group input {
  flex: 1; border: 0; background: transparent; padding: 12px 14px;
  font: inherit; color: var(--as-text); outline: none;
  border-top-right-radius: var(--as-radius-sm);
  border-bottom-right-radius: var(--as-radius-sm);
  min-width: 0;
}

.as-dial-popup {
  position: absolute; z-index: 1050;
  background: var(--as-white); border: 1px solid var(--as-grey-2);
  border-radius: var(--as-radius-sm); box-shadow: var(--as-shadow-lg);
  width: min(320px, 92vw); max-height: 320px; overflow: auto;
  padding: 8px;
}
.as-dial-popup input.as-dial-search {
  width: 100%; padding: 8px 10px;
  border: 1px solid var(--as-grey-2); border-radius: 8px;
  margin-bottom: 6px; font: inherit;
}
.as-dial-list { list-style: none; padding: 0; margin: 0; }
.as-dial-list li {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 10px; cursor: pointer; border-radius: 6px;
  font-size: .92rem;
}
.as-dial-list li:hover, .as-dial-list li[aria-selected="true"] { background: var(--as-grey); }
.as-dial-list li .as-dial-list-flag { font-size: 1.1rem; }
.as-dial-list li .as-dial-list-code { color: var(--as-muted); margin-left: auto; font-variant-numeric: tabular-nums; }

/* Captcha */
.as-captcha {
  display: flex; align-items: center; gap: 10px;
  background: var(--as-grey); padding: 10px 12px; border-radius: var(--as-radius-sm);
  flex-wrap: wrap;
}
.as-captcha .as-captcha-q { font-weight: 700; font-size: 1rem; }
.as-captcha input { max-width: 90px; }
.as-captcha .as-captcha-refresh {
  background: transparent; border: 0; color: var(--as-red); cursor: pointer;
  padding: 4px 8px; border-radius: 6px;
}
.as-captcha .as-captcha-refresh:hover { background: var(--as-white); }

/* Form result */
.as-form-result { margin-top: 16px; padding: 14px 16px; border-radius: var(--as-radius-sm); display: none; }
.as-form-result.is-success { display: block; background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.as-form-result.is-error { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ==========================================================================
   Cards
   ========================================================================== */
.as-card {
  background: var(--as-white);
  border-radius: var(--as-radius);
  box-shadow: var(--as-shadow-sm);
  border: 1px solid var(--as-grey-2);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.as-card:hover { transform: translateY(-3px); box-shadow: var(--as-shadow-md); }

/* Fleet card */
.as-fleet-img {
  background: var(--as-white);
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  border-bottom: 1px solid var(--as-grey-2);
}
.as-fleet-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.as-fleet-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.as-fleet-body h3 { font-size: 1.2rem; margin: 0 0 4px; }
.as-fleet-tag {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--as-red); margin-bottom: 8px;
}
.as-fleet-specs {
  display: flex; gap: 16px; flex-wrap: wrap; margin: 10px 0 14px;
  color: var(--as-text); font-size: .92rem;
}
.as-fleet-specs span { display: inline-flex; align-items: center; gap: 6px; }
.as-fleet-specs i { color: var(--as-red); }
.as-fleet-list {
  list-style: none; padding: 0; margin: 0 0 14px;
  border-top: 1px solid var(--as-grey-2); padding-top: 12px;
  font-size: .9rem; color: var(--as-text);
}
.as-fleet-list li { display: flex; align-items: center; gap: 8px; padding: 3px 0; }
.as-fleet-list li i { color: var(--as-red); font-size: .85rem; }
.as-fleet-body .as-btn { margin-top: auto; }

/* Pills */
.as-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--as-white); color: var(--as-black);
  border: 1px solid var(--as-grey-2);
  padding: 6px 12px; border-radius: 999px;
  font-size: .82rem; font-weight: 500;
}
.as-pill i { color: var(--as-red); }
.as-pill-red { background: var(--as-red); color: var(--as-white); border-color: var(--as-red); }
.as-pill-red i { color: var(--as-white); }

/* ==========================================================================
   Comfort / Contact section
   ========================================================================== */
.as-contact-card {
  background: var(--as-white); border-radius: var(--as-radius);
  border: 1px solid var(--as-grey-2); padding: 26px;
  box-shadow: var(--as-shadow-sm);
}
.as-contact-card h3 { font-size: 1.15rem; margin-bottom: 14px; }
.as-contact-row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--as-grey-2); }
.as-contact-row:last-child { border-bottom: 0; }
.as-contact-row .as-contact-ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--as-red); color: var(--as-white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.as-contact-row strong { display: block; color: var(--as-black); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.as-contact-row span, .as-contact-row a { display: block; color: var(--as-text); }
.as-contact-row .as-actions { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.as-chip,
.as-chip:link,
.as-chip:visited,
.as-chip:hover,
.as-chip:focus,
.as-chip:active {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; color: #ffffff !important;
  text-decoration: none;
}
.as-chip:hover { opacity: .9; }
.as-chip-wa,
.as-chip-wa:link,
.as-chip-wa:visited,
.as-chip-wa:hover,
.as-chip-wa:focus,
.as-chip-wa:active { background: #25D366; color: #111111 !important; }
.as-chip-wa:hover, .as-chip-wa:active, .as-chip-wa:focus { background: #1ebe5a; }
.as-chip-viber { background: #7360F2; }
.as-chip-viber:hover, .as-chip-viber:active, .as-chip-viber:focus { background: #5a48d6; }
.as-chip-tel { background: var(--as-black); }
.as-chip-tel:hover, .as-chip-tel:active, .as-chip-tel:focus { background: #2a2a2a; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.as-reviews {
  position: relative;
  background: #1a0d0f url('../img/reviews-bg.jpg') center/cover no-repeat fixed;
  color: var(--as-white);
  padding: 80px 0;
}
.as-reviews::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.78), rgba(60,5,15,.78));
}
.as-reviews > .container { position: relative; z-index: 1; }
.as-reviews h2, .as-reviews .as-section-sub { color: var(--as-white); }
.as-reviews .as-eyebrow { color: #ffe1e6; }
.as-reviews .as-section-sub { color: rgba(255,255,255,.85); }

.as-review {
  background: var(--as-white);
  color: var(--as-text);
  border-radius: var(--as-radius);
  padding: 22px 22px 20px;
  height: 100%;
  min-height: 230px;
  display: flex; flex-direction: column;
  box-shadow: var(--as-shadow-md);
}
.as-review .as-stars { color: #f59e0b; margin-bottom: 10px; font-size: .9rem; }
.as-review p { flex: 1; margin: 0 0 14px; color: var(--as-text); font-size: .95rem; }
.as-review .as-review-name { font-weight: 700; color: var(--as-black); font-family: 'Poppins', sans-serif; }
.as-review .as-review-meta { color: var(--as-muted); font-size: .82rem; }
.as-review .as-review-source { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: .78rem; color: var(--as-muted); }
.as-review .as-review-source i { color: #4285F4; }

/* Google rating chip — verifiable third-party trust signal */
.as-google-rating,
.as-google-rating:link,
.as-google-rating:visited {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--as-white); color: var(--as-black) !important;
  padding: 9px 16px; border-radius: 999px;
  font-weight: 600; font-size: .92rem;
  text-decoration: none;
  box-shadow: var(--as-shadow-sm);
  border: 1px solid var(--as-grey-2);
  transition: transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.as-google-rating:hover { transform: translateY(-1px); box-shadow: var(--as-shadow-md); text-decoration: none; color: var(--as-black) !important; }
.as-google-rating .as-grs { color: #f59e0b; font-size: .85rem; letter-spacing: 1px; }
.as-google-rating .as-grn { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1rem; }
.as-google-rating .as-grc { color: var(--as-muted); font-weight: 500; }
.as-google-rating .fa-google { color: #4285F4; font-size: 1rem; margin-left: 2px; }

/* Bigger version — for the reviews section header */
.as-google-rating-lg {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 14px;
  background: var(--as-white); color: var(--as-black) !important;
  padding: 14px 22px; border-radius: var(--as-radius);
  text-decoration: none; box-shadow: var(--as-shadow-md);
  border: 1px solid var(--as-grey-2);
  margin-top: 18px;
}
.as-google-rating-lg:hover { color: var(--as-black) !important; text-decoration: none; transform: translateY(-1px); box-shadow: var(--as-shadow-lg); }
.as-google-rating-lg .as-grn { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--as-red); line-height: 1; }
.as-google-rating-lg .as-grs { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; display: block; }
.as-google-rating-lg .as-grmeta { display: flex; flex-direction: column; gap: 2px; }
.as-google-rating-lg .as-grc { color: var(--as-text); font-weight: 600; font-size: .9rem; }
.as-google-rating-lg .as-grsub { color: var(--as-muted); font-size: .8rem; }
.as-google-rating-lg .fa-google { color: #4285F4; font-size: 1.8rem; }

/* Single-review centered card variant */
.as-review-centered { max-width: 760px; margin: 0 auto; }

/* Footer google chip */
.as-foot-google,
.as-foot-google:link,
.as-foot-google:visited {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--as-white); color: var(--as-black) !important;
  text-decoration: none;
  font-size: .78rem; font-weight: 600;
  border: 1px solid #374151;
}
.as-foot-google:hover { color: var(--as-black) !important; text-decoration: none; }
.as-foot-google .as-grs { color: #f59e0b; font-size: .72rem; letter-spacing: 1px; }
.as-foot-google .fa-google { color: #4285F4; font-size: .8rem; }

.as-foot-also { font-size: .82rem; color: #9ca3af; margin-top: 10px; }
.as-foot-also a { color: #fff; text-decoration: underline; }

/* Carousel controls overrides */
.as-reviews .carousel { padding: 0 56px; }
.as-reviews .carousel-control-prev,
.as-reviews .carousel-control-next {
  width: 46px; height: 46px; top: 50%; transform: translateY(-50%);
  background: var(--as-red); border-radius: 50%;
  opacity: 1; border: 2px solid rgba(255,255,255,.7);
  z-index: 5;
}
.as-reviews .carousel-control-prev:hover,
.as-reviews .carousel-control-next:hover { background: var(--as-red-dark); }
.as-reviews .carousel-control-prev { left: 0; }
.as-reviews .carousel-control-next { right: 0; }
.as-reviews .carousel-indicators [data-bs-target] { background-color: rgba(255,255,255,.9); }
@media (max-width: 575.98px) {
  .as-reviews .carousel-control-prev,
  .as-reviews .carousel-control-next { display: none; }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.as-faq { max-width: 880px; margin: 0 auto; }
.as-faq-item {
  border: 1px solid var(--as-grey-2);
  border-radius: var(--as-radius-sm);
  margin-bottom: 12px;
  background: var(--as-white);
  overflow: hidden;
}
.as-faq-q {
  width: 100%; text-align: left;
  background: transparent; border: 0;
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem;
  color: var(--as-black);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  cursor: pointer;
}
.as-faq-q:hover { background: var(--as-grey); }
.as-faq-q::after {
  content: '+'; font-size: 1.5rem; color: var(--as-red);
  transition: transform .2s ease;
  line-height: 1;
}
.as-faq-item.open .as-faq-q::after { transform: rotate(45deg); }
.as-faq-a { padding: 0 20px 18px; color: var(--as-text); display: none; line-height: 1.7; }
.as-faq-item.open .as-faq-a { display: block; }
.as-faq-a p:last-child { margin-bottom: 0; }

/* FAQ categories (full page) */
.as-faq-cat { font-size: 1.15rem; margin: 32px 0 14px; color: var(--as-red); text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; font-weight: 700; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.as-cta {
  background: linear-gradient(135deg, var(--as-red) 0%, var(--as-red-dark) 100%);
  color: var(--as-white);
  padding: 60px 0;
  text-align: center;
}
.as-cta h2 { color: var(--as-white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.as-cta p { color: rgba(255,255,255,.92); max-width: 640px; margin: 0 auto 22px; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.as-price-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--as-white); border-radius: var(--as-radius); overflow: hidden;
  box-shadow: var(--as-shadow-sm);
}
.as-price-table thead th {
  background: var(--as-black); color: var(--as-white);
  padding: 14px 12px; text-align: left; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600;
}
.as-price-table tbody td {
  padding: 14px 12px; border-bottom: 1px solid var(--as-grey-2); font-size: .95rem;
}
.as-price-table tbody tr:nth-child(odd) { background: #fafafa; }
.as-price-table tbody tr:hover { background: #fff1f3; }
.as-price-table .as-route { font-weight: 700; color: var(--as-black); }
.as-price-table .as-price-cell { font-weight: 700; color: var(--as-red); white-space: nowrap; }
.as-price-table .as-meta { color: var(--as-muted); font-size: .85rem; }
.as-price-note {
  margin-top: 12px; font-size: .85rem; color: var(--as-muted); padding: 10px 14px;
  background: var(--as-grey); border-left: 3px solid var(--as-red); border-radius: 6px;
}

/* Mobile price cards */
@media (max-width: 767.98px) {
  .as-price-table-desktop { display: none; }
}
@media (min-width: 768px) {
  .as-price-cards-mobile { display: none; }
}
.as-price-card {
  background: var(--as-white); border-radius: var(--as-radius);
  border: 1px solid var(--as-grey-2); padding: 16px; margin-bottom: 14px;
  box-shadow: var(--as-shadow-sm);
}
.as-price-card h4 { font-size: 1.05rem; margin: 0 0 4px; color: var(--as-black); }
.as-price-card .as-meta { color: var(--as-muted); font-size: .85rem; margin-bottom: 12px; }
.as-price-card .as-price-rows { display: grid; gap: 8px; }
.as-price-card .as-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; background: var(--as-grey); border-radius: 8px;
  font-size: .9rem;
}
.as-price-card .as-price-row strong { color: var(--as-red); }

/* Pricing badges */
.as-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.as-hero-badge {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4);
  padding: 7px 14px; border-radius: 999px; font-size: .85rem; color: var(--as-white);
  display: inline-flex; align-items: center; gap: 6px; font-weight: 500;
}

.as-included-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.as-included-box {
  background: var(--as-white); padding: 20px; border-radius: var(--as-radius);
  border: 1px solid var(--as-grey-2); border-top: 3px solid var(--as-red);
  box-shadow: var(--as-shadow-sm);
}
.as-included-box h4 { font-size: 1rem; margin: 8px 0 6px; }
.as-included-box i { color: var(--as-red); font-size: 1.6rem; }
.as-included-box p { color: var(--as-muted); font-size: .9rem; margin: 0; }

/* ==========================================================================
   Trips
   ========================================================================== */
.as-trip-card {
  background: var(--as-white); border-radius: var(--as-radius);
  border: 1px solid var(--as-grey-2); box-shadow: var(--as-shadow-sm);
  padding: 22px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 22px;
}
.as-trip-img {
  width: 160px; height: 160px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  background: var(--as-grey);
  border: 4px solid var(--as-white); box-shadow: 0 0 0 1px var(--as-grey-2);
}
.as-trip-img img { width: 100%; height: 100%; object-fit: cover; }
.as-trip-body { flex: 1; }
.as-trip-body h3 { margin: 0 0 6px; font-size: 1.3rem; }
.as-trip-body p { color: var(--as-text); margin: 0 0 12px; }
.as-trip-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.as-trip-price {
  font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--as-red);
  font-size: 1.15rem;
}
.as-trip-price small { color: var(--as-muted); font-weight: 400; font-size: .8rem; }
@media (max-width: 575.98px) {
  .as-trip-card { flex-direction: column; text-align: center; padding: 22px 18px; }
  .as-trip-img { width: 140px; height: 140px; }
  .as-trip-meta { justify-content: center; }
}

/* ==========================================================================
   Compare page
   ========================================================================== */
.as-compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--as-white); border-radius: var(--as-radius); overflow: hidden;
  box-shadow: var(--as-shadow-sm); margin: 20px 0;
}
.as-compare-table th, .as-compare-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--as-grey-2); font-size: .92rem;
  vertical-align: top;
}
.as-compare-table thead th {
  background: var(--as-black); color: var(--as-white);
  text-align: left; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em;
}
.as-compare-table thead th.as-winner { background: var(--as-red); }
.as-compare-table tbody td:first-child { font-weight: 600; background: #fafafa; }
.as-good { color: #047857; font-weight: 600; }
.as-bad { color: #b91c1c; font-weight: 600; }
.as-meh { color: #d97706; font-weight: 600; }
@media (max-width: 767.98px) {
  .as-compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .as-compare-table { min-width: 640px; }
}

.as-scenario-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 24px; }
.as-scenario {
  background: var(--as-white); border-radius: var(--as-radius);
  border: 1px solid var(--as-grey-2); border-top: 4px solid var(--as-red);
  padding: 20px; box-shadow: var(--as-shadow-sm);
}
.as-scenario h4 { margin: 0 0 8px; font-size: 1.05rem; }
.as-scenario.is-alt { border-top-color: var(--as-black); }

/* ==========================================================================
   Notices
   ========================================================================== */
.as-notice {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; border-radius: var(--as-radius-sm);
  background: var(--as-grey); border-left: 4px solid var(--as-red);
  margin: 18px 0;
}
.as-notice i { color: var(--as-red); font-size: 1.2rem; margin-top: 2px; }
.as-notice p { margin: 0; font-size: .92rem; }

.as-notice-info { border-left-color: #0369a1; background: #eff6ff; }
.as-notice-info i { color: #0369a1; }

/* ==========================================================================
   Footer
   ========================================================================== */
.as-footer {
  background: var(--as-black); color: #d1d5db;
  padding: 56px 0 22px;
  font-size: .92rem;
}
.as-footer h5 { color: var(--as-white); font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.as-footer a { color: #d1d5db; text-decoration: none; }
.as-footer a:hover { color: var(--as-red); text-decoration: underline; }
.as-footer .as-foot-brand { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--as-white); }
.as-footer .as-foot-brand span { color: var(--as-red); }
.as-footer .as-foot-tag { margin-top: 8px; color: #9ca3af; font-size: .9rem; }
.as-footer ul.as-foot-links { list-style: none; padding: 0; margin: 0; }
.as-footer ul.as-foot-links li { padding: 4px 0; }
.as-footer .as-foot-contact-row {
  display: flex; align-items: flex-start; gap: 10px; padding: 6px 0;
}
.as-footer .as-foot-contact-row i { color: var(--as-red); margin-top: 4px; }
.as-footer .as-foot-badges { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.as-footer .as-foot-badges .as-prepay { background: var(--as-black); color: var(--as-white); padding: 4px 10px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; border: 1px solid #374151; }
.as-footer .as-foot-badges .as-prepay img { height: 18px; }
.as-foot-bottom {
  border-top: 1px solid #1f2937; margin-top: 36px; padding-top: 16px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  color: #9ca3af; font-size: .82rem;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.as-text-red { color: var(--as-red) !important; }
.as-mt-0 { margin-top: 0 !important; }
.as-divider { height: 1px; background: var(--as-grey-2); border: 0; margin: 28px 0; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
