/* 🌍 PREMIUM UPDATED UI */
body{
  margin:0;
  padding:18px;
  font-family:'Poppins',sans-serif;
  background:#f4f7fb;
  color:#111827;
}

/* 🔥 TITLE */
h1{
  text-align:center;
  font-size:30px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:24px;
  letter-spacing:.5px;
}

/* 📦 MAIN CARD */
.card{
  background:#ffffff;
  border-radius:24px;
  padding:20px;
  margin-bottom:22px;
  border:1px solid #e2e8f0;
  box-shadow:
    0 10px 35px rgba(15,23,42,.06),
    0 3px 10px rgba(15,23,42,.04);
  position:relative;
  overflow:hidden;
}

/* TOP PREMIUM LINE */
.card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:linear-gradient(90deg,#2563eb,#06b6d4,#14b8a6);
}

/* PACKAGE NAME */
.card h2{
  margin:0;
  font-size:25px;
  font-weight:800;
  color:#0f172a;
}

/* STATUS */
.status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  padding:10px 18px;
  border-radius:50px;
  
  /* PREMIUM BLUE GLASS */
  background:linear-gradient(135deg,#eff6ff,#dbeafe);
  
  /* BLUE BORDER */
  border:1.5px solid #3b82f6;
  
  /* TEXT */
  color:#1d4ed8;
  font-size:13px;
  font-weight:700;

  /* EFFECT */
  box-shadow:
    0 4px 14px rgba(59,130,246,.18),
    inset 0 1px 0 rgba(255,255,255,.7);

  position:relative;
  z-index:2;
  
  backdrop-filter:blur(8px);
}

/* OPTIONAL DOT */
.status::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#2563eb;
  box-shadow:0 0 10px rgba(37,99,235,.6);
}

/* SECTION TITLE */
.section-title{
  margin-top:22px;
  margin-bottom:12px;
  font-size:15px;
  font-weight:800;
  color:#2563eb;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* 👤 TRAVELLER (OLD STYLE KEEP) */
.traveller{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr 1fr;
  gap:10px;
  background:linear-gradient(135deg,#eff6ff,#dbeafe);
  padding:14px;
  margin-top:8px;
  border-radius:18px;
  border:1px solid #bfdbfe;
  font-size:14px;
  box-shadow:0 5px 20px rgba(37,99,235,.08);
}

/* EACH TRAVELLER ITEM */
.traveller div{
  background:#ffffff;
  padding:14px;
  border-radius:16px;
  box-shadow:0 4px 12px rgba(15,23,42,.05);
  border:1px solid #e2e8f0;
  transition:.3s;
  color:#0f172a;
  line-height:1.7;
  font-weight:600;
}

.traveller div:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(37,99,235,.12);
}

/* 💰 TOTAL */
.total{
  margin-top:24px;
  padding:24px;
  border-radius:26px;
  background:linear-gradient(135deg,#0f172a,#2563eb);
  color:#fff;
  text-align:center;
  font-size:28px;
  font-weight:800;
  box-shadow:0 12px 35px rgba(37,99,235,.22);
}

/* 📦 INFO BOX */
.box{
  background:#ffffff;
  padding:18px;
  border-radius:20px;
  margin-top:18px;
  border:1px solid #e2e8f0;
  box-shadow:0 6px 20px rgba(15,23,42,.05);
}

/* 🏨 HOTEL CARD */
.hotel{
  background:#ffffff;
  border-radius:20px;
  margin-top:16px;
  overflow:hidden;
  border:1px solid #e2e8f0;
  box-shadow:0 8px 25px rgba(15,23,42,.06);
  transition:.3s;
}

.hotel:hover{
  transform:translateY(-3px);
}

/* 🖼️ HOTEL IMAGE */
.hotel-img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
}

/* HOTEL CONTENT */
.hotel-content{
  padding:16px;
}

.hotel h3{
  margin:0;
  font-size:22px;
  color:#0f172a;
  font-weight:800;
}

.hotel p{
  margin:8px 0;
  color:#475569;
  font-size:14px;
  line-height:1.6;
}

/* ⭐ HOTEL TAG */
.hotel-tag{
  display:inline-block;
  margin-top:10px;
  padding:7px 14px;
  border-radius:30px;
  background:#eff6ff;
  color:#2563eb;
  font-size:12px;
  font-weight:700;
}

/* 👨 GUIDE CARD */
.guide-card{
  display:flex;
  align-items:center;
  gap:16px;
  background:#fff;
  border-radius:22px;
  padding:16px;
  margin-top:16px;
  border:1px solid #e2e8f0;
  box-shadow:0 8px 24px rgba(15,23,42,.05);
}

/* 👤 PROFILE */
.profile{
  width:90px;
  height:110px;
  object-fit:cover;
  border-radius:18px;
  border:3px solid #dbeafe;
  box-shadow:0 6px 18px rgba(37,99,235,.12);
}

/* GUIDE INFO */
.guide-info{
  flex:1;
}

.guide-name{
  display:flex;
  align-items:center;
  gap:7px;
  font-size:20px;
  font-weight:800;
  color:#0f172a;
}

.guide-phone{
  margin-top:6px;
  font-size:14px;
  color:#64748b;
}

.guide-info p{
  margin-top:8px;
  color:#475569;
  line-height:1.6;
  font-size:14px;
}

/* VERIFIED BADGE */
.badge-svg{
  display:flex;
  align-items:center;
}

.badge-svg svg{
  width:18px;
  height:18px;
}

/* 🚖 CAB IMAGE */
.wide-img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:18px;
  margin-top:12px;
}

