/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 04 2026 | 15:47:43 */
/* BASE */
body {
  font-family: Arial, sans-serif;
  background: #f5f6f7;
  margin: 2px;
}

/* =========================
   SILVER COLOR SYSTEM
========================= */
:root {
  --bronze-main: #cd7f32;
  --bronze-dark: #8c4a1f;
  --bronze-light: #f5e6d8;
  --bronze-accent: #b87333;
  --bronze-gradient: linear-gradient(135deg, #e0a96d, #cd7f32, #8c4a1f);
  /* Harmonize with Platinum; use --bronze‑dark everywhere */
}

/* CONTAINER */
.silver-package-details-container {
  position: relative;
  width : 100%; 
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  display: block;
  align-self: center;
}

/* HEADER */
.silver-package-details-header {
  position: relative;
  margin-top: -120px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}

.silver-package-details-title {
  display: inline-block;
}

.silver-package-details-title span {
  background: var(--bronze-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.silver-package-details-subtitle {
  color: #777;
}

/* IMAGE STRIP */
.silver-package-details-image-strip {
  display: flex;
  gap: 0;
  margin: 15px 0;
}

/* CARD */
.silver-package-details-card {
  position: relative;
  flex: 1;
  height: 160px;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
  filter: brightness(1.08) contrast(1.05);
}

.silver-package-details-card:hover {
  transform: scale(1.03);
  z-index: 2;
}

/* overlay */
.silver-package-details-card::before {
  display: none;
}

/* divider (silver metallic) */
.silver-package-details-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #ffffff,
    #d6d9dd,
    #9aa1a9,
    #d6d9dd,
    #ffffff
  );
  z-index: 3;
}

.silver-package-details-card:last-child::after {
  display: none;
}

/* CAPTION */
.silver-package-details-caption {
  position: absolute;
  bottom: 1px;
  left: 1px;
  z-index: 2;
  font-size: 11px;
  line-height: 1.1;
  background: rgba(0,0,0,0.25);
  padding: 3px 5px;
  border-radius: 6px;
}

.silver-package-details-caption span {
  display: block;
  font-size: 11px;
  opacity: 0.85;
}

/* SHAPES */
.silver-package-details-card:nth-child(1) {
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 0% 100%);
}

.silver-package-details-card:nth-child(2),
.silver-package-details-card:nth-child(3),
.silver-package-details-card:nth-child(4) {
  clip-path: polygon(6% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.silver-package-details-card:nth-child(5) {
  clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* =========================
   IMAGE ASSIGNMENTS
========================= */

.silver-package-details-card:nth-child(1) {
  background-image: url('https://hijazexpress.com/wp-content/uploads/2026/04/Jeddah-Airport-warmed.png');
}

.silver-package-details-card:nth-child(2) {
  background-image: url('https://hijazexpress.com/wp-content/uploads/2026/04/Masjid-al‑Haram-warmed.png');
}

.silver-package-details-card:nth-child(3) {
  background-image: url('https://hijazexpress.com/wp-content/uploads/2026/04/bedr-warmed.png');
}

.silver-package-details-card:nth-child(4) {
  background-image: url('https://hijazexpress.com/wp-content/uploads/2026/04/Al‑Masjid-an‑Nabawi-warmed.png');
}

.silver-package-details-card:nth-child(5) {
  background-image: url('https://hijazexpress.com/wp-content/uploads/2026/04/madina-airport-warmed.png');
}

/* =========================
   ROUTE
========================= */
.route-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.route-item {
  text-align: center;
  margin: 10px;
}

.route-label {
  font-size: 12px;
  color: var(--bronze-dim);
}

.route-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  font-size: 22px;
  border: 3px solid var(--bronze-dim);
  margin: 10px auto;
  position: relative;
  box-shadow: 0 0 10px rgba(180,180,180,0.3);
}

.route-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(200,200,200,0.4);
}

.route-line {
  display: flex;
  align-items: center;
}

/* DOT */
.route-line .dot {
  width: 8px;
  height: 8px;
  background: var(--bronze-dim);
  border-radius: 50%;
}

/* DASHED (horizontal) */
.route-line .dashed {
  border-top: 4px dashed var(--bronze-dim);
  width: 50px;
  height: 4px;
  margin: 0 5px;
}

/* ARROW */
.route-line .arrow {
  color: var(--bronze-dim);
  font-size: 18px;
}

/* =========================
   TAXI / TRIP BOX (matching Platinum structure)
========================= */
.taxi-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 5px 5px;
}

