/* ==========================================================================
   Online Umrah Hajj Taxi — Homepage Styles
   ========================================================================== */

/* ── Hero ──────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(6,46,32,0.78), rgba(6,46,32,0.92)),
    url('https://onlineumrahhajjtaxi.com/wp-content/uploads/2026/06/Gemini_Generated_Image_qeiedqqeiedqqeie-clean-scaled.webp') center/cover no-repeat;
  color: #fff;
  padding: 80px 0 72px;
  contain: layout style;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 159, 62, 0.12);
  border: 1px solid rgba(201, 159, 62, 0.3);
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amt-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29c75a;
  animation: pulse-dot 1.6s infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0   rgba(41,199,90,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(41,199,90,0); }
  100% { box-shadow: 0 0 0 0   rgba(41,199,90,0); }
}

.hero h1 {
  font-family: var(--amt-font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--amt-accent);
}

.hero__subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--amt-text-on-dark-muted);
  max-width: 620px;
  margin-bottom: 28px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* WhatsApp green button (hero primary CTA is gold, but WhatsApp button stays green for brand recognition) */
.btn--whatsapp {
  background-color: #25D366;
  color: #ffffff;
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background-color: #1ebe5a;
  border-color: #1ebe5a;
}

.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__stats .stat strong {
  display: block;
  font-family: var(--amt-font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--amt-accent);
}

.hero__stats .stat span {
  font-size: 13px;
  color: var(--amt-text-on-dark-muted);
}

/* ── Booking form card ─────────────────────────────────────────────────── */

.booking-card {
  background: var(--amt-bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--amt-border-light);
  padding: 28px;
  color: var(--amt-text-primary);
  box-shadow: var(--amt-shadow-lg);
}

.booking-card h3 {
  font-family: var(--amt-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--amt-text-primary);
  margin-bottom: 4px;
}

.booking-card__sub {
  font-size: 14px;
  color: var(--amt-text-secondary);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--amt-text-secondary);
  margin-bottom: 6px;
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--amt-border-light);
  border-radius: 8px;
  font-family: var(--amt-font-body);
  font-size: 15px;
  color: var(--amt-text-primary);
  background-color: var(--amt-bg-page);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--amt-primary);
  box-shadow: 0 0 0 3px rgba(11, 82, 57, 0.1);
  background-color: #ffffff;
}

.form-group select::placeholder,
.form-group input::placeholder {
  color: var(--amt-text-tertiary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-card .btn {
  width: 100%;
  margin-top: 8px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-actions .btn {
  flex: 1 1 180px;
}

.booking-form__status {
  margin: 10px 0 0;
  font-size: 14px;
  min-height: 18px;
}

.booking-form__status--success {
  color: #1a9c4a;
}

.booking-form__status--error {
  color: #d64545;
}

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

/* ── Marquee trust bar ─────────────────────────────────────────────────── */

.marquee {
  background: var(--amt-bg-section-alt);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--amt-border-light);
  border-bottom: 1px solid var(--amt-border-light);
}

.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--amt-primary);
  font-family: var(--amt-font-body);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.marquee__item .sep {
  color: var(--amt-accent);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section heading ───────────────────────────────────────────────────── */

/* Override the global .section-label inside homepage with the new pattern */
.section-label {
  display: inline-block;
  font-family: var(--amt-font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amt-accent-dark);
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 12px;
}

.section--dark .section-label {
  color: var(--amt-accent);
  background: transparent;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Routes grid ───────────────────────────────────────────────────────── */

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

.route-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--amt-bg-card);
  border: 1px solid var(--amt-border-light);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--amt-shadow-card);
  transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.route-card:hover {
  box-shadow: var(--amt-shadow-card-hover);
  border-color: var(--amt-accent);
  transform: translateY(-4px);
}

.route-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--amt-primary-light);
  color: var(--amt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-card h3 {
  font-family: var(--amt-font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amt-text-primary);
  margin: 0;
}

.route-card__arrow {
  color: var(--amt-accent);
}

.route-card__meta {
  font-size: 14px;
  color: var(--amt-text-secondary);
}

.route-card__price {
  font-family: var(--amt-font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--amt-accent-dark);
  margin: 4px 0;
}

.route-card__price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--amt-text-secondary);
}

