body {
  padding-top: 70px;
  font-family: "Segoe UI", sans-serif;
}

/* Hero */
.hero-section {
  height: 95vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("/assets/images/home_hero_new.jpg") center / cover no-repeat !important;
  background-position: center calc(50% + 50px);

  display: flex;
  outline: 5px;
  outline-color: white;
  align-items: center;
  justify-content: center;
}

/* Destination cards */
.dest-card {
  height: 200px;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* Sections */
.destinations {
  background: #f8f9fa;
}

/* ===== ROOT THEME COLORS ===== */
:root {
  --cream: #fbf6d9;
  --dark: #1e1e1e;
  --text-dark: #2e2e2e;
  --gold: #e0b100;
  --cta-bg: #fff6d8;
  --accent: #f4a261;
}

/* ===== GLOBAL ===== */
body {
  padding-top: 80px;
  font-family: "Segoe UI", sans-serif;
  color: var(--text-dark);
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: var(--cream) !important;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: var(--text --cream) !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: var(--accent) !important;
}

/* ===== ANNOUNCEMENT STRIP ===== */
.announcement-bar {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: 500;
}

.hero-section h1 {
  color: var(--gold);
  font-weight: 700;
}

.hero-section p {
  font-size: 1.4rem;
  color: #ffffff;
}

/* ===== CTA BUTTON ===== */
.btn-theme {
  background: var(--cta-bg);
  color: var(--text-dark);
  border-radius: 30px;
  padding: 12px 30px;
  border: none;
  font-weight: 500;
}

.btn-theme:hover {
  background: var(--accent);
  color: #fff;
}

/* ===== DESTINATION CARDS ===== */
.dest-card {
  height: 220px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  color: white;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: var(--cream);
  color: var(--text-dark);
}

/* ===== LOGO ===== */
.site-logo {
  height: 65px; /* adjust if needed */
  width: auto;
  object-fit: contain;
}

/* ===== TRIP CARDS ===== */
.trip-card img {
  height: 220px;
  object-fit: cover;
}

.trip-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.trip-card:hover {
  transform: translateY(-5px);
}

/* ===== PREVIOUS TRIPS SLIDER ===== */
.slider-img {
  height: 520px;
  object-fit: contain;
  border-radius: 12px;
  object-position: center bottom;
}

@media (max-width: 768px) {
  .slider-img {
    height: 250px;
  }
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--cream);
  padding: 70px 0 40px;
}

.page-banner h1 {
  font-weight: 700;
}

.page-banner p {
  color: #666;
}

/* ===== TRIP CARDS ===== */
.trip-card img {
  height: 230px;
  object-fit: cover;
}

.trip-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.trip-card:hover {
  transform: translateY(-6px);
}

.trip-card .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== TRIP MODAL ===== */
.trip-modal {
  border-radius: 12px;
}

.trip-modal img {
  max-height: 220px;
  object-fit: cover;
}

.trip-highlights img {
  transition: transform 0.3s ease;
}

.trip-highlights img:hover {
  transform: scale(1.03);
}
.no-data-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 50px 20px;
}
.gallery img {
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}
/* ===== LIGHTBOX (CENTERED MODAL STYLE) ===== */
.lightbox {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 75%;
  max-height: 75vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* Navigation arrows */
.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.lightbox .prev {
  left: 40px;
}
.lightbox .next {
  right: 40px;
}

.lightbox .nav:hover,
.lightbox .close:hover {
  color: #f1c40f;
}
/* ===== ABOUT US PAGE ===== */

.about-section {
  background: #fff;
}

/* Hero text */
.about-hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 20px;
  position: relative;
}

.about-hero h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #f1c40f;
  display: block;
  margin: 12px auto 0;
}

.about-hero p {
  max-width: 850px;
  margin: auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* Mission box */
.mission-box {
  background: #fff8dc;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.mission-box h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #2c2c2c;
  position: relative;
}

.mission-box h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f1c40f;
  display: block;
  margin-top: 8px;
}

.mission-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mission-box strong {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h2 {
    font-size: 2rem;
  }

  .mission-box {
    padding: 25px;
  }
}
/* ===== ABOUT PAGE ENHANCEMENTS ===== */

.mission-box,
.vision-box {
  background: #fff8dc;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.vision-box {
  background: #fff;
  border-left: 5px solid #f1c40f;
}

.mission-box h3,
.vision-box h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}

.mission-box h3::after,
.vision-box h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f1c40f;
  display: block;
  margin-top: 8px;
}

/* Vision slider */
.vision-slider {
  position: relative;
  height: 120px;
}

.vision-slide {
  display: none;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.vision-slide.active {
  display: block;
}

/* Offer section */
.offer-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.offer-section ul {
  padding-left: 18px;
}

.offer-section li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .vision-slider {
    height: auto;
  }
}
/* ===== TESTIMONIAL SECTION ===== */

.testimonial-section {
  margin-top: 80px;
}

.testimonial-bg {
  background: url("../images/testimonials.jpg") center/cover no-repeat;
  padding: 100px 20px;
  position: relative;
}

.testimonial-card {
  background: #fff;
  max-width: 700px; /* slightly smaller */
  margin: auto;
  padding: 40px 35px; /* reduced padding */
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
}

