*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
  font-size: 16px;
}
html {
  -webkit-text-size-adjust: 100%;
}


/* TOP BAR */
.top-bar {
  background: #f8f8f8;
  border-bottom: 1px solid #74c0eb;
  padding: 8px 0;
  color: #74c0eb;
  font-size: 15px;
}

.top-bar a {
  color: #74c0eb;
  text-decoration: none;
  margin-left: 15px;
  font-weight: 500;
}

.top-bar i {
  margin-right: 5px;
}

/* NAVBAR */
.main-navbar {
  background: #fff;
  padding: 1px 0;
}

.navbar-brand img {
  height: 65px;
}

/* MENU */
.navbar-nav .nav-link {
  color: #111;
  font-size: 17px;
  font-weight: 500;
  margin: 0 12px;
  padding-bottom: 8px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #74c0eb;
  border-bottom: 3px solid #74c0eb;
}

/* CTA BUTTON */
.help-btn {
  background: #74c0eb;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
}

.help-btn:hover {
  background: #74c0eb;
  color: #fff;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

  .top-bar {
    font-size: 18px;
    text-align: center;
  }

  .top-contact {
    margin-top: 6px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    margin: 8px 0;
  }

  .help-btn {
    font-size: 17px;
    width: 100%;
    margin-top: 10px;
  }

  .navbar-brand img {
    height: 55px;
  }
}

@media (max-width: 576px) {

  .top-bar {
    font-size: 15px;
  }

  .navbar-nav .nav-link {
    font-size: 19px;
  }
}
/* ===== EXTRA SMALL DEVICES (320–360px) ===== */
@media (max-width: 360px) {

  /* Top bar compact */
  .top-bar {
    font-size: 13px;
    padding: 6px 0;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 4px;
  }

  /* Logo + toggler balance */
  .navbar-brand img {
    height: 48px;
  }

  .navbar-toggler {
    padding: 4px 6px;
  }

  /* Menu items */
  .navbar-nav .nav-link {
    font-size: 16px;
    margin: 6px 0;
    padding: 8px 0;
  }

  /* CTA button compact but clickable */
  .help-btn {
    font-size: 15px;
    padding: 10px;
    width: 100%;
  }
}


/* FORM CARD */
.enquiry-card {
  position: absolute;
  bottom: 11px; /* half outside banner */
  left: 50%;
  transform: translateX(-50%);
  background: #f6f7fcd6;
  border-radius: 30px;
  padding: 30px 40px;
  
  max-width: 1200px;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.enquiry-card h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.enquiry-card p {
  color: #74c0eb;
  margin-bottom: 20px;
  font-weight: 600;
}

/* FORM GRID */
.enquiry-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.enquiry-form input,
.enquiry-form select {
  border: none;
  border-bottom: 2px solid #ff3d71;
  padding: 10px 5px;
  background: transparent;
  outline: none;
}

.enquiry-form button {
  grid-column: span 1;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .enquiry-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero {
    height: auto;
  }

  .enquiry-card {
    position: static;
    transform: none;
    margin: 20px auto;
    border-radius: 20px;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }
}
.packages {
  padding: 80px 20px;
  background: #fff;
}

.packages h2 {
  text-align: center;
  font-size: 34px;
}

.subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  border: 2px solid #ff007a;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.package-card.highlight {
  background: linear-gradient(180deg, #fff7e6 0%, #ffffff 100%);
}
.package-card::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, #ff007a, #ff9900);
}
.package-card.highlight::before {
  background: linear-gradient(90deg, #ff9900, #ffcc00);
}
.package-card {
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}


.img-box {
  position: relative;
}

.img-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  font-weight: 600;
}