.route-card .btn {
  font-size: 14px;
  padding: 9px 18px;
  align-self: flex-start;
}

/* ── Why us / feature grid ─────────────────────────────────────────────── */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--amt-bg-card);
  border: 1px solid var(--amt-border-light);
  border-radius: var(--radius-card);
  padding: 28px;
  text-align: center;
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--amt-primary);
  box-shadow: var(--amt-shadow-card-hover);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin: 0 auto 16px;
  background: var(--amt-primary-light);
  color: var(--amt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-family: var(--amt-font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--amt-text-primary);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--amt-text-secondary);
  margin: 0;
}

/* ── Vehicle tabs ──────────────────────────────────────────────────────── */

.tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  border: 1px solid var(--amt-border-light);
  background: var(--amt-bg-card);
  color: var(--amt-text-secondary);
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--amt-font-body);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.tab-btn,
button.tab-btn {
  color: var(--amt-text-secondary) !important;
  -webkit-text-fill-color: var(--amt-text-secondary) !important;
  opacity: 1 !important;
  font-size: 14px !important;
}

.tab-btn.is-active,
button.tab-btn.is-active {
  border-color: var(--amt-primary);
  background: var(--amt-primary) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.tab-btn:hover:not(.is-active),
button.tab-btn:hover:not(.is-active) {
  border-color: var(--amt-primary);
  background: var(--amt-primary-light) !important;
  color: var(--amt-primary) !important;
  -webkit-text-fill-color: var(--amt-primary) !important;
}

/* Pricing page vehicle tabs */
.vehicle-tabs .tab-btn:hover:not(.is-active),
.vehicle-tabs button.tab-btn:hover:not(.is-active) {
  background: var(--amt-primary-light) !important;
  border-color: var(--amt-primary);
  color: var(--amt-primary) !important;
  -webkit-text-fill-color: var(--amt-primary) !important;
}

.vehicle-tabs .tab-btn.is-active,
.vehicle-tabs button.tab-btn.is-active {
  box-shadow: 0 6px 20px rgba(11, 82, 57, 0.25);
  transform: translateY(-1px);
}

.vehicle-tabs .tab-btn.is-active::after {
  content: '\2713';
  margin-left: 8px;
  font-weight: 700;
}

/* ── Vehicle cards ─────────────────────────────────────────────────────── */

.vehicle-card {
  background: var(--amt-bg-card);
  border: 1px solid var(--amt-border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base);
}

.vehicle-card:hover {
  box-shadow: var(--amt-shadow-card-hover);
}

.vehicle-card.is-hidden {
  display: none;
}

.vehicle-card__img {
  position: relative;
  height: 180px;
  background: var(--amt-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amt-primary);
}

.vehicle-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--amt-accent);
  color: var(--amt-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  top: 0;
  left: 14px;
}

.vehicle-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vehicle-card h3 {
  font-family: var(--amt-font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--amt-text-primary);
  margin-bottom: 4px;
}

.vehicle-card__pax {
  font-size: 14px;
  color: var(--amt-text-secondary);
  margin-bottom: 12px;
}

.vehicle-card__features {
  margin: 0 0 16px;
}

.vehicle-card__features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--amt-text-primary);
}

.vehicle-card__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amt-primary);
  flex-shrink: 0;
}

.vehicle-card__price {
  font-family: var(--amt-font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--amt-accent-dark);
  margin-bottom: 14px;
}

.vehicle-card__price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--amt-text-secondary);
}

.vehicle-card .btn {
  margin-top: auto;
  width: 100%;
  padding: 12px 20px;
}

/* ── Pricing table ─────────────────────────────────────────────────────── */

