    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.3)
  );
}
/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  background: #083e3ece ;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  list-style: none;
  padding: 20px 0;
  margin: 0;
  display: none;
  z-index: 1000;
  border-radius: 4px;
}

.dropdown li a {
  background: none !important;
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
}

.dropdown li a:hover {
  background: rgba(255,255,255,0.1) !important;
}

/* Hover open (desktop) */
.has-dropdown:hover .dropdown {
  display: block;
}

/* Mobile behavior: dropdown always visible inside menu */
@media (max-width: 768px) {
  .dropdown {
    position: static;
    background: transparent;
    padding-left: 15px;
  }

  .dropdown li a {
    padding: 8px 0;
  }
}


    /* NAVBAR */
    .navbar {
      width: 100%;
      background: transparent;
  position: absolute !important;
  z-index: 4;
  display: flex;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 25px 80px !important;
    }

    .logo h2 {
      color: #fff;
      margin: 0;
    }

    /* MENU (DESKTOP) */
    .menu {
      list-style: none;
  display: flex;
  gap: 18px;
    }

    .menu li a {
      text-decoration: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
    }
    .menu li a:hover,
.menu .active a {
  background: rgba(255,255,255,0.25);
}
.btn-primary {
  border: 1px solid gray !important;
  text-decoration: none;
  background: #083e3ece !important;
  color: #fff;
  padding: 12px 26px !important;
  border-radius: 14px !important;
  font-weight: 600 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px #228787c2;
}

    /* TOGGLE */
    .nav-toggle {
      display: none;
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 25px;
      height: 3px;
      background: #fff;
      margin: 5px 0;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .navbar {
        z-index: 200;
        width: 100%;
        background: #0b2c3d;
    position: relative !important;}
      .nav-toggle {
        display: block;
      }

      /* hide menu initially */
      .menu {
        padding: 20px 0;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1f485c;
        flex-direction: column;
      }

      .menu li {
        padding: 12px 20px;
        border-top: 1px solid rgba(255,255,255,0.15);
      }

      /* show only when toggled */
      .menu.show {
        display: flex;
      }
    }


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 170px 80px;
}

.hero-content h1 {
    font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #ffb703;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
}
.group-tour {
  padding: 80px 80px;
  background: #fafafa;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #0b2447;
}

.tour-grid {
    margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tour-card {
  background: #37635e1c;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tour-img {
    border-radius: 18px;
  height: 200px;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-card:hover img {
  transform: scale(1.08);
}

.tour-body {
  padding: 25px;
}

.rating {
  color: #f9a825;
  font-weight: 600;
  margin-bottom: 8px;
}

.tour-body h3 {
  font-size: 20px;
  color: #0b2447;
  margin-bottom: 12px;
}

.price {
  color: #041c1cc2;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.price span {
  font-size: 14px;
  color: #777;
}

.schedule {
  background: #f4f6f8;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.btn-group {
  display: flex;
  gap: 12px;
}

.btn {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #083e3ece;
  color: #fff;
}

.btn.primary:hover {
  background: #074141c2;
}

.btn.outline {
  border: 2px solid #083e3ece;
  color: #041c1cc2;
}

.btn.outline:hover {
  background: #083e3ece;
  color: #fff;
}

.about-section {
  padding: 90px 80px;
  background: #ffffff;
  position: relative;
}

.about-container {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  position: relative;
  background: #fff;
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.about-image img {
    object-fit: cover;
    height: 530px;
  width: 100%;
  border-radius: 14px;
  display: block;
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.dot-pattern {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#0b2447 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.15;
}



.div-container h2 {
    font-weight: 700;
  font-size: 44px;
  color: #0b2447;
  margin: 10px 0 20px;
}
.div-container{
    text-align: center;
    padding: 50px 160px;
}
.div-container p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}
.div-container h5{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff6f4e;
}

.about-points {
  list-style: none;
  padding: 0;
}

.about-points li {
    gap: 20px;
    display: flex;
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    align-items: center;
}
.about-points li i{
  color: #ff6f4e;

}



/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content h2 {
    font-size: 36px;
  }
}
.why-choose {
  padding: 90px 80px;
  background: linear-gradient(to bottom, #ffffff, #f7f9fc);
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}




/* Grid */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.choose-card {
  background: #37635e1c;
  backdrop-filter: blur(10px);
  padding: 40px 28px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.choose-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(255,111,78,0.25);
}

/* Icon */
.icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, #376363, #376363);  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Text */
.choose-card h3 {
  font-size: 20px;
  color: #0b2447;
  margin-bottom: 14px;
}

.choose-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}





.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dest-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.1)
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.dest-overlay h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 992px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }

 
}
.stats-section {
  padding: 80px 80px;
  background: #ffffff;
  position: relative;
}