/* 📅 DAY BOX */
.day-box{
  background:#ffffff;
  padding:18px;
  border-radius:22px;
  margin-bottom:16px;
  border-left:5px solid #2563eb;
  box-shadow:0 6px 20px rgba(15,23,42,.05);
}

.day-box h3{
  margin:0 0 10px;
  color:#0f172a;
  font-size:20px;
}

.day-box p{
  margin:0;
  color:#475569;
  line-height:1.7;
  font-size:14px;
}

/* DONE DAY */
.day-box.done{
  border-left:5px solid #10b981;
  background:#f0fdf4;
}

/* TIME TAG */
.day-time{
  display:inline-block;
  margin-top:10px;
  padding:7px 13px;
  border-radius:30px;
  background:#eff6ff;
  color:#2563eb;
  font-size:12px;
  font-weight:700;
}

/* 🔔 GUIDE UPDATE */
.guide-update{
  background:linear-gradient(135deg,#eff6ff,#f0fdfa);
  border:1px solid #bfdbfe;
  border-radius:18px;
  padding:16px;
  margin-top:16px;
}

.guide-update h4{
  margin:0 0 8px;
  color:#2563eb;
  font-size:16px;
}

.guide-update p{
  margin:0;
  color:#334155;
  line-height:1.7;
}

/* 🔙 BACK BUTTON */
.back-btn{
  position:fixed;
  top:14px;
  left:14px;
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:#ffffff;
  color:#0f172a;
  font-size:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(15,23,42,.12);
  transition:.3s;
}

.back-btn:hover{
  transform:scale(1.08);
  background:#2563eb;
  color:#fff;
}

/* ❌ EMPTY */
.empty{
  text-align:center;
  margin-top:90px;
}

.empty img{
  width:100px;
  margin-bottom:14px;
}

.empty h2{
  color:#0f172a;
  font-size:28px;
}

.empty p{
  color:#64748b;
}

.empty a{
  display:inline-block;
  margin-top:16px;
  padding:13px 26px;
  background:linear-gradient(135deg,#2563eb,#06b6d4);
  color:white;
  text-decoration:none;
  border-radius:14px;
  font-weight:700;
  box-shadow:0 8px 25px rgba(37,99,235,.2);
}

/* 📱 MOBILE */
@media(max-width:700px){

  body{
    padding:14px;
  }

  h1{
    font-size:25px;
  }

  .card{
    padding:18px;
    border-radius:20px;
  }

  .card h2{
    font-size:22px;
  }

  .traveller{
    grid-template-columns:1fr 1fr;
  }

  .traveller div{
    font-size:13px;
    padding:12px;
  }

  .hotel-img{
    height:180px;
  }

  .guide-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .profile{
    width:82px;
    height:100px;
  }

  .total{
    font-size:20px;
  }

}

/* 🚨 ALERT BOX */
.alert-box{
  margin-top:18px;
  background:linear-gradient(135deg,#eff6ff,#f8fafc);
  border:1px solid #bfdbfe;
  border-left:5px solid #2563eb;
  border-radius:22px;
  padding:18px;
  box-shadow:0 8px 24px rgba(37,99,235,.08);
}

.alert-title{
  font-size:18px;
  font-weight:800;
  color:#1d4ed8;
  margin-bottom:10px;
}

.alert-text{
  color:#334155;
  line-height:1.7;
  font-size:14px;
  margin-bottom:12px;
}

.alert-number{
  background:#ffffff;
  padding:12px 14px;
  border-radius:14px;
  margin-bottom:10px;
  font-weight:700;
  color:#0f172a;
  border:1px solid #dbeafe;
}

.alert-email{
  background:#ffffff;
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
  color:#0f172a;
  border:1px solid #dbeafe;
  margin-bottom:12px;
}

.alert-warning{
  font-size:13px;
  color:#dc2626;
  line-height:1.7;
  font-weight:600;
}