.pricing-banner {
  background: none;
  border: none;
  color: var(--amt-primary);
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  background: var(--amt-dark);
  box-shadow: var(--amt-shadow-lg);
  -webkit-overflow-scrolling: touch;
}

.pricing-table-wrap::-webkit-scrollbar { height: 6px; }
.pricing-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(201, 159, 62, 0.45);
  border-radius: 999px;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px 8px;
  min-width: 800px;
  font-size: 14px;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: center;
  color: var(--amt-text-on-dark-muted);
  white-space: nowrap;
  border-radius: 10px;
}

.pricing-table thead th {
  background: linear-gradient(180deg, rgba(201,159,62,0.18) 0%, rgba(201,159,62,0.06) 100%);
  font-family: var(--amt-font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(201, 159, 62, 0.2);
}

.pricing-table thead th small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--amt-text-on-dark-muted);
}

.pricing-table tbody td {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.15s linear, border-color 0.15s linear, color 0.15s linear;
  will-change: background-color;
}

.pricing-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-table tbody tr:hover td {
  background: rgba(201, 159, 62, 0.10);
  border-color: rgba(201, 159, 62, 0.25);
}

.pricing-table tbody tr:hover td:first-child {
  color: var(--amt-accent);
}

.pricing-table td:first-child,
.pricing-table th:first-child {
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.15s linear;
}

.pricing-table td.price {
  font-family: var(--amt-font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--amt-accent);
}

