* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none; 
  overflow-x: hidden;
  -ms-overflow-style: none;
  max-width: 100%;
}

body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  max-width: 100%;
}

/* Header*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    padding: 20px 0;
    background: linear-gradient(to bottom , white, transparent);
}

header.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #000000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.btn-login {
    background: #333;
    color: white;
    padding: 10px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
}

.container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    box-sizing: border-box;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 9999; 
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #000; /* Use black to match your logo text */
    border-radius: 2px;
}

/* --- The 3 Lines --- */
.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000; /* Change to #fff if your background is dark */
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* --- Mobile Visibility --- */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex !important; /* Force it to show */
    }

    /* Animation: Three lines to X */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Full screen menu overlay */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%; /* Start off-screen */
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease;
        z-index: 9998;
        margin: 0;
        padding: 0;
    }

    .nav-links.active {
        left: 0; /* Slide in */
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    width: 100%;
    aspect-ratio: 16 / 9;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.4), transparent);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.badge {
    background: rgba(221, 210, 210, 0.553);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero h1 strong {
    font-weight: 900;
}

.search-bar {
    background: #f0edf5;
    width: 350px;
    height: 55px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
}

.search-bar button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #555;
}

/* All In One Section */
.all-in-one {
    padding: 60px 2%;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
}

.text-content-centered {
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-content-centered h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-top: 15px;
    color: #1a1a1a;
}

.dynamic-grid {
    display: flex;
    width: 100%;
    max-width: 1400px; 
    height: 550px;
    gap: 12px;
    margin: 0 auto;
}

.dynamic-card {
    position: relative;
    flex: 0.7; 
    border-radius: 25px;
    overflow: hidden;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.dynamic-card:hover {
    flex: 4; 
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 30px;
    left: 25px;
    z-index: 2;
    color: white;
    width: 250px; 
}

.card-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease 0.3s;
}

.dynamic-card:hover .card-content p {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile: Stack them vertically */
@media (max-width: 900px) {
    .dynamic-grid {
        flex-direction: column;
        height: 1200px;
    }
    .dynamic-card {
        flex: 1;
    }
    .dynamic-card:hover {
        flex: 3;
    }
}

/* Destination Section */
.destination {
    padding: 30px 2%;
    background: #ebedee 80%;
    overflow: hidden;
}

.text-content-centered {
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-content-centered h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-top: 15px;
    color: #1a1a1a;
}

.destination-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    grid-template-rows: 700px 280px;
    gap: 25px;
    list-style: none;
    margin: 0 30px;
}

.destination-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
}

.destination-list li.w-50 .destination-card {
    height: 700px;
}

.destination-list li:not(.w-50) .destination-card {
    height: 280px; 
}

.destination-list li.w-50 {
    grid-column: span 3;
    grid-row: 1;
}

.destination-list li:not(.w-50) {
    grid-column: span 2; 
    grid-row: 2;
}

.img-cover {
    display: block;    
    width: 100%;      
    height: 100%;      
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-banner {
    margin: 0;
    padding: 0;
    height: 100%; 
    width: 100%;
    overflow: hidden;
}

.destination-card:hover .img-cover {
    transform: scale(1.1);
}

.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

.destination-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 1;
}

.card-subtitle {
    color: #ffcc00; 
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
}

/* Tour Section */
.tour-row {
  display: flex;
  flex-wrap: wrap; 
  gap: 20px;
  list-style: none;
  padding: 0;
  justify-content: center;
}

.tour-column {
  flex: 1 1 300px;
  max-width: 350px; 
}