.testimonial-card .quote {
  font-size: 60px;
  color: #333;
  display: block;
  margin-bottom: 20px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.testimonial-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-user h5 a {
  font-size: 0.95rem;
  color: maroon;
}

/* Dots */
.testimonial-dots {
  margin-top: 20px;
}

.testimonial-dots .dot {
  height: 10px;
  width: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 90%;
    padding: 30px 22px;
  }
}

/* ===== FULL WIDTH TESTIMONIAL FIX ===== */

.full-width-testimonial {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.testimonial-bg {
  width: 100%;
  padding: 120px 20px;
  background-position: center;
  background-size: cover;
}
/* ===== CONTACT PAGE ===== */

.contact-section {
  background: #fff;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.contact-form .form-control {
  border-radius: 6px;
  padding: 10px 12px;
  border: 1px solid #ddd;
}

.contact-form .form-control:focus {
  border-color: #f1c40f;
  box-shadow: none;
}

/* Right info card */
.contact-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
  margin-bottom: 20px;
}

.contact-info-card p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.contact-info-card i {
  color: #f1c40f;
  margin-right: 8px;
}

.contact-info-card a {
  color: #333;
  text-decoration: none;
}

.stay-connected {
  background: #fff8dc;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
}

.stay-connected h4 {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-card {
    margin-top: 30px;
  }
}
/* ===== ADMIN TABLE ===== */

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

.admin-table th {
  background: #f8f8f8;
  text-align: left;
}

.admin-table tr:hover {
  background: #fdf6e3;
}

.table-responsive {
  overflow-x: auto;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
.admin-header {
  background: #1f252b;
  color: #fff;
  padding: 12px 20px;
  margin: 0;
}
.admin-header .container {
  max-width: 100%;
  padding: 0 20px;
}
body {
  margin: 0;
  padding: 0;
}
/* ADMIN NAVBAR BRAND FIX */
.admin-header .navbar-brand {
  color: #ffffff !important;
}

.admin-header .navbar-brand:hover {
  color: #ffffff !important;
}
/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* Image card */
.highlight-card {
  width: 100%;
  height: 250px; /* controls uniform height */
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;
}

/* Image fix */
.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* KEY LINE */
  object-position: center; /* centers crop */
  display: block;
}

.review-list {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 5px;
}

.review-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.review-card strong {
  display: block;
  margin-bottom: 5px;
}

.stars {
  color: #f4b400;
  font-size: 14px;
  margin-bottom: 8px;
}

/* ---------- REVIEW SECTION WRAPPER ---------- */
.review-section {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #f0f0f0;
}

/* ---------- LEFT FORM CARD ---------- */
.review-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Inputs polish */
.review-form-card .form-control,
.review-form-card .form-select {
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid #ddd;
}

.review-form-card .form-control:focus,
.review-form-card .form-select:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.15rem rgba(255, 193, 7, 0.25);
}

/* ---------- RIGHT REVIEW LIST ---------- */
.review-list {
  max-height: 540px;
  overflow-y: auto;
  padding-right: 6px;
}

/* Individual review card */
.review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

/* Name + Trip */
.review-card strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

/* Stars */
.stars {
  color: #f4b400;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Review text */
.review-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- SECTION TITLE ---------- */
.review-title {
  font-weight: 600;
  margin-bottom: 18px;
}

/* ---------- SUBMIT BUTTON ---------- */
.btn-warning {
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 500;
}

.success-msg {
  background: #e6f7ee;
  color: #1a7f4b;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-weight: 500;
}

.success-msg {
  background: #e9f9ee;
  color: #1e7e34;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-weight: 500;
  border-left: 6px solid #28a745;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  animation: fadeIn 0.4s ease;
}
.trip-description,
#modalDescription {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.7;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffc107; /* theme yellow */
}

.policy-content h4 {
  margin-top: 30px;
  font-weight: 600;
}

.policy-content p,
.policy-content ul {
  color: #555;
  line-height: 1.8;
}

.policy-content ul {
  padding-left: 20px;
}

.policy-content h4 {
  margin-top: 30px;
  font-weight: 600;
}

.policy-content p,
.policy-content ul {
  color: #555;
  line-height: 1.8;
}

.policy-content ul {
  padding-left: 18px;
}

.card {
  border-radius: 14px;
}

/* ===== Privacy Policy Card Styling ===== */
.policy-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);

  /* Strong but premium shadow */
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.12),
    0 5px 15px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

/* Slight hover lift (optional but classy) */
.policy-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.16),
    0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Improve text readability */
.policy-card h4 {
  font-weight: 600;
  margin-top: 32px;
}

.policy-card p,
.policy-card ul {
  color: #444;
  line-height: 1.9;
}

.policy-card ul {
  padding-left: 18px;
}

body {
  background-color: #f8f9fb;
}

.email-link {
  color: #f4b400; /* or your theme color */
  text-decoration: none;
  font-weight: 500;
}

.email-link:hover {
  text-decoration: underline;
}

.package-img {
  height: 220px;          /* fixed height */
  width: 100%;
  object-fit: cover;      /* crop nicely */
}

#modalDescription {
    text-align: justify;
    line-height: 1.7;
    font-size: 15px;
    white-space: normal;
}