@media (max-width: 700px) {
  .pricing-table th,
  .pricing-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* ── Discount badges ───────────────────────────────────────────────────── */

.discount-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.discount-tag {
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.discount-tag--urgency {
  background: var(--amt-urgency);
  border: none;
}
.discount-tag--urgency strong { color: #ffffff; }
.discount-tag--urgency span  { color: rgba(255,255,255,0.85); }

.discount-tag--primary {
  background: var(--amt-primary);
  border: none;
}
.discount-tag--primary strong { color: #ffffff; }
.discount-tag--primary span  { color: rgba(255,255,255,0.85); }

.discount-tag--gold {
  background: var(--amt-accent-light);
  border: 1px solid var(--amt-accent);
}
.discount-tag--gold strong { color: var(--amt-accent-dark); }
.discount-tag--gold span  { color: var(--amt-text-secondary); }

.discount-tag--outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.discount-tag--outline strong { color: #ffffff; }
.discount-tag--outline span  { color: var(--amt-text-on-dark-muted); }

/* Fallback for unclassed discount tags (legacy) */
.discount-tag:not([class*="discount-tag--"]) {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.discount-tag strong {
  display: block;
  font-family: var(--amt-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.discount-tag span {
  font-size: 13px;
}

/* ── Ziyarat cards ─────────────────────────────────────────────────────── */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ziyarat-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--amt-bg-card);
  border: 1px solid var(--amt-border-light);
  box-shadow: var(--amt-shadow-card);
}

.ziyarat-card__header {
  height: 220px;
  background: linear-gradient(180deg, rgba(6,46,32,0.2), rgba(6,46,32,0.78)), center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
}

.ziyarat-card__header.makkah {
  background-image:
    linear-gradient(180deg, rgba(6,46,32,0.2), rgba(6,46,32,0.78)),
    url('https://onlineumrahhajjtaxi.com/wp-content/uploads/2026/06/Gemini_Generated_Image_ovpaopovpaopovpa-clean-scaled.webp');
}

.ziyarat-card__header.madinah {
  background-image:
    linear-gradient(180deg, rgba(6,46,32,0.2), rgba(6,46,32,0.78)),
    url('https://onlineumrahhajjtaxi.com/wp-content/uploads/2026/06/Gemini_Generated_Image_nlli1qnlli1qnlli-clean-scaled.webp');
}

.ziyarat-card__header h3 {
  font-family: var(--amt-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.ziyarat-card__body {
  padding: 24px;
}

.ziyarat-card__body h4 {
  color: var(--amt-text-primary);
}

.ziyarat-card__body p {
  font-size: 15px;
  color: var(--amt-text-secondary);
}

.ziyarat-card__sites {
  margin: 14px 0 20px;
}

.ziyarat-card__sites li {
  font-size: 14px;
  color: var(--amt-text-primary);
  padding: 6px 0;
  border-bottom: 1px dashed var(--amt-border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ziyarat-card__sites li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amt-primary);
  flex-shrink: 0;
}

.ziyarat-card__prices {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.ziyarat-card__prices div {
  flex: 1;
  background: var(--amt-accent-light);
  border: 1px solid rgba(201, 159, 62, 0.25);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.ziyarat-card__prices strong {
  display: block;
  color: var(--amt-accent-dark);
  font-family: var(--amt-font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.ziyarat-card__prices span {
  font-size: 13px;
  color: var(--amt-text-secondary);
}

/* ── About section ─────────────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.about-image {
  position: relative;
  height: 100%;
}

.about-image img {
  border-radius: var(--radius-card);
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-image__stat {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--amt-bg-card);
  border: 1px solid var(--amt-border-light);
  border-radius: var(--radius-card);
  box-shadow: var(--amt-shadow-md);
  padding: 20px 28px;
  text-align: center;
}

.about-image__stat strong {
  display: block;
  font-family: var(--amt-font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--amt-accent);
}

.about-image__stat span {
  font-size: 13px;
  color: var(--amt-text-secondary);
}

/* About section on dark bg */
.section--dark .about-grid h2 {
  color: #ffffff;
}

.section--dark .about-grid p {
  color: var(--amt-text-on-dark-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-bullets {
  margin: 20px 0 28px;
}

.about-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #000;
}

.about-bullets li span {
  color: #000;
}

.about-bullets li svg {
  flex-shrink: 0;
  color: var(--amt-accent);
  margin-top: 3px;
}

.about-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-ctas .btn--outline-light {
  color: var(--amt-accent);
  border-color: var(--amt-accent);
}

.about-ctas .btn--outline-light:hover {
  background-color: var(--amt-accent);
  color: var(--amt-dark);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image__stat { right: 16px; }
}

/* ── How it works ──────────────────────────────────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--amt-primary);
  color: #ffffff;
  font-family: var(--amt-font-display);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(11, 82, 57, 0.25);
}

.step-card h3 {
  font-family: var(--amt-font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amt-text-primary);
}

.step-card p {
  font-size: 15px;
  color: var(--amt-text-secondary);
}

/* Connecting line between steps */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -12%;
  width: 24%;
  height: 2px;
  background: var(--amt-accent);
}

/* ── Testimonials / Reviews ────────────────────────────────────────────── */

.rating-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--amt-border-on-dark);
  border-radius: var(--radius-card);
  padding: 32px;
}

.rating-summary__score {
  text-align: center;
}

.rating-summary__score strong {
  display: block;
  font-family: var(--amt-font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--amt-text-on-dark);
}

.rating-summary__stars {
  color: var(--amt-accent);
  font-size: 18px;
  margin: 6px 0;
}

.rating-summary__count {
  font-size: 13px;
  color: var(--amt-text-on-dark-muted);
}

.rating-summary__bars {
  flex: 1;
  min-width: 240px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--amt-text-on-dark-muted);
}

.rating-bar__track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: var(--amt-accent);
  border-radius: 4px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--amt-border-on-dark);
  border-radius: var(--radius-card);
  padding: 24px;
}

.testimonial-card__stars {
  color: var(--amt-accent);
  margin-bottom: 12px;
  font-size: 15px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--amt-text-on-dark);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--amt-primary-light);
  color: var(--amt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--amt-font-display);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--amt-text-on-dark);
}

.testimonial-card__author span {
  font-size: 13px;
  color: var(--amt-text-on-dark-muted);
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.faq-sidebar h2 {
  color: var(--amt-text-primary);
  margin-bottom: 12px;
}

.faq-sidebar p {
  color: var(--amt-text-secondary);
  margin-bottom: 24px;
}

.faq-item {
  border: 1px solid var(--amt-border-light);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--amt-bg-card);
}

.faq-item__question,
button.faq-item__question {
  width: 100%;
  text-align: left;
  background: var(--amt-bg-card) !important;
  color: var(--amt-text-primary) !important;
  -webkit-text-fill-color: var(--amt-text-primary) !important;
  opacity: 1 !important;
  border: none;
  padding: 18px 22px;
  font-family: var(--amt-font-body);
  font-weight: 500;
  font-size: 15px !important;
  line-height: 1.4;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.faq-item.is-open .faq-item__question,
button.faq-item.is-open .faq-item__question {
  background: var(--amt-primary-light) !important;
  color: var(--amt-primary) !important;
  -webkit-text-fill-color: var(--amt-primary) !important;
  font-weight: 600 !important;
}

.faq-item__question::after {
  content: '+';
  font-size: 22px;
  color: var(--amt-primary);
  flex-shrink: 0;
  transition: transform var(--transition-base);
  line-height: 1;
}

.faq-item.is-open .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--amt-primary-light);
}

.faq-item__answer p {
  padding: 0 22px 18px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--amt-text-secondary);
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
}

/* ── Final CTA banner ──────────────────────────────────────────────────── */

.cta-banner {
  background: var(--amt-primary);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #ffffff !important;
  font-family: var(--amt-font-display);
}

.cta-banner p {
  color: var(--amt-text-on-dark-muted) !important;
}

.cta-banner__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 28px 0 16px;
}

.cta-banner .btn--outline-light:hover {
  border-color: var(--amt-accent);
  color: var(--amt-accent);
}

.cta-banner__guarantee {
  font-size: 14px;
  color: var(--amt-text-on-dark-muted);
}

.cta-banner__guarantee .sep {
  color: var(--amt-accent);
  margin: 0 6px;
}

/* ── Social strip ──────────────────────────────────────────────────────── */

.social-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.social-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--amt-bg-card);
  border: 1px solid var(--amt-border-light);
  box-shadow: var(--amt-shadow-card);
  transition: box-shadow var(--transition-base);
}