.stats-container {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-card {
  position: relative;
  padding: 70px 20px;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  background: #37635e1c;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(0.5px);
}

.stat-card.blue::before {
  background: #e8f7f9;
}
.stat-card.purple::before {
  background: #f0e9fb;
}
.stat-card.green::before {
  background: #f3f8e7;
}
.stat-card.sky::before {
  background: #edf3fb;
}

.stat-card h3 {
  font-size: 42px;
  color: #0b2447;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-card p {
  font-size: 15px;
  color: #555;
}

.stats-section::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 120px;
  width: 70px;
  height: 70px;
  background-image: radial-gradient(#0b2447 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.15;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  
}


  
  .testimonial-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .testimonial-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
  }
  
  .testimonial-card.active {
    border: 2px solid #ff9f1c;
  }
  
  .stars {
    color: #ff9f1c;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }
  
  .testimonial-card p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
  }
  
  .testimonial-card h4 {
    font-size: 16px;
    color: #0b2447;
    margin-bottom: 4px;
    font-weight: 600;
  }
  
  .testimonial-card span {
    font-size: 13px;
    color: #888;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .testimonial-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .testimonial-container {
      grid-template-columns: 1fr;
    }
  }
  .footer {
    background-color: #121212; /* Dark background */
    color: #ffffff;
    padding: 60px 20px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* Column General Styling */
.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Branding & Socials */
.logo-container {
    background: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 5px;
}

.logo h2{
    font-size: 25px;
    font-weight: 700;
    color: white;
  
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #333;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #ff7f50; /* Primary orange color */
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 60px);
    grid-gap: 8px;
}

.gallery-item {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Details */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: #ff7f50;
    margin-top: 5px;
}

.contact-item p {
    margin: 0;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
}  
.about-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("./images/abt-img.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dark overlay */
.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 35, 0.65);
}

/* Content */
.about-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    height: 240px;
  }

  .about-content h1 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 15px;
  }
}

.tour-carousel {
  width: 100%;
  padding: 40px 0;
}

.carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;
  transition: transform 0.7s ease;
}

.tour-carousel {
  overflow: hidden;
}

.card {
  width: 395px;
  height: 240px;
  position: relative;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text overlay */
.card span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 4px 12px rgba(0,0,0,0.8);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots span.active {
  background: #000;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .card {
    width: 85vw;
  }
}

/* CONTACT CARDS */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 90px 8% 60px;
}

.c-card {
  background: #3c8f8f52;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
}

.c-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* Icon */
.c-card .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #095151ce, #065858ce);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 22px;
}

.c-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0b1d3a;
}

.c-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  padding: 80px 8%;
  align-items: center;
}

.small-title {
  font-size: 14px;
  letter-spacing: 3px;
  color: #095151ce;
  font-weight: 600;
}

.contact-left h2 {
  font-size: 44px;
  color: #0b1d3a;
  margin: 18px 0 35px;
  line-height: 1.2;
}

/* Social Icons */
.socials a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4c6ef5, #6ea8ff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
  transition: 0.3s;
}

.socials a:hover {
  transform: scale(1.15);
}

/* FORM BOX */
.contact-right {
  background: #3c8f8f52;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

.contact-right .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

/* Inputs */
.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.contact-right input:focus,
.contact-right textarea:focus {
  outline: none;
  border-color: #095151ce;
  box-shadow: 0 0 0 3px rgba(255,122,87,0.15);
}

.contact-right textarea {
  height: 150px;
  resize: none;
  margin-bottom: 30px;
}

/* Button */
.contact-right button {
  background: linear-gradient(135deg, #083e3ece, #095151ce);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 12px 25px #083e3ece;
  transition: 0.3s;
}

.contact-right button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px #095151ce;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-left h2 {
    font-size: 34px;
  }
}
.hero {
  background: url('./images/home.jpg') center / cover no-repeat;
  position: relative;
  color: #fff;
  height: 90svh;
}

