/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 04 2026 | 15:43:34 */
/* BASE */
body {
  font-family: Arial, sans-serif;
  background: #f6f3f1;
  margin: 2px;
}

/* =========================
   Bronze METALLIC COLORS
========================= */
:root {
  --bronze-main: #cd7f32;
  --bronze-dark: #8c4a1f;
  --bronze-light: #f5e6d8;
  --bronze-accent: #b87333;
  --bronze-gradient: linear-gradient(135deg, #e0a96d, #cd7f32, #8c4a1f);
  --bronze-dim : #b8892d; 	
}

/* CONTAINER */
.platinum-package-details-container {

 	
  position: relative;	
  width : 100%;

  background: #fff;
  padding: 30px;
  border-radius: 12px;
  display: block; /* IMPORTANT FIX */
  align-self : center; 	
}

/* HEADER */
.platinum-package-details-header {
  position: relative;
  margin-top : -120px; 
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between; /* IMPORTANT for hamburger */
  gap: 15px;
  width: 100%;
}


.platinum-package-details-title span {
  background: var(--bronze-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.platinum-package-details-title{
	display: inline-block;

}

.platinum-package-details-subtitle {
  color: #777;
}



/* IMAGE STRIP */
.platinum-package-details-image-strip {
  display: flex;
  gap: 0px;
  margin: 15px 0;
}

/* CARD */
.platinum-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);
}

.platinum-package-details-card:hover {
  transform: scale(1.03);
  z-index: 2;
}

/* overlay */
.platinum-package-details-card::before {
	  display: none;

}

/* metallic divider */
.platinum-package-details-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #ffffff,
    #cfd4da,
    #8f98a3,
    #cfd4da,
    #ffffff
  );
  z-index: 3;
}

.platinum-package-details-card:last-child::after {
  display: none;
}

/* CAPTION */
.platinum-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;
}

.platinum-package-details-caption span {
  display: block;
  font-size: 11px;
  opacity: 0.85;
}

/* SHAPES */
.platinum-package-details-card:nth-child(1) {
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 0% 100%);
}

.platinum-package-details-card:nth-child(2),
.platinum-package-details-card:nth-child(3),
.platinum-package-details-card:nth-child(4) {
  clip-path: polygon(6% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.platinum-package-details-card:nth-child(5) {
  clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* =========================
   IMAGE ASSIGNMENTS
========================= */

.platinum-package-details-card:nth-child(1) {
  background-image: url('https://hijazexpress.com/wp-content/uploads/2026/04/Masjid-al‑Haram-warmed.png');
}

.platinum-package-details-card:nth-child(2) {
  background-image: url('https://hijazexpress.com/wp-content/uploads/2026/04/Masjid-al‑Jirranah-warmed-.png');
}

.platinum-package-details-card:nth-child(3) {
  background-image: url('https://hijazexpress.com/wp-content/uploads/2026/04/The-Treaty-of-Hudaybiya-site-warmed-.png');
}

.platinum-package-details-card:nth-child(4) {
  background-image: url('https://hijazexpress.com/wp-content/uploads/2026/04/Qarn-al‑Manazil-Taif-warmed.png');
}

.platinum-package-details-card:nth-child(5) {
  background-image: url('https://hijazexpress.com/wp-content/uploads/2026/04/Al‑Masjid-an‑Nabawi-warmed.png');
}


/* =========================
   ROUTE
========================= */
.route-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.route-item {
  flex-direction: column; /* Keeps Label -> Text -> Icon stacked */
  align-items: center;
  margin: 0 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;
  /* Adjust this margin to match the vertical center of your icon */
  margin-bottom: 35px; 	
}

/* 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 : 2px; 
  margin: 0 5px;
}

/* ARROW */
.route-line .arrow {
  color: var(--bronze-dim);
  font-size: 18px;
}


/* =========================
   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 */
.platinum-package-details-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}





@media (max-width: 1024px) {
	
	



body {
  background: #f7f7f7;
  color: #222;
   margin: 2px;	
}

/* MAIN WRAPPER */
.platinum-package-details-container{
 margin-top : 60px; 	
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 0;
  background: #fff;
 align-self : center; 	
 
}
	


/* HEADER */
.platinum-package-details-header{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 3px;
  margin-top : 50px; 	
}



.platinum-package-details-title{
  font-size: 24px;
}

	
.platinum-package-details-title span{
  color: green;
}

.platinum-package-details-subtitle{
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

/* IMAGE STRIP */
.platinum-package-details-image-strip{
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.platinum-package-details-card{
  clip-path: none !important;
  border-radius: 0px; /* optional: set 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 */
.platinum-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;
}

.platinum-package-details-caption strong{
  font-size: 14px;
}

.platinum-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;
  flex-direction : row; 	
  align-items: center;
  justify-content: space-between; /* ✅ distribute columns */
  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;   /* ✅ fixed center column */
  display: flex;
   flex-shrink: 0;	
  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 SECTION */
.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;
}

/* BOOKING 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 */
.btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.btn.whatsapp {
  background: #25D366;
  color: white;
}

.btn.call {
  background: #222;
  color: white;
}

/* FOOTER */
.platinum-package-details-footer{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  font-size: 13px;
  color: #555;
}
}
