/* =============================================
   Prakash Zep Tours And Travels — Brand Styles
   ============================================= */

/* --- Color Override --- */
:root {
  --bs-primary: #0088cc;
  --bs-primary-rgb: 0, 136, 204;
  --bs-secondary: #003366;
  --bs-secondary-rgb: 0, 51, 102;
}

/* --- Buttons --- */
.btn-primary {
  background-color: #0088cc !important;
  border-color: #0088cc !important;
  color: #fff !important;
  font-weight: 600;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #006fa3 !important;
  border-color: #006fa3 !important;
}
.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
}
.btn-outline-white:hover { background: #fff; color: #003366; }

/* --- Enquire / WhatsApp Buttons --- */
.btn-enquire {
  display: inline-block;
  background: #0088cc;
  color: #fff !important;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background .3s;
}
.btn-enquire:hover { background: #006fa3; color: #fff !important; }

.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: #fff !important;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background .3s;
}
.btn-whatsapp:hover { background: #1ebe5a; color: #fff !important; }

/* --- Navigation Logo --- */
.site-nav .logo { display: flex; align-items: center; text-decoration: none; }
.site-nav .logo img { height: 50px; width: auto; }

/* --- Color helpers --- */
.bg-primary { background-color: #003366 !important; }
.text-primary { color: #0088cc !important; }
.heading { color: #003366; }

/* --- Hide price badges on destination cards --- */
.destination .price { display: none !important; }

/* --- Service & Package Cards --- */
.service-card, .pkg-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform .3s, box-shadow .3s;
  background: #fff;
  height: 100%;
}
.service-card:hover, .pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,51,102,0.15);
}
.service-card img, .pkg-card img {
  width: 100%; height: 220px; object-fit: cover;
}
.service-card .card-body, .pkg-card .card-body { padding: 20px; }
.service-card .card-body h3, .pkg-card .card-body h3 {
  color: #003366; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
}
.service-card .card-body p, .pkg-card .card-body p { color: #555; font-size: 0.9rem; }
.pkg-card .card-body .duration { color: #0088cc; font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.pkg-card .card-body ul { color: #555; font-size: 0.88rem; padding-left: 18px; }

/* --- Why Choose Us --- */
.why-item { text-align: center; padding: 24px 16px; }
.why-item .icon-wrap {
  width: 70px; height: 70px;
  background: rgba(0,136,204,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px; color: #0088cc;
}
.why-item h4 { color: #003366; font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.why-item p { color: #666; font-size: 0.88rem; }

/* --- Stats Bar --- */
.stats-bar { background: #003366; padding: 40px 0; }
.stat-item { text-align: center; }
.stat-item .num { font-size: 2.5rem; font-weight: 700; color: #0088cc; line-height: 1; }
.stat-item .label { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-top: 6px; }

/* --- Page Banner (inner pages) --- */
.page-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-banner::after { content: ''; position: absolute; inset: 0; background: rgba(0,51,102,0.75); }
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner .banner-content { position: relative; z-index: 2; width: 100%; text-align: center; padding: 70px 20px 50px; }
.page-banner h1 { color: #fff; font-weight: 700; margin-bottom: 12px; }
.page-banner .breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.page-banner .breadcrumb a:hover { color: #0088cc; }
.page-banner .breadcrumb-sep { color: rgba(255,255,255,0.5); margin: 0 8px; }
.page-banner .breadcrumb-cur { color: #0088cc; }

/* --- CTA Bar --- */
.cta-bar { background: linear-gradient(135deg, #003366, #005599); padding: 50px 0; }
.cta-bar h3 { color: #fff; font-size: 1.6rem; font-weight: 700; }
.cta-bar p { color: rgba(255,255,255,0.8); }

/* --- Contact Page --- */
.contact-info-box { background: #003366; color: #fff; border-radius: 12px; padding: 30px; height: 100%; }
.contact-info-box h3 { color: #0088cc; font-size: 1.3rem; margin-bottom: 20px; }
.contact-info-box .ci-item { display: flex; align-items: flex-start; margin-bottom: 20px; gap: 14px; }
.contact-info-box .ci-icon { font-size: 1.4rem; color: #0088cc; flex-shrink: 0; margin-top: 2px; }
.contact-info-box .ci-text a { color: #fff; text-decoration: none; }
.contact-info-box .ci-text a:hover { color: #0088cc; }
.contact-form-box { background: #f8f9fa; border-radius: 12px; padding: 30px; }
.contact-form-box h3 { color: #003366; margin-bottom: 20px; }
.contact-form-box .form-control { border-radius: 8px; border: 1px solid #ddd; padding: 12px 16px; }
.contact-form-box .form-control:focus { border-color: #0088cc; box-shadow: 0 0 0 3px rgba(0,136,204,0.15); }

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* --- Coming Soon Page --- */
.cs-page {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cs-bg { position: absolute; inset: 0; background: url('../images/hero_1.jpg') center/cover no-repeat; }
.cs-overlay { position: absolute; inset: 0; background: rgba(0,30,70,0.82); }
.cs-content { position: relative; z-index: 2; text-align: center; padding: 40px 20px; max-width: 700px; width: 100%; }
.cs-logo { height: 90px; width: auto; margin-bottom: 24px; }
.cs-title { color: #fff; font-size: 2.2rem; font-weight: 700; margin-bottom: 8px; }
.cs-subtitle { color: #0088cc; font-size: 1rem; font-weight: 600; margin-bottom: 16px; letter-spacing: 2px; text-transform: uppercase; }
.cs-desc { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 36px; line-height: 1.7; }
.countdown { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.cd-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 18px 22px; min-width: 80px; backdrop-filter: blur(4px); text-align: center; }
.cd-num { font-size: 2.5rem; font-weight: 700; color: #0088cc; line-height: 1; display: block; }
.cd-label { font-size: 0.7rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; display: block; }
.cs-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.btn-call-cs { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #003366 !important; padding: 12px 24px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all .3s; }
.btn-call-cs:hover { background: #f0f0f0; }
.btn-wa-cs { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: #fff !important; padding: 12px 24px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all .3s; }
.btn-wa-cs:hover { background: #1ebe5a; }
.cs-subscribe { display: flex; max-width: 420px; margin: 0 auto 28px; }
.cs-subscribe input { flex: 1; padding: 12px 18px; border: none; border-radius: 8px 0 0 8px; font-size: 0.95rem; outline: none; }
.cs-subscribe button { background: #0088cc; color: #fff; border: none; padding: 12px 22px; border-radius: 0 8px 8px 0; font-weight: 600; cursor: pointer; transition: background .3s; }
.cs-subscribe button:hover { background: #006fa3; }
.cs-social { display: flex; justify-content: center; gap: 14px; }
.cs-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 1rem; transition: background .3s; }
.cs-social a:hover { background: #0088cc; }

/* --- Missing image placeholder --- */
.pkg-card img[src*="pkg-"], .service-card img[src*="pkg-"] {
  background: linear-gradient(135deg, #003366, #0088cc);
}
img.img-fluid:not([src]), img.img-fluid[src=""] {
  min-height: 200px;
  background: linear-gradient(135deg, #003366, #0088cc);
}

/* --- Responsive --- */
@media (max-width: 576px) {
  .cs-title { font-size: 1.6rem; }
  .cd-num { font-size: 1.8rem; }
  .cd-box { min-width: 65px; padding: 12px 14px; }
  .stat-item .num { font-size: 2rem; }
}