.tour-card {
  background: linear-gradient(to bottom, white 0%, white 50%, #e0e0e0 100%);
  border-radius: 15px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tour-banner {
  margin: 0;
  height: 220px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-location-title {
  font-size: 23px;
  font-weight: 800;
  color: #222;
  text-transform: uppercase;
  margin: 0;
}

.card-date {
  font-size: 18px;
  color: #555;
  margin: 0;
}

.card-includes {
  font-size: 15px;
  color: #888;
  margin: 5px 0 15px 0;
}

.card-price-final {
  font-size: 25px;
  font-weight: 900;
  color: #FF5722;
  margin-top: auto;
}

/* Package Section */
.packages {
    background: #ebedee 80%;
    overflow: hidden;
}

.package-list {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.package-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.package-banner {
  position: relative;
  margin: 0;
  height: 300px; 
  width: 270px;
  overflow: hidden;
}

.package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  align-self: center;
}

.package-card:hover .package-img {
  transform: scale(1.1);
}

.package-price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ffffff;
  color: #000000;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  z-index: 2;
}

.package-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.983));
  color: white;
  z-index: 2;
}

.package-rating {
  display: flex;
  gap: 2px;
  color: white;
  font-size: 12px;
  margin-bottom: 5px;
}

.package-title {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.package-subtitle {
  font-size: 14px;
  margin-top: 5px;
  opacity: 0.9;
}

.package-list a {
  text-decoration: none;
  color: inherit;
}

/* Banner Section */
.one-banner {
  width: 100%;
  height: 300px;
  background-image: url('./images/banner1.jpg'); 
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.two-banner {
  width: 100%;
  height: 300px;
  background-image: url('./images/banner2.jpg'); 
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); 
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.banner-content {
  color: white;
  max-width: 600px;
}

.banner-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: -10px;
  letter-spacing: 1px;
}

.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  margin: 0;
  line-height: 1;
}

.banner-btn-wrapper {
  margin-top: 20px;
}

.banner-btn {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2); 
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 50px; 
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  transition: 0.3s;
}

.banner-btn:hover {
  background-color: white;
  color: #333;
}

@media (max-width: 768px) {
  .banner-title { font-size: 4rem; }
  .banner-subtitle { font-size: 1.5rem; }
  .one-banner { height: 350px; }
}

/* Contact Info Section */
.contact-info {
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  background-color: #1f1a1a1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-left: 150px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.contact-badge {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid gray;
  border-radius: 50px;
  font-size: 14px;
  color: black;
  margin-bottom: 20px;
}

.contact-title {
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-text {
  color: gray;
  font-size: 18px;
}

.contact-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #333; 
}

.contact-right .contact-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.icon-box {
  width: 55px;
  height: 55px;
  background-color: var(--bg-light-blue);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-gray);
  font-size: 15px;
  margin: 0;
}

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; text-align: center; }
  .contact-right { grid-template-columns: 1fr; }
  .contact-item { justify-content: flex-start; text-align: left; }
  .contact-badge { margin: 0 auto 20px; }
}

/* Footer Section */
.site-footer {
  background-color: #000000; 
  color: #ffffff; 
  padding: 60px 0 30px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #000000; 
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  max-width: 350px;
}

.footer-logo-img {
  height: 130px;
  width: 130px;
  object-fit: contain;
}

.footer-text-group {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
  width: 200px;
  margin-top: 40px;
}

.footer-logo {
  font-size: 25px;
  font-weight: 850;
  margin: 0;
  color: #ffffff;
}

.footer-slogan {
  font-size: 11px;
  font-weight: 600;
  color: #c1bdbd;
  margin-top: 5px;
  text-transform: uppercase;
}