@media (max-width: 768px) {
  .hero {
    height: 50svh;
  }
  .hero-content h1 {
    font-weight: 700;
  font-size: 35px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.div-container h2 {
  font-weight: 700;
font-size: 30px;
color: #0b2447;
margin: 10px 0 20px;
}
.div-container{
  text-align: center;
  padding: 30px 40px;
}
.about-section {
  padding: 30px 40px;
  background: #ffffff;
  position: relative;
}
.about-image img {
  object-fit: cover;
  height: 330px;
width: 100%;
border-radius: 14px;
display: block;
transition: transform 0.4s ease;
}
}


.day-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.day-box{
  background:#fff;
  border-radius:10px;
  padding:20px;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.day-box h3{
  margin:-20px -20px 15px;
  padding:14px 18px;
  background:linear-gradient(135deg,#0b2c3d,#144a63);
  color:#fff;
  border-radius:10px 10px 0 0;
  font-size:18px;
}

.day-box p{
  margin:8px 0;
  line-height:1.7;
  position:relative;
  padding-left:18px;
}

.day-box p::before{
  content:"•";
  position:absolute;
  left:0;
  color:#0b2c3d;
  font-weight:bold;
}

/* ===== INFO BAR ===== */
.info-bar{
  margin:40px 0 30px;
  background:#0b2c3d;
  color:#fff;
  padding:18px 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-radius:10px;
  font-weight:600;
  box-shadow:0 6px 20px rgba(11,44,61,0.3);
}

/* ===== DETAILS CARD ===== */
.details{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.row-line{
  display:grid;
  grid-template-columns:260px 1fr;
  border-bottom:1px solid #eee;
}

.row-line:last-child{
  border-bottom:none;
}

.label-row{
  padding:20px;
  font-weight:600;
  color:#0b2c3d;
  background:#f8fafc;
}

.value{
  padding:20px;
}

.value ul{
  margin:0;
  padding-left:0;
  list-style:none;
}

.value li{
  justify-content: center;
  margin-bottom:10px;
  display:flex;
  align-items:flex-start;
}

.value li.check::before{
  content:"✔";
  color:#2ecc71;
  margin-right:10px;
}

.value li.cross::before{
  content:"✖";
  color:#ff6b4a;
  margin-right:10px;
}

/* ===== PRICE ===== */
.price-row{
  background:linear-gradient(135deg,#0b2c3d,#133f55);
  color:#fff;
}

.price-row .label-row{
  background:transparent;
  color:#fff;
}

.price-row .value p{
  color: #fff !important;

  margin:10px 0;
  line-height:1.7;
  font-weight:500;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .day-wrapper{
    grid-template-columns:1fr;
  }

  .info-bar{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }

  .row-line{
    grid-template-columns:1fr;
  }

  .label-row{
    background:#fff;
    border-bottom:1px solid #eee;
  }
}
/* ===== PICKUP POINTS ===== */
.pickup-section {
  margin: 50px 0;
}

.pickup-section h2 {
  color: #0b2c3d;
  margin-bottom: 25px;
}

.pickup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
}

.pickup-item {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
}



.tour-plan h2 {
  font-size: 28px !important;
  background: linear-gradient(90deg, #0b2c3d, #123f55);
  color: #fff;
  padding: 14px 20px;
  border-radius: 6px;
}

.day-card {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.day-circle {
  width: 55px;
  height: 55px;
  background: #052564;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.day-content {
  background: #f8f9fb;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  border-left: 5px solid #0b2c3d;
}

.day-content h3 {
  font-weight: 600;
  margin-top: 0;
  color: #0b2c3d;
}

.day-content p {
  line-height: 1.7;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pickup-grid {
    grid-template-columns: 1fr;
  }

  .day-card {
    flex-direction: column;
  }

  .day-circle {
    margin-bottom: 10px;
  }
}
/* ===== ACTION BUTTONS ===== */
.action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 50px 0 30px;
  justify-content: center;
}

.action-buttons a {
  padding: 12px 18px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.btn-call { background: #0256af; }
.btn-whatsapp { background: #05963a; }
.btn-enquiry { background: #a37b02; color:#000; }
.btn-book { background: #0a641f; }
.btn-download { background: #352d03; }

/* ===== REVIEW SECTION ===== */
.review-box {
  margin: 40px 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
}

.review-score {
  background: #f5f6f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.review-score h2 {
  font-size: 50px;
  color: #052564;
  margin: 0;
}

.review-score span {
  font-weight: 600;
  color: #555;
}

.review-bars {
  padding: 30px;
}

.review-item {
  margin-bottom: 18px;
}

.review-item label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 6px;
}

.progress {
  height: 6px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #052564, #ff9a6a);
  border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .review-box {
    grid-template-columns: 1fr;
  }

  .review-score {
    padding: 20px 0;
  }
}
/* ------------------------------- */
.main-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
}

.booking-header {
  background: linear-gradient(135deg, #fffcf4 0%, #fff8e7 100%);
  border-left: 4px solid #ff6f4e;
  padding: 20px 24px;
  border-radius: 4px 8px 8px 4px;
  margin-bottom: 35px;
}

.booking-header h2 {
  font-size: 1.15rem !important;
  font-weight: 500;
  color: #2d3748;
}

.booking-header a {
  color: #ff6f4e;
  text-decoration: none;
  font-weight: 700;
  margin-left: 4px;
  transition: color 0.2s ease;
}

.booking-header a:hover {
  color: #ff6f4e;
  text-decoration: underline;
}

.section-title {
  font-size: 1.35rem !important;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.main-title{
  font-size: 30px !important;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.table-container {
  text-align: left;
  margin-bottom: 35px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.info-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr td:first-child {
  width: 30%;
  font-weight: 600;
  color: #4a5568;
  background-color: #f8fafc;
}

.info-table tr td:last-child {
  color: #ff6f4e;
  background-color: #ffffff;
}

/* Dress Code Component */
.dress-code-section {
  background-color: #f7fafc;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 45px;
  border: 1px solid #e2e8f0;
}

.dress-code-section p {
  text-align: left;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.dress-code-section p:last-child {
  margin-bottom: 0;
}

.label-badge {
  display: inline-block;
  background-color: #edf2f7;
  color: #4a5568;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-right: 4px;
}

/* Rules & List Elements */
.rules-section {
  border-top: 1px solid #edf2f7;
  padding-top: 35px;
}

.rules-list {
  padding-left: 20px;
  margin-bottom: 25px;
}

.rules-list li {
  text-align: left;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
}

.reference {
  font-size: 0.9rem;
  color: #718096;
}

.reference a {
  color: #3182ce;
  text-decoration: none;
  font-weight: 500;
}

.reference a:hover {
  text-decoration: underline;
}

/* Scroll simulation space */
.dummy-scroll-space {
  margin-top: 60px;
  height: 800px; 
  background: linear-gradient(to bottom, #ffffff, #f7fafc);
  padding: 24px;
  border-top: 1px dashed #cbd5e0;
  color: #a0aec0;
  font-size: 0.9rem;
  border-radius: 0 0 8px 8px;
}

.sidebar {
  position: static;
}

@media (min-width: 992px) {
  .sidebar {
      position: sticky;
      top: 40px; /* Aligns neatly with the main container margin */
      height: fit-content;
  }
}

.sidebar-card {
  text-align: left;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

/* Styled Header with Accent Bar */
.sidebar-title-container {
  padding: 20px 24px;
  background-color: #ffffff;
  border-bottom: 1px solid #edf2f7;
  position: relative;
}

.sidebar-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #ff6f4e;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background-color: #ff6f4e;
  border-radius: 2px;
}

/* Feed List Elements */
.sidebar-list {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.sidebar-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #f7fafc;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.sidebar-item:last-child {
  border-bottom: none;
}

.sidebar-item:hover {
  background-color: #f7fafc;
}

/* Image Mask */
.item-thumb {
  width: 88px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
  background-color: #edf2f7;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sidebar-item:hover .item-thumb img {
  transform: scale(1.05);
}

/* Detail Strings */
.item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-title {
  font-size: 0.88rem;
  color: #2d3748;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.15s ease;
}

.sidebar-item:hover .item-title {
  color: #0b2c3d;
}

.item-date {
  font-size: 0.78rem;
  color: #a0aec0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* SVG clock icon injection */
.item-date::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
  display: inline-block;
  vertical-align: middle;
}
.container-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 992px) {
  .container-grid {
      grid-template-columns: 2.1fr 1fr;
  }
}
.data-table th {
  background-color: #f8fafc;
  color: #4a5568;
  font-weight: 600;
  text-align: left;
  padding: 14px 20px;
  border-bottom: 2px solid #e2e8f0;
  font-size: 0.9rem;
}

.data-table td {
  font-weight: normal !important;
  background-color: #ffffff !important;
}

.data-table tbody tr:nth-child(even) td {
  background-color: #fdfdfd !important; /* Subtle alternate row shading */
}
.share-container {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 10px;
  gap: 12px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.share-badge {
  background-color: #333;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 3px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 3px;
  transition: opacity 0.2s ease;
}

.share-btn:hover {
  opacity: 0.9;
}

.btn-facebook {
  background-color: #3b5998;
}

.btn-twitter {
  background-color: #00acee;
}

.share-btn .icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.block-title-container {
  text-align: left !important;

  border-bottom: 1px solid #e2e8f0;
  margin: 40px 0 25px 0;
  padding-bottom: 8px;
  position: relative;
}

.block-title-container::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(45deg, #cbd5e1, #cbd5e1 2px, #ffffff 2px, #ffffff 8px);
}

.block-title {
  text-align: left !important;
  font-size: 1.1rem !important;
  text-transform: uppercase;
  font-weight: 700;
  color: #1a202c;
  letter-spacing: 0.03em;
  display: inline-block;
  background: #ffffff;
  padding-right: 15px;
  position: relative;
  z-index: 1;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}

.article-card {
  text-align: left;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.article-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 150px;
  background-color: #f1f5f9;
}

.article-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}



.article-card-body {
  padding: 16px;
}

.article-card-title {
  display: block;
  font-size: 0.9rem;
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}

.article-card-title:hover {
  color: #dd6b20;
}

.article-card-date {
  font-size: 0.78rem;
  color: #a0aec0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-card-date::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' stroke-width='2.5'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
  display: inline-block;
  vertical-align: middle;
}

/* Elegant Comments Styling */
.comments-list {
  margin-top: 10px;
}

.comment-item {
  text-align: left;
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
  padding: 24px 0;
  position: relative;
}
.comment-item p {
  font-size: 14px !important;
}
.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.comment-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: #2d3748;
}

.comment-date {
  font-size: 0.8rem;
  color: #a0aec0;
}

.comment-content {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.6;
}

.comment-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.btn-reply {
  background-color: #f1f5f9;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 3px;
  border: 1px solid #e2e8f0;
  transition: all 0.15s ease;
}

.btn-reply:hover {
  background-color: #e2e8f0;
  color: #1a202c;
}

/* Indented Thread Spacing for Replies */
.comment-replies {
  margin-left: 60px;
  margin-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.comment-replies .comment-item {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 576px) {
  .comment-replies {
      margin-left: 25px; /* Reduce indentation on narrow mobile screens */
  }
}
@media screen and (max-width: 600px) {
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(211px, 1fr));}
  .data-table th {
    background-color: #f8fafc;
    color: #4a5568;
    font-weight: 600;
    text-align: left;
    padding: 14px 6px !important;}
  .main-title {
    font-size: 22px !important;}
  .main-content {
    background: #ffffff;
    padding: 5px !important;}
  /* Force table elements to stack vertically */
  .info-table, 
  .info-table tbody, 
  .info-table tr {
      display: block;
      width: 100%;
  }

  .info-table tr {
      margin-bottom: 12px;
      border: 1px solid #ddd;
      border-radius: 4px;
      background: #fbfbfb;
  }

  .info-table td {
      display: flex;
      flex-direction: column;
      width: 100%;
      box-sizing: border-box;
      border: none; /* Clear old inner borders */
      padding: 6px 12px;
  }

  /* Make the left side (Key) bold and prominent */
  .info-table tr td:first-child {
      font-weight: bold;
      color: #333;
      padding-top: 12px;
  }

  /* Add visual distinction to the right side (Value) */
  .info-table tr td:last-child {
      color: #555;
      padding-bottom: 12px;
      border-bottom: none;
  }
}