.green { background: #2ecc71; }
.blue { background: #3498db; }

.img-info {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-size: 14px;
}

.img-info strong {
  color: #ffd700;
}

.package-card h3 {
  text-align: center;
  font-size: 20px;
  margin: 20px 15px 5px;
  color: #ff007a;
}

.route {
  text-align: center;
  font-size: 14px;
  padding: 0 15px;
  color: #333;
}

.btn {
  display: block;
  margin: 20px;
  text-align: center;
  background: #74c0eb;
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.features {
  list-style: none;
  padding: 0 20px 20px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
}
.action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 20px;
}

.icon-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  font-size: 22px;
  color: #fff;
}

.icon-btn.call {
  background: #2c3e50;
}

.icon-btn.whatsapp {
  background: #25d366;
}

/* Mobile stack fix */
@media (max-width: 576px) {
  .action-row {
    flex-wrap: wrap;
  }

  .btn {
    flex: 1 1 100%;
    text-align: center;
  }
}

.trip-footer {
  background: #74c0eb;
  color: #fff;
  font-size: 15px;
}

/* Titles */
.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-brand {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 5px;
}

.footer-text {
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Package tags */
.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.package-tags span {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 3px;
  white-space: nowrap;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding: 15px 0;
  font-size: 14px;
}

/* Scroll to top */
.scroll-top {
  width: 40px;
  height: 40px;
  background: #f57c00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  font-size: 20px;
}

.scroll-top:hover {
  background: #ef6c00;
  color: #fff;
}

/* MOBILE FIX */
@media (max-width: 576px) {
  .footer-title {
    font-size: 18px;
  }

  .footer-text {
    font-size: 14px;
  }

  .package-tags span {
    font-size: 13px;
  }

  .footer-bottom {
    text-align: center;
  }
}
.why-tripclan {
  background: #ffffff;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-desc {
  font-size: 16px;
  color: #555;
  max-width: 900px;
  margin-bottom: 30px;
}

/* PACKAGE LIST */
.package-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-item {
  background: #f5f5f5;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.package-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.price {
  color: #e6005c;
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
}

.book-btn {
  background: #e6005c;
  color: #fff;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
}

.book-btn:hover {
  background: #c7004f;
  color: #fff;
}

/* RIGHT BOX */
.sightseeing-box {
  background: #fff;
  border: 1px dashed #ccc;
  padding: 15px;
}

.sightseeing-box h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-list span {
  border: 1px dashed #2a9d39;
  color: #2a9d39;
  font-size: 13px;
  padding: 5px 8px;
  border-radius: 3px;
}

/* MOBILE FIX */
@media (max-width: 576px) {
  .section-title {
    font-size: 22px;
  }

  .package-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .book-btn {
    align-self: flex-end;
  }
}

.destination-card {
  background:#fff;
  border-radius:8px;
  padding:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  transition:0.3s;
  height:100%;
}

.destination-card img {
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:6px;
}

.destination-card h5 {
  text-align:center;
  margin-top:12px;
  color:#ff5a5f;
  font-size:16px;
  font-weight:600;
}

.destination-card:hover {
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
}
.whatsapp{
position: fixed; background: #10b418; width: 45px; height: 45px; line-height: 49px; border-radius: 50%; text-align: center; bottom: 40px; color: #fff; z-index: 999; left: 10px;
}
.whatsapp i{
font-size: 1.5rem;
}

.phone{
position: fixed; background: #1052b4; width: 45px; height: 45px; line-height: 45px; border-radius: 50%; text-align: center; bottom: 120px; color: #fff; z-index: 999; left: 10px;
}
.phone i{
font-size: 1.5rem;
}
/* SECTION SPACING */
.packages {
  padding: 220px 0;
}

/* GRID RESPONSIVE */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  justify-items: center;
}

/* CARD FIX */
.package-card {
  width: 100% !important;   /* overrides inline 380px */
  max-width: 380px;
}

/* HEADINGS */
.packages h2 {
  font-size: 32px;
  text-align: center;
}

.subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}

/* CARD TEXT */
.package-card h3 {
  font-size: 18px;
  margin: 10px;
}

.package-card .route {
  font-size: 14px;
  line-height: 1.4;
  padding: 0 10px;
}

/* IMAGE INFO */
.img-info {
  font-size: 14px;
}

/* ACTION BUTTONS */
.action-row {
  padding: 0 10px;
}

.action-row a {
  font-size: 14px;
}

/* FEATURES */
.features li {
  font-size: 14px;
}

/* 🔥 MOBILE FIX */
@media (max-width: 576px) {

  .packages h2 {
    font-size: 22px;
  }

  .subtitle {
    font-size: 14px;
  }

  .package-card h3 {
    font-size: 16px;
  }

  .route,
  .features li,
  .img-info {
    font-size: 13px;
  }

  .action-row {
    flex-direction: column;
  }

  .action-row a {
    width: 100%;
  }
}