.footer-links-group {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.footer-col ul li a:hover {
  opacity: 0.6;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #ffffff;
  margin: 25px 0;
}

.footer-bottom {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.social-icons a {
  color: #ffffff;
  font-size: 20px;
  border: 1px solid #ffffff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}

.copyright-text {
  font-size: 13px;
  color: #333;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-links-group {
    justify-content: center;
    gap: 30px;
  }
}

/*------------------*/
/* DESTINATION PAGE */
/*-----------------*/

/* Place Section*/
.places-section {
  padding: 40px 20px;
  font-family: sans-serif;
}

.places-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.place-card {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.place-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.overlay h3 {
  color: white;
  margin: 0;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/*------------------*/
/*  BLOG PAGE */
/*-----------------*/

.blog-container {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 40px;
  padding: 30px;
  font-family: 'Inter', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}

/* MAIN CARDS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 0fr));
  gap: 20px;
}

.blog-card {
  position: relative;
  height: 400px;
  width: 270px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover img {
  transform: scale(1.1);
}

.blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: white;
}

.category {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 12px;
  text-transform: uppercase;
}

.blog-content h3 { margin: 15px 0 10px; font-size: 1.4rem; }
.blog-content p { font-size: 0.9rem; opacity: 0.8; }

/* SIDEBAR */
.sidebar-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.sidebar-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: center;
  text-decoration: none;
}

.sidebar-item img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.side-text .date { font-size: 12px; color: #888; }
.side-text h4 { margin: 5px 0 0; font-size: 0.95rem; line-height: 1.4; text-decoration: none; color: black; }

@media (max-width: 900px) {
  .blog-container { grid-template-columns: 1fr; }
}

/*Tour Info Page*/
.tour-info-page {
    padding: 60px 5%;
    font-family: 'Arial', sans-serif;
}

.tour-info-page .container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.info-left {
    flex: 1;
}

#tour-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.date-price-box {
    background: #f9f9f9;
    padding: 15px;
    border-left: 5px solid #527348;
    margin-bottom: 30px;
}

.date-price-box ul { list-style: none; padding: 0; }
.date-price-box li { font-weight: bold; font-size: 18px; margin-bottom: 5px; }

.includes-section h3 {
    font-size: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.includes-section ul { padding-left: 20px; color: #444; line-height: 1.8; }

.contact-box {
    margin-top: 40px;
    padding: 20px;
    background: #222222e2;
    color: white;
    border-radius: 8px;
}

.contact-box .phone { color: #527348; font-size: 20px; font-weight: bold; text-decoration: none; }

/* --- RESPONSIVE STYLES --- */
@media screen and (max-width: 1024px) {
    .tour-info-page .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0 0px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .info-left, .info-right {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .info-right {
        order: -1;
    }

    #tour-title {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
        position: static !important;
        width: 100%;
        text-align: center;
    }

    .carousel-container {
        width: 100% !important;
        max-width: 450px;
        height: auto !important; 
        min-height: 250px;
        border-radius: 12px;
        overflow: hidden;
        background: #f0f0f0;
    }

    .carousel-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; 
        display: block;
    }

    .date-price-box, .includes-section, .contact-box {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-top: 20px !important;
    }

    #tour-dates, #tour-includes {
        display: inline-block !important;
        text-align: left !important;
        padding: 0 !important;
        list-style: none !important;
        margin: 10px auto !important;
    }

    #tour-dates li, #tour-includes li {
        margin-bottom: 8px;
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    flex-shrink: 0;
    height: 550px;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    margin: 0 10px;
}

.next { right: 0; }
.prev { left: 0; }
.prev:hover, .next:hover { background: #527348; }


/* --- RESPONSIVE STYLES --- */
@media screen and (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .container {
        width: 60%;
        padding: 0px 15px; ; 
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Keep logo size sensible on small screens */
    .logo img {
        height: 40px; 
        margin-left: -140px;
    }
    
    .logo-text {
        font-size: 10px;
    }
}

/* --- Hero Section */
@media screen and (max-width: 768px) {
    .hero {
        height: 100vh; 
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        z-index: 1;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        width: 100%;
    }

    .badge {
        font-size: 1rem;
        padding: 6px 15px;
    }

    .search-bar {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Destination */
@media screen and (max-width: 768px) {
    .destination-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .destination-list li, 
    .destination-list li.w-50 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
    }

    .destination-card {
        display: block;
        position: relative;
        width: 100%;
        height: 150px !important;
        overflow: hidden;
        border-radius: 10px;
    }

    .card-banner {
        width: 100%;
        height: 150px !important; 
        margin: 0 !important;
        padding: 0 !important;
    }

    .card-banner img {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
        display: block;
    }

    .destination-card .card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px 15px;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        color: white;
        z-index: 2;
    }

    .card-subtitle {
        font-size: 0.75rem;
        margin: 0;
        color: #eee;
    }

    .card-title {
        font-size: 1.1rem;
        margin: 0;
    }
}

/* One-banner */
@media screen and (max-width: 1024px) {
    .one-banner .banner-overlay {
        display: flex !important;
        justify-content: center !important; /* Centers horizontally */
        align-items: center !important;     /* Centers vertically */
        text-align: center !important;      /* Centers text lines */
        min-height: 300px;                  /* Adjust based on your preferred banner height */
    }

    .one-banner .banner-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Ensures button and text align in the middle */
    }

    .one-banner .banner-title {
        font-size: 3rem; /* Optional: makes title slightly smaller for mobile */
        margin-bottom: 20px;
    }

    .one-banner .banner-btn-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* TABLET - Tour */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .tour-row {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between;
        gap: 10px;
        padding: 0;
    }

    .tour-column {
        width: 30% !important;
    }

    .tour-card {
        height: 100% !important;
        display: flex;
        flex-direction: column;
    }
    
    .tour-banner {
        height: 150px !important;
    }
}

/* MOBILE - Tour */
@media screen and (max-width: 767px) {
    .section-container, .tour-container {
        width: 100% !important;
        padding: 0 20px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .tour-row, .destination-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 0;
        margin: 0 auto !important;
        width: 100% !important;
        list-style: none;
    }
    .text-content-centered {
        margin-bottom: 15px !important;
        text-align: center;
    }
    .tour-column {
        width: 100% !important;
        max-width: 400px;
        display: block;
        padding: 0 !important;
        margin: 0 auto !important;
        margin-bottom: -140px !important;
    }
    .tour-card {
        display: block !important;
        height: 150px !important;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        width: 100%;
    }
    .tour-banner {
        width: 100%;
        height: 100% !important;
        margin: 0;
        padding: 0;
    }
    .tour-banner img {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
        display: block;
    }
    .tour-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px 15px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        color: white;
        text-align: left;
    }
    .card-location-title {
        font-size: 1rem;
        font-weight: bold;
        color: white;
        margin: 0;
    }
    .card-date, .card-includes {
        font-size: 0.75rem;
        color: #efefef;
        margin: 0;
    }
    .card-price-final {
        position: absolute;
        top: 50% !important;
        transform: translateY(-50%);
        right: 15px;
        background: #f16b6b;
        padding: 4px 10px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 0.9rem;
        color: white;
        z-index: 5;
    }
}

/* Two-Banner */
@media screen and (max-width: 1024px) {
    .one-banner .banner-overlay,
    .two-banner .banner-overlay {
        display: flex !important;
        justify-content: center !important; /* Horizontal center */
        align-items: center !important;     /* Vertical center */
        text-align: center !important;      /* Text alignment */
        min-height: 250px;                  /* Ensures enough height to see the centering */
        padding: 40px 20px;
    }

    .one-banner .banner-content,
    .two-banner .banner-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;     /* Centers the button horizontally */
        width: 100%;
    }

    .two-banner .banner-title {
        font-size: 2.5rem; /* Adjusts the "Blog" title size for smaller screens */
        margin-bottom: 15px;
    }

    .two-banner .banner-subtitle {
        margin-bottom: 5px;
    }

    /* Ensures the button doesn't stretch to full width unless you want it to */
    .banner-btn {
        display: inline-block;
        width: fit-content;
    }
}

/* Contact Info */
@media screen and (max-width: 1024px) {
    .contact-info .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important; 
        margin: 0 auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; 
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .contact-left {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .contact-right {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 5px;
    }

    .contact-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }

    .icon-box {
        margin: 0 0 10px 0 !important;
        font-size: 30px;
    }
}

/* Footer */
@media screen and (max-width: 1024px) {
    .footer-top {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 40px;
    }

    .footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto;
    }

    .footer-links-group {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
        width: 100%;
        text-align: center;
    }

    .footer-col ul {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none;
    }

    .footer-col li {
        margin-bottom: 10px;
    }

    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px;
        padding-top: 20px;
    }

    .social-icons {
        display: flex !important;
        justify-content: center !important;
        gap: 20px;
        padding: 0;
    }

    @media (max-width: 600px) {
        .footer-links-group {
            grid-template-columns: 1fr !important;
        }
        
        .footer-logo {
            font-size: 1.5rem;
        }
    }
}

/* Blog Page */
@media screen and (max-width: 1024px) {
    .blog-container {
        display: flex;
        flex-direction: column; /* Stacks Main Grid and Sidebar */
        padding: 20px;
        gap: 40px;
    }

    .blog-main, .blog-sidebar {
        width: 100% !important; /* Forces full width */
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        gap: 20px;
    }

    .text-content-centered h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 1024px) {
    .blog-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        padding: 0 15px !important;
    }

    .blog-main {
        width: 100% !important;
        max-width: 500px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .blog-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 20px !important;
    }

    .blog-card{
        width: 100% !important;
        position: relative !important;
        margin-bottom: 10px !important;
        border-radius: 15px;
        overflow: hidden;
    }

    .blog-sidebar {
        margin-top: 40px;
    }

    .blog-card img{
        width: 100% !important;
        object-fit: cover !important;
        display: block;
    }

    .blog-content{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        padding: 20px;
        color: white !important;
        text-align: left;
    }

    .sidebar-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .sidebar-item {
        background: #f9f9f9;
        padding: 10px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-content p {
        font-size: 0.9rem;
    }
}

/* Article Page */
/* --- RESPONSIVE BLOG ARTICLE STYLING --- */

@media screen and (max-width: 1024px) {
    /* Stack Main Content and Sidebar */
    .blog-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 20px !important;
    }

    .blog-main, .blog-sidebar {
        width: 100% !important;
        max-width: 700px !important;
    }

    /* Adjust main article image */
    .article-main-img {
        max-height: 350px;
    }
}

