* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  overflow-x: hidden;
}

.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 60px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(0,0,0,0.97); }
.logo { color: #fff; font-size: 1.5rem; font-weight: 700; text-decoration: none; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { color: #ddd; text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #f5a623; }
.btn-nav {
  background: #f5a623; color: #fff; padding: 10px 24px;
  border-radius: 25px; text-decoration: none; font-weight: 600;
  transition: background 0.3s;
}
.btn-nav:hover { background: #e09010; }
.hamburger { display: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

.page-hero {
  height: 340px; position: relative;
  background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.page-hero .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 { font-size: 2.8rem; color: #fff; font-weight: 800; }
.page-hero-content p { color: #f5a623; margin-top: 8px; font-size: 1rem; }
.breadcrumb { color: #aaa; font-size: 0.85rem; margin-top: 10px; }
.breadcrumb a { color: #f5a623; text-decoration: none; }

.hero {
  height: 100vh; position: relative;
  background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600') center/cover no-repeat;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}
.hero-content { position: relative; z-index: 1; padding: 0 20px; }
.hero-tag { color: #f5a623; font-size: 1rem; font-weight: 600; margin-bottom: 12px; }
.hero-content h1 { font-size: 3.8rem; color: #fff; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.hero-content h1 span { color: #f5a623; }
.hero-sub { color: #ddd; font-size: 1.1rem; margin-bottom: 32px; max-width: 550px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: #f5a623; color: #fff; padding: 14px 32px;
  border-radius: 30px; text-decoration: none; font-weight: 600;
  transition: transform 0.2s, background 0.3s;
}
.btn-primary:hover { background: #e09010; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid #fff; color: #fff; padding: 14px 32px;
  border-radius: 30px; text-decoration: none; font-weight: 600;
  transition: all 0.3s;
}
.btn-outline:hover { background: #fff; color: #222; }
.hero-stats {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 60px; z-index: 1;
}
.stat h3 { color: #f5a623; font-size: 2rem; font-weight: 800; }
.stat p { color: #ddd; font-size: 0.85rem; }

.section-title { text-align: center; font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.section-title span { color: #f5a623; }
.section-sub { text-align: center; color: #666; margin-bottom: 50px; }

.why-us { padding: 80px 60px; background: #f9f9f9; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 40px;
}
.feature-card {
  background: #fff; padding: 36px 24px; border-radius: 16px;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-card i { font-size: 2.2rem; color: #f5a623; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: #777; font-size: 0.9rem; }

.packages { padding: 80px 60px; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pkg-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  border: none;
  background: #fff;
}
.pkg-card:hover { transform: translateY(-8px); }
.pkg-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative;
}
.pkg-badge {
  position: absolute; top: 14px; left: 14px;
  background: #f5a623; color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
}
.pkg-badge.hot { background: #e74c3c; }
.pkg-badge.spiritual { background: #8e44ad; }
.pkg-body { padding: 20px; background: #fff; }
.pkg-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.pkg-loc { color: #888; font-size: 0.85rem; margin-bottom: 14px; }
.pkg-loc i { color: #f5a623; margin-right: 4px; }
.pkg-includes { list-style: none; margin-bottom: 16px; }
.pkg-includes li { font-size: 0.85rem; color: #555; margin-bottom: 4px; }
.pkg-includes i { color: #27ae60; margin-right: 6px; }
.pkg-footer { display: flex; justify-content: space-between; align-items: center; }
.pkg-price { font-size: 1.3rem; font-weight: 700; color: #f5a623; }
.pkg-price span { font-size: 0.8rem; color: #999; font-weight: 400; }
.btn-book {
  background: #f5a623; color: #fff; padding: 8px 20px;
  border-radius: 20px; text-decoration: none; font-size: 0.85rem; font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.btn-book:hover { background: #e09010; }
.pkg-detail-link {
  display: inline-block;
  margin-top: 12px;
  color: #222;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}
.pkg-detail-link:hover { color: #f5a623; }

.pkg-detail { padding: 60px; max-width: 1100px; margin: 0 auto; }
.pkg-detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start; }
.pkg-detail-img { border-radius: 20px; overflow: hidden; height: 400px; background-size: cover; background-position: center; }
.pkg-detail-info h2 { font-size: 2rem; margin-bottom: 10px; }
.pkg-detail-info .pkg-loc { font-size: 1rem; margin-bottom: 20px; }
.pkg-detail-price { font-size: 2rem; font-weight: 800; color: #f5a623; margin-bottom: 20px; }
.pkg-detail-price span { font-size: 1rem; color: #999; font-weight: 400; }
.detail-includes { list-style: none; margin-bottom: 28px; }
.detail-includes li { padding: 10px 0; border-bottom: 1px solid #eee; font-size: 0.95rem; color: #444; }
.detail-includes i { color: #27ae60; margin-right: 10px; }
.pkg-detail-info .btn-primary { display: inline-block; margin-top: 10px; }
.pkg-highlights { margin-top: 50px; }
.pkg-highlights h3 { font-size: 1.4rem; margin-bottom: 20px; }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.highlight-item { background: #f9f9f9; padding: 20px; border-radius: 12px; text-align: center; }
.highlight-item i { font-size: 1.8rem; color: #f5a623; margin-bottom: 10px; }
.highlight-item p { font-size: 0.85rem; color: #555; }

.itinerary-day {
  background: #f9f9f9; padding: 20px; border-radius: 12px;
  border-left: 4px solid #f5a623; margin-bottom: 12px;
}
.itinerary-day strong { display: block; margin-bottom: 6px; color: #222; }
.itinerary-day p { color: #555; font-size: 0.9rem; }

.destinations { padding: 80px 60px; background: #f9f9f9; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dest-card {
  height: 220px; border-radius: 16px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  cursor: pointer; text-decoration: none; display: block;
}
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; transition: background 0.3s;
}
.dest-card:hover .dest-overlay { background: rgba(0,0,0,0.5); }
.dest-overlay h3 { color: #fff; font-size: 1.2rem; }
.dest-overlay p { color: #f5a623; font-size: 0.85rem; }

.dest-detail { padding: 60px; max-width: 1100px; margin: 0 auto; }
.dest-info-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.dest-info h3 { font-size: 1.3rem; margin-bottom: 14px; }
.dest-info p { color: #555; line-height: 1.9; font-size: 0.95rem; margin-bottom: 20px; }
.dest-sidebar { background: #f9f9f9; border-radius: 16px; padding: 28px; }
.dest-sidebar h4 { font-size: 1.1rem; margin-bottom: 16px; }
.dest-sidebar ul { list-style: none; }
.dest-sidebar ul li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 0.9rem; color: #555; }
.dest-sidebar ul li i { color: #f5a623; margin-right: 8px; }

.testimonials { padding: 80px 60px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testi-card {
  background: #fff; padding: 30px; border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #f5a623;
}
.stars { color: #f5a623; font-size: 1.2rem; margin-bottom: 12px; }
.testi-card p { color: #555; font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.testi-author { font-size: 0.85rem; color: #888; }
.testi-author strong { color: #222; }

.contact {
  padding: 80px 60px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.contact-left h2 { font-size: 2.2rem; color: #fff; margin-bottom: 16px; }
.contact-left h2 span { color: #f5a623; }
.contact-left p { color: #aaa; margin-bottom: 30px; }
.contact-info p { color: #ddd; margin-bottom: 12px; font-size: 0.95rem; }
.contact-info i { color: #f5a623; margin-right: 10px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px; border-radius: 10px; border: none;
  background: rgba(255,255,255,0.1); color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  outline: none; transition: background 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }
.contact-form select option { background: #1a1a2e; color: #fff; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { background: rgba(255,255,255,0.18); }
.btn-submit {
  background: #f5a623; color: #fff; padding: 14px;
  border: none; border-radius: 10px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.3s; font-family: 'Poppins', sans-serif;
}
.btn-submit:hover { background: #e09010; }

.footer { background: #0d0d0d; color: #aaa; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding: 60px;
}
.footer-brand h3 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links h4 { color: #fff; margin-bottom: 16px; }
.footer-links a, .footer-links p { display: block; color: #aaa; text-decoration: none; font-size: 0.88rem; margin-bottom: 8px; }
.footer-links a:hover { color: #f5a623; }
.footer-bottom { text-align: center; padding: 20px; border-top: 1px solid #222; font-size: 0.85rem; }

.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: #27ae60; color: #fff;
  padding: 14px 24px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600;
  opacity: 0; transform: translateY(20px);
  transition: all 0.4s; z-index: 9999;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
}

.chat-toggle {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  cursor: pointer;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(340px, calc(100vw - 40px));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.24);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s;
}

.chat-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #fff;
  padding: 16px;
}

.chat-head span {
  display: block;
  color: #f5a623;
  font-size: 0.8rem;
  margin-top: 2px;
}

.chat-close {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.chat-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.chat-form input,
.chat-form select,
.chat-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 9px;
  padding: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.customer-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.6);
}

.customer-modal.open { display: grid; }

.customer-card {
  width: min(430px, 100%);
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.3);
}

.customer-card h2 { margin-bottom: 8px; }
.customer-card p { color: #666; margin-bottom: 18px; }

.customer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
}

.customer-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.customer-tabs button {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 9px;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.customer-tabs button.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.customer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.customer-form input {
  border: 1px solid #ddd;
  border-radius: 9px;
  padding: 13px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
}

.chat-form input:focus,
.chat-form select:focus,
.chat-form textarea:focus {
  border-color: #f5a623;
}

.admin-page {
  background: #f4f6f8;
  min-height: 100vh;
}

.admin-shell {
  padding: 120px 48px 60px;
}

.admin-lock {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
}

.admin-card,
.admin-dashboard {
  max-width: 1180px;
  margin: 0 auto;
}

.admin-card {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 34px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.admin-card h1,
.admin-top h1 {
  margin-bottom: 8px;
  color: #111;
}

.admin-card p,
.admin-top p,
.admin-inbox p {
  color: #666;
  font-size: 0.92rem;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

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

.admin-top-actions button,
.admin-actions button {
  border: 1px solid #ddd;
  background: #fff;
  color: #222;
  border-radius: 9px;
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.admin-actions .danger {
  color: #c0392b;
}

.admin-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.admin-form,
.admin-list-wrap,
.admin-inbox {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #333;
  font-size: 0.86rem;
  font-weight: 600;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 9px;
  padding: 12px 13px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: #f5a623;
}

.admin-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.admin-list-wrap h2,
.admin-inbox h2 {
  margin-bottom: 16px;
}

.admin-package-list,
.chat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-package-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid #eee;
  border-radius: 12px;
}

.admin-package-img {
  height: 82px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #eee;
}

.admin-package-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.admin-package-card p {
  color: #777;
  font-size: 0.86rem;
  margin-bottom: 4px;
}

.admin-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-inbox {
  margin-top: 24px;
}

.chat-message {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
}

.chat-message div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.chat-message span,
.empty-state {
  color: #777;
  font-size: 0.84rem;
}

.chat-message p {
  margin: 4px 0;
  color: #444;
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.admin-section-head button {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 9px;
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.customer-admin-grid {
  grid-template-columns: 0.7fr 1.3fr;
}

.customer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.customer-row {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
}

.customer-row div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.customer-row span,
.customer-row p {
  color: #666;
  font-size: 0.86rem;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pkg-detail-grid { grid-template-columns: 1fr; }
  .dest-info-grid { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .customer-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 65px; left: 0; right: 0;
    background: rgba(0,0,0,0.95); padding: 20px; gap: 16px;
  }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-stats { gap: 30px; }
  .why-us, .packages, .destinations, .testimonials { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; padding: 60px 24px; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 24px; }
  .pkg-detail, .dest-detail { padding: 40px 24px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .admin-shell { padding: 100px 20px 40px; }
  .admin-top { align-items: flex-start; flex-direction: column; }
  .admin-section-head { align-items: flex-start; flex-direction: column; }
  .admin-package-card { grid-template-columns: 90px 1fr; }
  .admin-actions { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.9rem; }
  .hero-stats { flex-direction: column; gap: 10px; bottom: 20px; }
  .dest-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .admin-two { grid-template-columns: 1fr; }
  .chat-widget { right: 16px; bottom: 16px; }
}
