* {
  font-family: 'Poppins', Avenir, Futura, Century Gothic;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 2px;
}

.logo {
  width: 110px;
  height: auto;
}

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 10px 60px;
  z-index: 99;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.nav-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 101;
}

.nav-center {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-center .nav-link {
  text-decoration: none;
  color: #21417e;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  transition: font-weight 0.3s ease, color 0.3s ease;
}

.nav-center .nav-link:hover,
.nav-center{
  font-weight: bold;
  color: #3b82f6;
}

.nav-center .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #0077ff, #00c6ff);
  transition: width 0.3s ease-in-out;
}

.nav-center .nav-link:hover::after,
.nav-center  {
  width: 100%;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.nav-right button {
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.btnLogin {
  background: linear-gradient(135deg, #2c5fb8, #21417e);
  color: white;
  border: none;
}

.btnLogin:hover {
  background: linear-gradient(135deg, #21417e, #1a3557);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.btnSignup {
  background: transparent;
  color: #2c5fb8;
  border: 2px solid #2c5fb8;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btnSignup:hover {
  background: linear-gradient(135deg, #2c5fb8, #21417e);
  color: white;
  border-color: #2c5fb8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 101;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #21417e;
  border-radius: 3px;
  transition: all 0.3s ease;
}


/* Mobile button container */
.nav-right-mobile {
  display: none;
}

/* Mobile Styles */
@media screen and (max-width: 1024px) {
  .nav-center {
    gap: 20px;
  }

  .nav-center .nav-link {
    font-size: 14px;
  }

  .nav-right button {
    font-size: 12px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 968px) {
  .nav-header {
    padding: 10px 30px;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  /* Show mobile buttons next to logo */
  .nav-right-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
    z-index: 101;
  }

  .nav-right-mobile button {
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .nav-right-mobile .btnLogin {
    background: linear-gradient(135deg, #2c5fb8, #21417e);
    color: white;
    border: none;
  }

  .nav-right-mobile .btnLogin:hover {
    background: linear-gradient(135deg, #21417e, #1a3557);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  .nav-right-mobile .btnSignup {
    background: transparent;
    color: #2c5fb8;
    border: 2px solid #2c5fb8;
    padding: 6px 13px;
    transition: all 0.3s ease;
  }

  .nav-right-mobile .btnSignup:hover {
    background: linear-gradient(135deg, #2c5fb8, #21417e);
    color: white;
    border-color: #2c5fb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  /* Hide desktop buttons */
  .nav-right {
    display: none;
  }

  .nav-center {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 30px;
    gap: 0;
    transition: left 0.3s ease;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-center.active {
    left: 0;
  }

  .nav-center li {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-center .nav-link {
    font-size: 16px;
    display: block;
    padding: 10px 20px;
  }

  .nav-center .nav-link::after {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .nav-header {
    padding: 10px 20px;
  }

  .logo {
    width: 90px;
  }

  .hamburger span {
    width: 25px;
  }

  .nav-center .nav-link {
    font-size: 15px;
  }

  .nav-right-mobile {
    gap: 6px;
    margin-right: 10px;
  }

  .nav-right-mobile button {
    font-size: 10px;
    padding: 7px 12px;
  }
}

/*About Section */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header p {
    color: #555;
    margin-top: 1rem;
    font-size: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
}

.about-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3b3b3b;
    transition: all 0.3s ease;
}

.about-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.about-header p {
    font-size: 1rem;          /* slightly larger for readability */
    color: #333;                 /* soft dark text for easy reading */
    line-height: 1.9;            /* comfortable spacing */
    max-width: 800px;            /* keep it nicely constrained */
    margin: 1.5rem auto 0 auto; /* center with spacing from heading */
    text-align: center;          /* centered for focus */
    font-style: italic;          /* subtle style for elegance */
    letter-spacing: 0.5px;      /* small spacing for a premium look */
    transition: all 0.3s ease;
}

.about-header p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #f0f4ff, #e6e0ff);
}

.about-card:hover h4 {
    color: #1e3c72;
    transform: translateY(-5px);
}

.about-card:hover p {
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2rem;
    }
    .about-header p {
        font-size: 1rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
#contact .bd-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

#contact .bd-grid {
    display: grid;
    gap: 1.5rem;
}

.contact__container {
    row-gap: 1.2rem;
}

.contact__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.contact__box {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 7px 9px 14px -4px rgba(0,0,0,0.15);
    overflow-wrap: break-word;
    max-width: 100%;
    transition: 0.3s;
}

.contact__box:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.contact__icon {
    font-size: 2rem;
    color: #21417e;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 70px;
    margin-bottom: 60px;
}

.contact-item {
    flex: 1 1 250px;
    background: white;
    padding: 18px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #0077ff, #00c6ff);
    border-radius: 4px 4px 0 0;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #0077ff, #00c6ff);
    border-radius: 4px 4px 0 0;
    transform: scaleX(0);         
    transform-origin: center;    
    transition: transform 0.4s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);       
}

.contact-item .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.contact-item:hover .icon {
    transform: scale(1.1);
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #21417e;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-item a {
    color: #0077ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }
}


.business-hours {
    background-color: #fff;
    padding: 1.2rem;
    text-align: center;
    margin-top: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.business-hours h3 {
    color: #21417e;
    margin-bottom: 1rem;
}

.business-hours p {
  color: #555;
  font-size: 0.9rem;
}

/* Best Seller Section */
.carousel {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px 0 100px;
  height: 500px;
  width: 100%;
  max-width: 1220px;
}

.carousel__inner {
  display: flex;
  transition: 0.3s all ease;
  transform: translateX(0);
  padding-right: 210px;
}

.carousel__box {
  width: 500px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.carousel__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel__box:hover {
  transform: scale(1.08);
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.carousel__box:not(:last-child) {
  margin-right: 20px;
}

/* Carousel Arrows */
.carousel__control {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(14, 26, 42, 0.53);
  color: #eaf2ff;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  position: absolute;
  top: 45%; 
  transform: translateY(-50%);
  z-index: 10;
}

.carousel__control--left {
  left: 5px; /
}

.carousel__control--right {
  right: 5px; 
}

.carousel__control:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(18, 48, 86, 0.8);
  border-color: rgba(127, 209, 255, 0.4);
  color: #0dcaf0;
}

.carousel__control i {
  pointer-events: none;
  font-size: 1.8rem;
}

/* Customize Package Section */
.main-content {
  min-height: calc(100vh - 160px);
  padding-bottom: 40px;
}

.navbar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.8s ease-out;
}

.packages-section {
  padding: 150px 5%;
  background: white;

}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #1e3c72;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
  font-weight: 700;
  opacity: 0;
  letter-spacing: -2px;
  transform: translateY(20px);
  animation: titleReveal 0.6s ease-out forwards;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  opacity: 0;
  letter-spacing: -1px;
  transform: translateY(20px);
  animation: subtitleReveal 0.6s ease-out forwards 0.2s;
}

@keyframes titleReveal {
  0% {
      opacity: 0;
      letter-spacing: -2px;
      transform: translateY(20px);
  }
  70% {
      opacity: 1;
      letter-spacing: 2px;
      transform: translateY(-3px);
  }
  100% {
      opacity: 1;
      letter-spacing: 0;
      transform: translateY(0);
  }
}

@keyframes subtitleReveal {
  0% {
      opacity: 0;
      letter-spacing: -1px;
      transform: translateY(20px);
  }
  70% {
      opacity: 1;
      letter-spacing: 1px;
      transform: translateY(-2px);
  }
  100% {
      opacity: 1;
      letter-spacing: 0;
      transform: translateY(0);
  }
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.package-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(30, 60, 114, 0.1);
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: cardAppear 1s ease-out forwards;
}

@keyframes cardAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5) { animation-delay: 0.5s; }
.package-card:nth-child(6) { animation-delay: 0.6s; }

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 60, 114, 0.25);
}

.package-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.package-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image {
  transform: scale(1.15);
}

.package-content {
  padding: 25px;
}

.package-name {
  font-size: 2rem;
  color: #1a3557;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  transition: color 0.4s ease, transform 0.3s ease, text-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
}

.package-card:hover .package-name {
  background: linear-gradient(90deg, #0077ff, #00c6ff);
  background-clip: text;         
  color: transparent;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3); 
  transform: scale(1.05);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.package-price {
  font-size: 1.8rem;       
  color: black;           
  font-weight: 600;        
  font-family: 'Poppins', sans-serif; 
}

.package-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.book-button {
  padding: 12px 30px;
  background: #1181c8;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.book-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(30, 60, 114, 0.4);
}

.footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 30px 5%;
  text-align: center;
  width: 100%;
}

.footer p {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  color: white;
}

.social-icon:hover {
  background: white;
  color: #1e3c72;
  transform: translateY(-4px) scale(1.1);
}


@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }

  .packages-grid {
      grid-template-columns: 1fr;
  }
}

/*Top Destination Section */
#destination #user-page{
  background-color: #f5f8ff;
  text-align: center;
  margin-top: 300px;
}

#destination .title #user-page{
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0a0a0a;
}

#destination .container {
  margin-top: 25px;  
}

.destination-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 35px;
  flex-wrap: wrap;
  position: relative;
  
}

.card {
  position: relative;
  width: 260px;
  height: 360px;
  border-radius: 15px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.center-card {
  width: 260px;
  height: 360px;
  transform: none;
  z-index: 1;
}

.destination-gallery .card:nth-child(1) {
  transform: rotate(-4deg) translateY(10px);
}

.destination-gallery .card:nth-child(2) {
  transform: rotate(-2deg) translateY(0px);
}

.destination-gallery .card:nth-child(3) {
  transform: rotate(2deg) translateY(0px);
}

.destination-gallery .card:nth-child(4) {
  transform: rotate(4deg) translateY(10px);
}

.card:hover {
  transform: scale(1.12) translateY(-15px) !important;
  z-index: 3;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-bg {
  transform: scale(1.2);
}

.card-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  text-align: left;
  transition: opacity 0.3s ease;
}

.card:hover .card-info {
  opacity: 1;
}

.card-info h1 {
  font-size: 18px;
  margin-bottom: 5px;
}

.card-info p {
  font-size: 14px;
  opacity: 0.9;
}

.card-info button {
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #21417e;
  border: none;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-info button:hover {
  background-color: rgb(26, 53, 103);
}

@media (max-width: 768px) {
  .destination-gallery {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 80%;
    height: 400px;
    transform: none;
  }

  .card:hover {
    transform: scale(1.05);
  }
}

/* ========================================
   RESPONSIVE STYLES FOR LANDING PAGE
   ======================================== */

/* Base fixes for sections */
.section {
    position: relative;
    z-index: 1;
    clear: both;
}

#about {
    margin-top: 50px;
    padding-top: 60px;
    padding-bottom: 60px;
}

#contact {
    margin-top: 50px;
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Ensure proper card image sizing */
.carousel__box {
    width: 500px;
    height: 400px;
}

.carousel__box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-image-wrapper {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-footer {
    margin-top: auto;
}

.card {
    width: 260px;
    height: 360px;
}

.card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet View (1024px and below) */
@media (max-width: 1024px) {
    #about {
        margin-top: 60px;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    #contact {
        margin-top: 60px;
        padding-top: 70px;
        padding-bottom: 90px;
    }

    /* Home Section */
    .image-container {
        max-width: 95%;
        height: 400px;
        margin: 80px auto 0 auto;
    }

    .hc-title {
        font-size: 2rem;
        top: 15%;
        left: 8%;
    }

    /* Best Seller Carousel */
    .carousel {
        max-width: 95%;
        height: 450px;
    }

    .carousel__box {
        width: 400px;
        height: 320px;
    }

    .carousel__box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Customize Packages - 2 columns */
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }

    .package-image-wrapper {
        height: 230px;
    }

    /* Destination Gallery */
    .destination-gallery {
        gap: 25px;
    }

    .card {
        width: 240px;
        height: 340px;
    }

    .card-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 20px;
    }

    /* Contact Section */
    .contact-grid {
        gap: 20px;
        padding: 0 20px;
    }

    .contact-item {
        flex: 1 1 280px;
    }
}

/* Mobile View (768px and below) */
@media (max-width: 768px) {
    body {
        padding-top: 70px !important;
    }

    .section {
        margin-bottom: 30px;
    }

    #about {
        margin-top: 80px;
        padding-top: 80px;
        padding-bottom: 80px;
        min-height: auto;
    }

    #contact {
        margin-top: 80px;
        padding-top: 80px;
        padding-bottom: 100px;
        min-height: auto;
    }

    /* Section Titles */
    .title {
        font-size: 1.8rem;
        margin: 60px 0 30px;
    }

    .title::after {
        width: 150px !important;
    }

    /* Home Section */
    #home {
        height: auto;
        min-height: 70vh;
        padding: 20px 0;
        margin-bottom: 40px;
    }

    .image-container {
        max-width: 95%;
        height: 300px;
        margin: 60px auto 0 auto;
        border-radius: 8px;
    }

    .hc-title {
        font-size: 1.5rem;
        top: 10%;
        left: 5%;
        padding-right: 10px;
    }

    .hc-progress {
        bottom: 10px;
        gap: 6px;
    }

    .hc-progress span {
        width: 20px;
    }

    /* Best Seller Section */
    #best {
        padding: 20px 10px 60px;
        margin-bottom: 40px;
    }

    .carousel {
        max-width: 100%;
        height: 380px;
        padding: 20px 0 80px;
    }

    .carousel__inner {
        padding-right: 100px;
    }

    .carousel__box {
        width: 320px;
        height: 280px;
    }

    .carousel__box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel__control {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }

    .carousel__control i {
        font-size: 1.6rem;
    }

    /* Customize Packages Section - 2 columns on mobile */
    #package-welcome {
        padding: 20px 10px 60px;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .package-card {
        max-width: 100%;
        height: 100%;
    }

    .package-image-wrapper {
        height: 180px;
    }

    .package-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .package-content {
        padding: 15px;
    }

    .package-name {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .package-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .package-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding-top: 12px;
    }

    .package-price {
        font-size: 1.3rem;
    }

    .book-button {
        width: 100%;
        padding: 10px;
        text-align: center;
        font-size: 12px;
    }

    .badge {
        top: 8px;
        right: 8px;
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    /* Destination Section */
    #destination {
        padding: 20px 10px 80px;
        margin-bottom: 40px;
    }

    .destination-gallery {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card,
    .center-card {
        width: 90%;
        max-width: 350px;
        height: 380px;
        transform: none !important;
    }

    .card-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card:hover {
        transform: scale(1.05) translateY(-10px) !important;
    }

    .card-info h1 {
        font-size: 20px;
    }

    .card-info p {
        font-size: 14px;
    }

    /* About Section */
    .about-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .about-header {
        margin-bottom: 2.5rem;
    }

    .about-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-card {
        padding: 1.8rem 1.5rem;
    }

    .about-card h4 {
        font-size: 1.2rem;
    }

    .about-card p {
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .contact-item {
        flex: none;
        width: 100%;
    }

    .contact-item .icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .contact-item h3 {
        font-size: 18px;
    }

    .contact-item p {
        font-size: 14px;
    }

    /* Auth Modal */
    .modal-content {
        width: 95%;
        height: auto;
        max-height: 90vh;
        margin: 5% auto;
    }

    .auth-container {
        flex-direction: column;
    }

    .auth-form-container {
        position: relative;
        width: 100% !important;
        height: auto;
    }

    .auth-sign-in,
    .auth-sign-up {
        position: relative;
        transform: none !important;
        opacity: 1 !important;
    }

    .auth-overlay-container {
        display: none;
    }

    .auth-form {
        padding: 30px 20px;
        min-height: auto;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .auth-text {
        font-size: 13px;
    }

    .auth-input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .auth-btn {
        padding: 10px 40px;
        font-size: 11px;
    }

    /* Messenger Button */
    .messenger-btn {
        bottom: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .messenger-btn i {
        font-size: 18px;
    }

    .messenger-btn span {
        display: none;
    }

    /* Business Hours */
    .business-hours {
        padding: 1rem;
        margin-top: 30px;
    }

    .business-hours h3 {
        font-size: 1.1rem;
    }

    .business-hours p {
        font-size: 0.85rem;
    }
}

/* Small Mobile View (480px and below) */
@media (max-width: 480px) {
    #about {
        margin-top: 100px;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    #contact {
        margin-top: 100px;
        padding-top: 100px;
        padding-bottom: 120px;
    }

    /* Section Titles */
    .title {
        font-size: 1.5rem;
        margin: 50px 0 25px;
    }

    .title::after {
        width: 120px !important;
    }

    /* Home Section */
    .image-container {
        height: 250px;
        margin: 50px auto 0 auto;
    }

    .hc-title {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    /* Best Seller */
    .carousel {
        height: 320px;
        padding: 15px 0 60px;
    }

    .carousel__box {
        width: 280px;
        height: 240px;
    }

    .carousel__box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel__control {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .carousel__control--left {
        left: 2px;
    }

    .carousel__control--right {
        right: 2px;
    }

    /* Customize Packages - Single column on small mobile */
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .package-image-wrapper {
        height: 200px;
    }

    .package-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .package-content {
        padding: 15px;
    }

    .package-name {
        font-size: 1.3rem;
    }

    .package-description {
        font-size: 0.85rem;
    }

    .package-price {
        font-size: 1.3rem;
    }

    .book-button {
        padding: 12px;
        font-size: 13px;
    }

    /* Destination */
    .card,
    .center-card {
        width: 95%;
        height: 360px;
    }

    .card-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-info h1 {
        font-size: 18px;
    }

    .card-info p {
        font-size: 13px;
    }

    .card-info button {
        padding: 5px 10px;
        font-size: 12px;
    }

    /* About Section - Single column */
    .about-container {
        padding: 0 15px;
    }

    .about-header p {
        font-size: 0.9rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 1.8rem 1.2rem;
    }

    .about-card h4 {
        font-size: 1.2rem;
    }

    .about-card p {
        font-size: 0.9rem;
    }

    /* Contact Section - Single column */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .contact-item .icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .contact-item h3 {
        font-size: 16px;
    }

    .contact-item p {
        font-size: 13px;
    }

    /* Auth Modal */
    .modal-content {
        width: 98%;
        margin: 2% auto;
    }

    .auth-form {
        padding: 25px 15px;
    }

    .auth-title {
        font-size: 1.3rem;
    }

    .auth-input {
        padding: 9px 10px;
        font-size: 13px;
        margin: 6px 0;
    }

    .auth-btn {
        padding: 9px 35px;
        font-size: 10px;
    }

    .auth-link {
        font-size: 9px;
    }

    .close {
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    /* Messenger Button */
    .messenger-btn {
        bottom: 12px;
        right: 12px;
        padding: 8px 12px;
    }

    .messenger-btn i {
        font-size: 20px;
    }
}

/* Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    .title {
        font-size: 1.3rem;
    }

    .image-container {
        height: 220px;
    }

    .hc-title {
        font-size: 1rem;
    }

    .carousel__box {
        width: 250px;
        height: 220px;
    }

    .carousel__box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .package-name {
        font-size: 1.2rem;
    }

    .package-price {
        font-size: 1.2rem;
    }

    .card,
    .center-card {
        height: 340px;
    }

    .card-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}