.social-strip__item:hover {
  box-shadow: var(--amt-shadow-card-hover);
}

.social-strip__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

/* Platform-specific icon colors */
.social-strip__icon--facebook { background: #1877F2; }
.social-strip__icon--instagram { background: linear-gradient(135deg, #E1306C, #833AB4, #F77737); }
.social-strip__icon--tiktok   { background: #010101; }
.social-strip__icon--youtube  { background: #FF0000; }
.social-strip__icon--whatsapp { background: #25D366; }
.social-strip__icon--twitter  { background: #1DA1F2; }
/* Default fallback */
.social-strip__icon:not([class*="--"]) { background: var(--amt-primary); }

.social-strip__item strong {
  display: block;
  font-family: var(--amt-font-body);
  font-weight: 600;
  color: var(--amt-text-primary);
}

.social-strip__item span {
  font-size: 14px;
  color: var(--amt-text-secondary);
}

/* ── Dark-section tab button overrides ────────────────────────────────── */
/* Vehicle inner pages: tabs live inside .section--dark (deep green bg).
   The base .tab-btn forces dark text which becomes invisible on dark bg.
   These rules override that with high specificity + !important. */

.section--dark .tab-btn,
.section--dark button.tab-btn {
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.88) !important;
}

.section--dark .tab-btn.is-active,
.section--dark button.tab-btn.is-active {
  background: var(--amt-accent) !important;
  border-color: var(--amt-accent) !important;
  color: var(--amt-dark) !important;
  -webkit-text-fill-color: var(--amt-dark) !important;
}

.section--dark .tab-btn:hover:not(.is-active),
.section--dark button.tab-btn:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── Pricing table first-column text — always white on dark table bg ───── */

.pricing-table td:first-child,
.pricing-table th:first-child {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-align: left;
  font-weight: 500;
}

/* ── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .grid-4      { grid-template-columns: repeat(2, 1fr); }
  .grid-3      { grid-template-columns: repeat(2, 1fr); }
  .discount-tags { grid-template-columns: repeat(2, 1fr); }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .social-strip { grid-template-columns: repeat(2, 1fr); }
  .step-card:not(:last-child)::after { display: none; }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2,
  .discount-tags, .steps-grid, .social-strip {
    grid-template-columns: 1fr;
  }
  .form-row    { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; }
}

/* ==========================================================================
   DESIGN POLISH LAYER  (appended — loads last, overrides earlier rules)

   The base cards already share --radius-card and --amt-border-light, so the
   incoherence was never the tokens. It was:
     • every section using identical 72px padding, so nothing reads as more
       important than anything else
     • card padding drifting between 24px / 28px / 0
     • three different hover behaviours (lift / border-recolour / shadow-only)
   This layer fixes those three things and adds accessible focus states.
   ========================================================================== */

/* ── 1. Section rhythm ───────────────────────────────────────────────────
   Three deliberate steps instead of one flat value, so scanning the page
   communicates hierarchy before a single word is read. */
.section {
  padding: 88px 0;
}

/* Conversion-critical sections get more air around them. */
.section--feature {
  padding: 112px 0;
}

/* Supporting strips stay tight so they read as connective tissue. */
.section--compact {
  padding: 52px 0;
}

@media (max-width: 768px) {
  .section          { padding: 60px 0; }
  .section--feature { padding: 72px 0; }
  .section--compact { padding: 40px 0; }
}

/* ── 2. Section heading ──────────────────────────────────────────────────
   One consistent heading block everywhere. */
.section-heading {
  margin-bottom: 48px;
}

.section-heading p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--amt-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amt-accent);
}

/* ── 3. Unified card treatment ───────────────────────────────────────────
   Same padding, same shadow, same single hover gesture. Vehicle cards keep
   padding:0 because their image is edge-to-edge; their inner body is padded. */
.route-card,
.feature-card,
.ziyarat-card,
.testimonial-card,
.social-strip__item {
  box-shadow: var(--amt-shadow-card);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.vehicle-card {
  box-shadow: var(--amt-shadow-card);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.route-card,
.feature-card {
  padding: 28px;
}

/* One shared hover gesture: a restrained lift, never a bounce. */
.route-card:hover,
.feature-card:hover,
.vehicle-card:hover,
.ziyarat-card:hover,
.social-strip__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--amt-shadow-card-hover);
  border-color: var(--amt-accent);
}

/* Testimonials sit on a dark section — keep the on-dark border there. */
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--amt-accent);
}

/* ── 4. Accessible focus states ──────────────────────────────────────────
   Keyboard users currently get no visible focus ring on the gold buttons. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--amt-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 5. Respect reduced-motion ───────────────────────────────────────────
   The marquee animates indefinitely, which can be genuinely uncomfortable
   for users with vestibular sensitivity. */
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none !important;
    transform: none !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── 6. Pricing table — 6 columns need tighter cells to avoid overflow ─── */
.pricing-table th,
.pricing-table td {
  white-space: nowrap;
}

.pricing-table th small {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* Let the route column breathe, keep price columns compact and even. */
.pricing-table td:first-child,
.pricing-table th:first-child {
  text-align: left;
  white-space: normal;
  min-width: 210px;
}

.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ==========================================================================
   CONVERSION LAYER — sticky mobile bar, form consent, trust row, success state
   ========================================================================== */

/* ── Sticky mobile action bar ────────────────────────────────────────────
   Mobile only. Hidden until the hero scrolls out (JS toggles .is-visible),
   so it never competes with the hero's own CTAs. */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(6, 46, 32, 0.97);
  border-top: 1px solid var(--amt-border-on-dark);
  box-shadow: 0 -4px 20px rgba(6, 46, 32, 0.25);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;            /* comfortable tap target */
  padding: 0 14px;
  border-radius: var(--radius-pill);
  font-family: var(--amt-font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.sticky-cta__btn--call {
  background: transparent;
  color: var(--amt-text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.sticky-cta__btn--wa {
  background: var(--amt-accent);
  color: var(--amt-dark);
  border: 1px solid var(--amt-accent);
}

.sticky-cta__btn svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }
  /* The floating bubble would sit on top of the bar — retire it on mobile. */
  .sticky-cta.is-visible ~ .whatsapp-float {
    display: none;
  }
  /* Keep the last section clear of the fixed bar. */
  body {
    padding-bottom: 72px;
  }
}

/* ── Booking form: trust row ─────────────────────────────────────────────
   Answers the three objections that stop a pilgrim booking, right at the
   point of decision. */
.booking-card__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.booking-card__trust li {
  position: relative;
  padding-left: 20px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--amt-text-secondary);
  font-weight: 500;
}

.booking-card__trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--amt-primary);
  border-bottom: 2px solid var(--amt-primary);
  transform: rotate(-45deg);
}

/* ── Booking form: consent note ──────────────────────────────────────────── */
.booking-card__consent {
  margin: 12px 0 0;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--amt-text-tertiary);
}