@media screen and (max-width: 768px) {
    /* 1. Activity Items: Image on top, Text below */
    .activity-item {
        flex-direction: column-reverse !important; /* Image on top of text */
        align-items: center !important;
        gap: 20px !important;
        text-align: center;
    }

    .activity-text {
        width: 100%;
    }

    .activity-side-img, .activity-side-imgbus {
        max-width: 100% !important;
        width: 100% !important;
        height: 200px !important;
        flex: none !important;
    }

    /* 2. Bus Columns: Stack tables vertically */
    .bus-columns {
        flex-direction: column !important;
        gap: 20px;
    }

    .bus-col {
        width: 100%;
        border-bottom: 1px solid #ddd;
        padding-bottom: 15px;
    }

    .bus-col:last-child {
        border-bottom: none;
    }

    /* 3. Typography Adjustments */
    #article-title {
        font-size: 1.8rem !important;
    }

    .article-body-content {
        font-size: 1.05rem !important;
    }

    /* 4. Sidebar Items: Overlay style as seen in your previous screenshots */
    .sidebar-item {
        position: relative;
        display: block !important;
        height: 180px;
        margin-bottom: 15px;
        overflow: hidden;
        border-radius: 12px;
    }

    .sidebar-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .side-text {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: white !important;
    }

    .side-text h4 {
        color: white !important;
        margin: 0;
        font-size: 1.1rem;
    }
    
    .side-text .date {
        color: #ff4d00;
        font-weight: bold;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .text-content-centered {
        margin-top: 70px !important;
    }
    
    #article-title {
        font-size: 1.5rem !important;
    }

    .price-tag {
        display: block; /* Stack price tags on very small screens */
        margin: 5px 0;
    }
}