.taxi-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

.detail-row .icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TICKET BOX */
.taxi-booking {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px;
  background: #fafafa;
}

.taxi-booking h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.booking-info {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
}

/* BUTTONS */
.social.whatsapp,
.social.call {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.social.whatsapp {
  background: #25D366;
  color: white;
}

.social.call {
  background: #222;
  color: white;
}

/* TRAVEL DESCRIPTION */
.travel-description {
  background: #f9f9f9;
  margin-top: 10px;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--bronze-dark);
}

.travel-label {
  font-weight: bold;
  color: var(--bronze-dark);
  margin-bottom: 10px;
}

.travel-text {
  color: #333;
  line-height: 1.6;
}

/* FOOTER */
.silver-package-details-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* =========================
   RESPONSIVE (aligned with Platinum)
========================= */
@media (max-width: 1024px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  body {
    background: #f7f7f7;
    color: #222;
    margin: 0;
  }

  /* MAIN WRAPPER */
  .silver-package-details-container {
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #fff;
    align-self: center;
  }

  /* HEADER */
  .silver-package-details-header {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 3px;
    margin-top: 50px;
  }

  .silver-package-details-title {
    font-size: 24px;
  }

  .silver-package-details-title span {
    color: green;
  }

  .silver-package-details-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
  }

  /* IMAGE STRIP */
  .silver-package-details-image-strip {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .silver-package-details-card {
    clip-path: none !important;
    border-radius: 0; /* can go 10–12px if you want soft edges */
    height: 140px;
    width: 100%;
    flex: 0 0 100%;
    min-height: 140px;
    flex-shrink: 0;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* CAPTION */
  .silver-package-details-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .silver-package-details-caption strong {
    font-size: 14px;
  }

  .silver-package-details-caption span {
    font-size: 12px;
    opacity: 0.9;
  }

  /* ROUTE */
  .route-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
  }

  .route-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
  }

  .route-label {
    order: 1;
    flex: 1;
    text-align: left;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
  }

  .route-icon {
    order: 2;
    flex: 0 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-size: 16px;
    color: goldenrod;
  }

  .route-item h4 {
    order: 3;
    flex: 1;
    text-align: right;
    font-size: 16px;
  }

  /* LINE CONNECTOR */
  .route-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1px;
    margin-bottom: 1px;
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .route-line .dot {
    width: 8px;
    height: 8px;
    background: var(--bronze-dim);
    border-radius: 50%;
  }

  .route-line .dashed {
    width: 4px !important;
    height: 20px !important;
    border-top: none !important;
    border-left: 4px dashed var(--bronze-dim) !important;
  }

  .route-line .arrow {
    transform: rotate(90deg);
    color: var(--bronze-dim);
    font-size: 14px;
  }

  /* TAXI / TRIP BOX */
  .taxi-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 5px 5px;
  }

  .taxi-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .detail-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
  }

  .detail-row .icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* DESCRIPTION */
  .travel-description {
    margin-top: 10px;
  }

  .travel-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
  }

  .travel-package-description {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
  }

  /* TICKET BOX */
  .taxi-booking {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px;
    background: #fafafa;
  }

  .taxi-booking h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .booking-info {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
  }

  /* BUTTONS */
  .social.whatsapp,
  .social.call {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .social.whatsapp {
    background: #25D366;
    color: white;
  }

  .social.call {
    background: #222;
    color: white;
  }

  /* FOOTER */
  .silver-package-details-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    font-size: 13px;
    color: #555;
  }
}