.booking-card__consent a {
  color: var(--amt-text-secondary);
  text-decoration: underline;
}

/* ── Success state ───────────────────────────────────────────────────────
   A real confirmation panel, not just a line of status text — this is the
   moment the conversion event fires, so it should feel like an arrival. */
.booking-success {
  display: none;
  text-align: center;
  padding: 28px 22px;
}

.booking-success.is-visible {
  display: block;
}

.booking-success__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amt-primary-light);
  color: var(--amt-primary);
}

.booking-success h3 {
  margin: 0 0 8px;
  font-family: var(--amt-font-display);
  font-size: 22px;
  color: var(--amt-text-primary);
}

.booking-success p {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--amt-text-secondary);
}

.booking-success .btn {
  width: 100%;
}



/* ==========================================================================
   REVIEWS — review-platform styling (square star tiles, score panel, cards)
   Design language only: no third-party branding and no claim of external
   verification, since these are the client's own first-party testimonials.
   ========================================================================== */

.reviews {
  background: var(--amt-bg-page);
}

/* ── Star tiles ──────────────────────────────────────────────────────────
   The signature element: solid squares, not glyphs. Off state is a muted
   tile so the row always reads as "x out of 5". */
.rv-stars {
  display: inline-flex;
  gap: 3px;
}

.rv-star {
  position: relative;
  width: 21px;
  height: 21px;
  border-radius: 3px;
  background: #d6d9dc;               /* empty tile */
  overflow: hidden;
}

.rv-star.is-on {
  background: #00b67a;               /* rating green */
}

/* Half tile: green on the left, muted on the right. */
.rv-star.is-half::before {
  content: '';
  position: absolute;
  inset: 0 50% 0 0;
  background: #00b67a;
}

/* White star glyph centred in every tile. */
.rv-star::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  clip-path: polygon(
    50% 16%, 61% 39%, 86% 42%, 68% 60%,
    73% 85%, 50% 72%, 27% 85%, 32% 60%,
    14% 42%, 39% 39%
  );
}

.rv-stars--lg .rv-star {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

/* ── Score panel ─────────────────────────────────────────────────────── */
.reviews-summary {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 52px;
  padding: 32px 36px;
  background: var(--amt-bg-card);
  border: 1px solid var(--amt-border-light);
  border-radius: var(--radius-card);
  box-shadow: var(--amt-shadow-card);
}

.reviews-summary__score {
  text-align: center;
}

.reviews-summary__verdict {
  font-family: var(--amt-font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--amt-text-primary);
  margin-bottom: 12px;
}

.reviews-summary__meta {
  margin-top: 12px;
  font-size: 15px;
  color: var(--amt-text-secondary);
}

.reviews-summary__meta strong {
  font-size: 19px;
  color: var(--amt-text-primary);
}

.reviews-summary__count {
  margin-top: 4px;
  font-size: 13px;
  color: var(--amt-text-tertiary);
}

/* ── Rating distribution bars ────────────────────────────────────────── */
.reviews-summary__bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.rv-bar {
  display: grid;
  grid-template-columns: 52px 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--amt-text-secondary);
}

.rv-bar__track {
  height: 9px;
  border-radius: 3px;
  background: #eceef0;
  overflow: hidden;
}

.rv-bar__fill {
  height: 100%;
  background: #00b67a;
  border-radius: 3px;
}

.rv-bar__pct {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ── Review cards ────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.rv-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--amt-bg-card);
  border: 1px solid var(--amt-border-light);
  border-radius: var(--radius-card);
  box-shadow: var(--amt-shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.rv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--amt-shadow-card-hover);
  border-color: var(--amt-border-medium);
}

.rv-card__title {
  margin: 16px 0 8px;
  font-family: var(--amt-font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--amt-text-primary);
}

.rv-card__body {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--amt-text-secondary);
}

/* Author block pinned to the bottom so cards align regardless of text length. */
.rv-card__author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--amt-border-light);
}

.rv-card__avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--amt-primary-light);
  color: var(--amt-primary);
  font-weight: 700;
  font-size: 15px;
}

.rv-card__who {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.rv-card__who strong {
  font-size: 14.5px;
  color: var(--amt-text-primary);
}

.rv-card__who span {
  font-size: 12.5px;
  color: var(--amt-text-tertiary);
}

@media (max-width: 700px) {
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px 22px;
  }
}

/* ==========================================================================
   FIXES LAYER — loads last, so these win over everything above
   ========================================================================== */

/* ── Pricing table: remove the white edging ──────────────────────────────
   Cells carried `border: 1px solid rgba(255,255,255,0.05)` — a white hairline
   that read as a grey/white outline against the deep green. Re-tinted to the
   gold already used by the header row so the table stays one material. */
.pricing-table tbody td {
  border-color: rgba(201, 159, 62, 0.10);
}

.pricing-table tbody tr:nth-child(even) td {
  border-color: rgba(201, 159, 62, 0.10);
}

/* "All prices are final, with no hidden fees" was set to --amt-primary (dark
   green) while sitting on the dark green section, so it was almost invisible. */
.pricing-banner {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* The discount tags sit on the same dark section and carried the same white
   hairline, so re-tint them and keep the whole pricing block one material. */
.discount-tag,
.discount-tag--outline,
.discount-tag:not([class*="discount-tag--"]) {
  border-color: rgba(201, 159, 62, 0.22);
}

/* Kill any outer border/outline inherited from the theme's table defaults. */
.pricing-table,
.pricing-table-wrap {
  border: 0;
  outline: 0;
}

.pricing-table-wrap {
  /* border-spacing leaves a 6px gutter; trim it so the rounded corners of the
     wrapper sit flush against the outer row pills. */
  padding: 2px 6px 8px;
}

/* ── Full-width divider between adjacent same-background sections ─────────
   Where two plain sections sit next to each other (Routes → Vehicles, and
   FAQ → Social) the shared cream background merged them into one long slab
   with no visible break. A hairline restores the boundary.
   Sections that already change background colour don't need one. */
.section:not(.section--dark):not(.section--accent):not(.cta-banner)
  + .section:not(.section--dark):not(.section--accent):not(.cta-banner) {
  position: relative;
}

.section:not(.section--dark):not(.section--accent):not(.cta-banner)
  + .section:not(.section--dark):not(.section--accent):not(.cta-banner)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--amt-border-medium) 12%,
    var(--amt-border-medium) 88%,
    transparent
  );
}

