
h1, h2 {
  color: #0078D7;
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
}
h2 {
  font-size: 20px;
  margin-top: 30px;
}

p {
  line-height: 1.6;
  margin: 12px 0;
}
     
h3 {
  color:  #0078D7;
  font-size: 20px;
  font-weight: 18px;
}

/* Sticky header */
.fixed-custom {
  position: sticky;
  top: 0;
  left: 0;   
  width: 100%;
  z-index: 9998;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  margin: 0;           /* remove any default margins */
  padding: 0;          /* remove extra padding */
}

.navbar-collapse
{
color:white;
z-index: 9999;

}

.nav-link{
  color:white;
  font-weight: bold;
}

.container {
  max-width: 1920px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  padding: 5px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.carousel {
  overflow: hidden; /* prevent scrollbar flicker */
}
.carousel-inner img {
  height: 800px;       /* adjust to desired height */
  object-fit: cover;   /* crop instead of squish */
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
  .carousel-inner img {
    height: 350px;
  }
}

/* Small screens (phones) */
@media (max-width: 576px) {
  .carousel-inner img {
    height: 250px;
  }
  .overlay-content h1 {
    font-size: 1.2rem;    /* scale down overlay text */
  }
  .overlay-content .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

.overlay-content {
  width: 100%;
  height: 100vh;
}

/* Headline styling */
.overlay-content h1 {
  font-size: clamp(1.8rem, 5vw, 4rem); 
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* Paragraph styling */
.overlay-content p {
  color: #f0f0f0;
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  margin-top: 0.5rem;
}

 .modern-btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-btn:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  box-shadow: 0 6px 16px rgba(0, 114, 255, 0.4);
  transform: translateY(-2px);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .overlay-content {
    padding: 1rem;
    width: 95%;
  }

  .overlay-content h1 {
    font-size: 2rem;
  }

  .overlay-content p {
    font-size: 1rem;
  }
}


.info-section {
  background-color:#e8edf3;
  border-left: 5px solid #0078D7;
  padding: 20px;
  margin: 30px 0;
  border-radius: 6px;
  text-align:center;
}


.info-section h2 {
  color: #0078D7;
  text-align:center;
}


.benefits-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 30px;
  background-color: #f6fbf9;
  color:  #0078D7;  
}

.benefit {
  flex: 1 1 250px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit h3 {
  color:  #0078D7;
  margin-top: 0;
}


.visa-section {
  background: #eef6fb;
  padding: 40px 20px;
}

.visa-section h2 {
  text-align: center;
  color: #204e6d;
  margin-bottom: 30px;
}

.visa-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1800px;
  margin: auto;
}

.visa-card {
  flex: 1 1 280px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.visa-card:hover {
  transform: translateY(-5px);
}

.visa-card h3 {
  margin-top: 0;
  color: #0078D7;
}

@media (max-width: 768px) {
  .visa-columns {
    flex-direction: column;
    align-items: center;
  }
}

/* SECTION BASE */
.advice-section {
  background-color: #fefefe;
  padding: 50px 20px;
}

/* HEADER */
.advice-section h2 {
  text-align: center;
  font-size: 24px;
  color:  #0078D7;
  margin-bottom: 40px;
}

/* FLEX CONTAINER */
.advice-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1800px;
  margin: 0 auto;
}

/* INDIVIDUAL CARDS */
.advice-card {
  flex: 1 1 250px;
  max-width: 350px;
  background-color: #e8edf3;
  border-left: 5px solid  #0078D7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.advice-card:hover {
  transform: translateY(-5px);
}

.advice-card h3 {
  margin-top: 0;
  color:  #0078D7;
  font-size: 1.2rem;
}

.advice-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .advice-card {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .advice-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .advice-section {
    padding: 30px 15px;
  }

  .advice-card p {
    font-size: 0.9rem;
  }
}

.cancellationcontainer{
  max-width: 800px;
  margin: 10px auto;
}
.tabs {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tab {
    margin-bottom: 20px;
}
.tab h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #f9f9f9;
  margin-right: 5px;
  border-radius: 8px;
}
.tab-button.active {
  background: #007BFF;
  color: white;
  border-color: #007BFF;
}
.tab-content {
  border: 1px solid #ccc;
  padding: 15px;
}


.tour-info-section {
  display: flex;
  padding: 40px 20px;
  margin: 30px 0;
  text-align:center;
  display: inline-block;
  color: #204e6d;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
}

.tour-section img{
height: auto;
width: 100%;
object-fit: cover;
}

.list-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
.list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Ensures everything aligns to the left */
  margin-bottom: 15px;
  font-size: 1.1em;
}

.list-item i {
  margin-right: 2px;
  font-size: 1.3em;
  color: #c0392b; /* Optional: adds a rich accent */
  min-width: 24px;
  text-align: center;
}

.about-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #e6f2ff, #f0f8ff);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.about-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.highlight {
  font-weight: 600;
  color: #007bff;
}
.list-group-item i {
  margin-right: 2px;
  font-size: 1.3em;
  color: #c0392b; /* Optional: adds a rich accent */
  min-width: 24px;
  text-align: center;
}


.tab-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #ccc;
}

.tab-nav li {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-bottom: none;
  margin-right: 5px;
  background-color: #f9f9f9;
  transition: background-color 0.3s;
}

.tab-nav li.active {
  background-color: #fff;
  font-weight: bold;
  border-top: 2px solid #0078D7;
  border-left: 2px solid #0078D7;
  border-right: 2px solid #0078D7;
}

.tab-panel {
  display: none;
  padding: 15px;
  border: 2px solid #ccc;
  background-color: #fff;
}

.tab-panel.active {
  display: block;
}

.tab-content.active {
  display: block;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.product .card-title {
  font-size: 2rem;
  font-weight: 600;
}


.card-text {
  font-size: 0.95rem;
  color:  #0078D7;
}


.map-wrapper {
  width: 100%;
  overflow: visible;
}
  #map {
    height: 400px;
    width: 100%;
    margin-top: 20px;
  }

  @media (max-width: 600px) {
    #map {
      height: 300px; /* Slightly smaller for mobile */
    }
  }
  .highlight {
    font-weight: 600;
    color:  #0078D7;
  }
 table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 16px;
    }
    th, td {
      padding: 12px;
      border: 1px solid #ddd;
      text-align: left;
    }
    th {
      background-color: #eef6f4;
    }
.note {
      font-size: 14px;
      color: #666;
      margin-top: 20px;
    }
    .contact {
      background: #f1f1f1;
      padding: 12px;
      border-radius: 8px;
      margin-top: 20px;
    }

    .termscontainer {
      max-width: 800px;
      margin: 0 auto;
      padding: 10px 20px;
      background: #fff;
    }
  
  .post{
    text-align:center;
  }


.experiences-section h2{
  color:  #0078D7;
  font-size: 30px;
  font-weight: 18px;
}

  .poster-container {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      padding: 2rem;
      margin-top: 1rem;
    }

    .poster-container h2 {
      font-size: 2.5rem;
      font-weight: bold;
      text-transform: uppercase;
      color: #0056b3;
    }

/* Reset and base styles */
html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  background-color: #f9f9f9;
  scroll-behavior: smooth;
  overflow-x: hidden; /* prevent horizontal scroll */
 
}

 .hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    font-family: 'Georgia', serif;
  }

  .hero-video,
  .video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    z-index: 1;
    overflow: hidden;
  }
@media (max-width: 768px) {
    .hero-video {
      display: none;
    }
    .video-fallback {
      display: block;
    }
  }


  .home-hero-section {
    position: relative;
    width: 50vh;
    height: 50vh;
    font-family: 'Georgia', serif;
  }

  .home-hero-video,
  .home-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    overflow: hidden;
  }
@media (max-width: 768px) {
    .home-hero-video {
      display: none;
    }
    .home-video-fallback {
      display: block;
    }
  }
  

.poster-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;          /* anchor to bottom instead of height:100% */
  left: 0;            /* anchor to left */
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 2rem;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.0), transparent);
  color: white;
  box-sizing: border-box;
}


  .poster-overlay h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  }

  .poster-overlay .price {
    font-size: 2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
  }

  .poster-overlay p {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 500px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  }

  .btn-group {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-group .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .poster-overlay {
      align-items: center;
      text-align: center;
      padding: 1.5rem;
    }

    .poster-overlay h2 {
      font-size: 2rem;
    }

    .poster-overlay p {
      font-size: 1rem;
      max-width: 90%;
    }

    .btn-group {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .btn-group .btn {
      width: 100%;
      max-width: 250px;
      margin-bottom: 0.5rem;
    }
  }


.product-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 1rem;
    }

  .product-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
  }


.product-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.product-image img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}


  .product-image img:hover {
    transform: scale(1.02);
  }

  .product-info {
    flex: 1 1 50%;
    padding: 1rem;
  }

  .product-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .product-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
  }

  .product-info .price {
    font-size: 1.5rem;
    font-weight: 500;
    color:  #0078D7;
    margin-bottom: 1.5rem;
  }

  .product-info .btn {
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    border-radius: 0.4rem;
    margin-right: 1rem;
  }

  @media (max-width: 768px) {
    .product-card {
      flex-direction: column !important;
      text-align: center;
    }

    .product-info {
      padding: 0;
    }

    .product-info .btn {
      display: block;
      margin: 0.5rem auto;
    }
  }

.food-culture h5 {
  color:  #0078D7;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 20px;
}

.button-page-video {
  background: linear-gradient(135deg, #f9f9f9, #eaf4ff); /* soft gradient background */
  overflow-x: hidden;
}

.video-box {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.video-box video {
  border-radius: 1rem;
}
/* Gradient button */
.btn-gradient {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,114,255,0.4);
}

.watermark {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.circle-photo-display .watermark {
  position: absolute;
  bottom: 10px;   /* adjust vertical placement */
  right: 15px;    /* adjust horizontal placement */
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7); /* semi-transparent white */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6); /* improves readability */
  pointer-events: none; /* ensures watermark doesn’t block hover/click */
}

.tour-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Gradient heading */
.text-gradient {
  background: linear-gradient(90deg,  #0078D7,  #4785b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.itinerary-tabs {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}

/* Hide all panels by default */
#iti .tab-panel {
  display: none;
}

/* Show only the active one */
#iti .tab-panel.active {
  display: block;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 400px; /* fixed height for the card */
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;       /* force image to fill container height */
  object-fit: cover;  /* crop nicely without distortion */
  display: block;
}
.caption {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* Tablet view */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
.holidays-list h4{
   color: #0078D7;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #6177f5, #95adf1);
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shoppingcart-card {
  border-radius: 12px;
  max-width: 800px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  padding: 5px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-control {
  border-radius: 8px;
}

/* Card container */
.homecard {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* Image scales responsively */
.homecard img {
  width: 100%;
  height: auto;
  display: block;
}

.homecard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.homecard:hover img {
  transform: scale(1.05);
}
/* Overlay sits on top of image */
.homeoverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.3);
  color: #fff;
  padding: 16px;
  text-align: left;
}
.homecard:hover .overlay {
  opacity: 1;
}

/* Title link styling */
.homeoverlay h3 a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}
.homeoverlay h3 a:hover { text-decoration: underline; }


/* Responsive adjustments */
@media (max-width: 768px) {
  .homeoverlay {
    padding: 12px;
    font-size: 0.9rem;
  }
  .homeoverlay h3 a {
    font-size: 1rem;
  }
}

.promo-banner {
  width: 100%;
  background: linear-gradient(135deg, #00AEEF, #0072CE); /* tropical blue gradient */
  color: #fff;
  font-weight: bold;
  overflow: hidden;
}

.promo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 1.5em; /* height of one line */
  position: relative;
  min-height: 3em; /* flexible height for mobile */
}

.promo-text span {
  position: absolute;
  opacity: 0;
  animation: textLoop 16s infinite;
}

.promo-text span:nth-child(1) { animation-delay: 0s; }
.promo-text span:nth-child(2) { animation-delay: 4s; }
.promo-text span:nth-child(3) { animation-delay: 8s; }
.promo-text span:nth-child(4) { animation-delay: 12s; }

@keyframes textLoop {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  25%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}

.promo-text a {
  color: #fff;
  text-decoration: none;
}
.promo-text a:hover {
  text-decoration: underline;
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
  .promo-text a {
    font-size: 0.9rem;
  }
  .logo-img {
    max-height: 24px;
  }
}

@media (max-width: 480px) {
  .promo-text a {
    font-size: 0.8rem;
  }
  .logo-img {
    max-height: 20px;
    margin-right: 5px;
  }
}
.blog-post {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }


.ad-banner {
	width: 50vh;
	background: rgb(134, 136, 240);
	height:5em;
	overflow: hidden;
	display: flex;
	justify-content: flex-start;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	border-radius: .3em;
	
	&:hover {
		transform: scale(1.05);
		box-shadow: 0 5px 15px 10px rgba(0, 0, 0, 0.55);
	}
}

.shopping-image {
	height: auto;
	width: 20em/ 2;
	
	img {
		height: 5em;
		width: 20em / 2;
		object-fit: cover;
		border-radius: 0 2em 2em 0 / 0 3em 3em 0;
		box-shadow: 3px 5px 1px 3px darken(rgb(141, 150, 230), 20%);
	}
}

.home-ad {
  height: auto;
  position: relative;
  overflow: hidden;
}

.home-ad img {
  height: auto;
  transition: all 0.4s ease; /* smooth animation */
  border-radius: 8px;        /* optional: rounded corners */
}

.home-ad img:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  box-shadow: 0 12px 24px rgba(0, 114, 255, 0.5);
  transform: scale(1.05) rotate(1deg); /* zoom + slight tilt */
  filter: brightness(1.1) saturate(1.2); /* pop the colors */
  cursor: pointer; /* shows it's clickable */
}

@media (max-width: 768px) {
  .homeoverlay h3 {
    font-size: 1.2rem;   /* smaller text on tablets */
  }
}

@media (max-width: 480px) {
  .homeoverlay h3 {
    font-size: 1rem;     /* even smaller text on phones */
  }
}

.homepage-price{
  color: #B8860B;
}

.guides-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }


  
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    width: 100%;
    max-width: 1900px;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}


.close-btn {
    position: absolute;
    top: 14px;
    right: 14px;

    /* Bigger button */
    width: 52px;
    height: 52px;

    /* Modern circular style */
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);

    /* Bigger cross */
    font-size: 34px;
    font-weight: 700;
    color: #222;

    /* Center the X perfectly */
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    /* Modern shadow + smooth animation */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: #ff4d4f;
    color: white;
    transform: scale(1.12);
}

.close-btn:active {
    transform: scale(0.95);
}

.center-wrapper { 
  max-width: 900px; /* controls width */ 
  margin: 0 auto; /* centers horizontally */ 
  text-align: center; /* centers text + inline elements */ } /* Keep main text left-aligned for readability */ 
  
  .guide-content { 
    text-align: left; 
    margin: 0 auto; 
    max-width: 800px; 
  } /* Center media */ 
  
  .media-section { 
    margin: 0 auto; 
    max-width: 900px;
   }

.media-item {
    width: 100%;            /* always scale to container */
    max-width: 900px;       /* large on desktop */
    max-height: 700px;      /* limit height on large screens */
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    display: block;
    margin: 0 auto;
}

/* Tablet */
@media (max-width: 992px) {
    .media-item {
        max-width: 700px;
        max-height: 600px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .media-item {
        max-width: 100%;
        max-height: 460px;
        border-radius: 12px;
    }
}


.guide-card-img {
    width: 100%;
    max-width: 900px;
    max-height: 600px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    margin: 0 auto;
    position: relative;
}

.guide-card-img img,
.guide-card-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;   /* keep the top visible */
    display: block;
}


 :root {
      --primary: #b21e22;
      --dark: #222;
      --light: #f7f7f7;
      --accent: #e0b96b;
      --text: #333;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background-color: #ffffff;
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 16px 48px;
    }

    header.page-header {
      text-align: center;
      margin-bottom: 32px;
    }

    .page-kicker {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 12px;
      color: var(--primary);
      font-weight: 600;
    }

    .page-title {
      font-size: 32px;
      margin: 8px 0 12px;
      color: var(--dark);
    }

    .page-subtitle {
      max-width: 720px;
      margin: 0 auto;
      color: #666;
      font-size: 15px;
    }

    .tagline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background-color: var(--light);
      font-size: 12px;
      color: #777;
      margin-top: 10px;
    }

    .tagline-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--accent);
    }

    /* Layout sections */
    section {
      margin-bottom: 40px;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 16px;
      gap: 12px;
      flex-wrap: wrap;
    }

    .section-title {
      font-size: 22px;
      color: var(--dark);
    }

    .section-subtitle {
      font-size: 13px;
      color: #777;
    }

    /* Culture highlight strip */
    .culture-intro {
      background: linear-gradient(135deg, #faf4ea 0%, #fff 52%, #f7f7f7 100%);
      border-radius: 16px;
      padding: 20px 20px 18px;
      border: 1px solid #f0e2c7;
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: 18px;
    }

    .culture-intro-text h3 {
      margin: 0 0 8px;
      font-size: 18px;
      color: var(--dark);
    }

    .culture-intro-text p {
      margin: 0 0 8px;
      font-size: 14px;
      color: #555;
    }

    .culture-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 6px;
    }

    .culture-tag {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 999px;
      background-color: rgba(178, 30, 34, 0.06);
      color: var(--primary);
      border: 1px solid rgba(178, 30, 34, 0.2);
      white-space: nowrap;
    }

    .culture-intro-fact {
      font-size: 13px;
      padding: 10px 12px;
      border-radius: 12px;
      background-color: rgba(0, 0, 0, 0.03);
      color: #555;
    }

    .culture-intro-fact strong {
      color: var(--primary);
    }

    /* Photo grid */
    .media-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .media-item-card {
      position: relative;
      overflow: hidden;
      border-radius: 14px;
      background-color: #f4f4f4;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
      cursor: pointer;
    }

    .media-item-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
    }

    .media-thumb {
      width: 100%;
      height: 500px;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .media-label {
      position: absolute;
      left: 10px;
      top: 10px;
      padding: 4px 10px;
      font-size: 11px;
      background-color: rgba(0, 0, 0, 0.62);
      color: #fff;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .media-caption {
      padding: 10px 12px 12px;
      font-size: 13px;
      color: #555;
    }

    .media-caption-title {
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 4px;
    }

    /* Video section */
    .video-section-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: 18px;
      align-items: flex-start;
    }

    .video-main {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
      background-color: #000;
    }

    .video-main video {
      width: 100%;
      height: 100%;
      max-height: 420px;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    .video-main iframe {
      width: 100%;
      height: 100%;
      min-height: 260px;
      border: 0;
      display: block;
    }

    .video-meta {
      padding: 12px 14px;
      background: linear-gradient(135deg, #0b0b0b, #222);
      color: #eee;
      font-size: 13px;
    }

    .video-meta h3 {
      margin: 0 0 4px;
      font-size: 15px;
      color: #fff;
    }

    .video-meta small {
      color: #cfcfcf;
    }

    .video-list {
      display: grid;
      gap: 10px;
    }

    .video-list-item {
      display: grid;
      grid-template-columns: 110px minmax(0, 1fr);
      gap: 10px;
      padding: 8px;
      border-radius: 12px;
      background-color: #fafafa;
      border: 1px solid #eee;
    }

    .video-thumb {
      width: 100%;
      height: 70px;
      border-radius: 10px;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .video-details-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 2px;
    }

    .video-details-meta {
      font-size: 11px;
      color: #777;
      margin-bottom: 2px;
    }

    .video-details-desc {
      font-size: 11px;
      color: #777;
    }

    /* Responsive */
    @media (max-width: 960px) {
      .culture-intro {
        grid-template-columns: minmax(0, 1fr);
      }
      .video-section-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .page-title {
        font-size: 24px;
      }
      .media-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .media-thumb {
        height: 190px;
      }
      .video-main video {
        max-height: 260px;
      }
      .video-main iframe {
        min-height: 220px;
      }
      .video-list-item {
        grid-template-columns: 100%;
      }
    }

.modern-details-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #4e8cff, #0066ff);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.modern-details-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.35);
    background: linear-gradient(135deg, #0066ff, #004bcc);
}

.modern-details-btn:active {
    transform: scale(0.97);
}

.guide-content { 
  background: #ffffff; 
  padding: 20px 24px; 
  border-radius: 12px; 
  line-height: 1.7; 
  font-size: 1.2rem; 
  color: #333; 
  box-shadow: 0 4px 14px rgba(0,0,0,0.08); 
  border: 1px solid #f0f0f0; 
  transition: all 0.3s ease; } /* Smooth hover lift */ 
  
  .guide-content:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.12); 
  }
  
.guide-card {
    display: flex;
    flex-direction: column;
}



/* Page spacing */
.category-section {
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.category-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: left;
}

/* Carousel container */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Track */
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}


/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0008;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  font-size: 20px;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* ============================
   RESPONSIVE BEHAVIOR
============================= */

/* Mobile: 1 item */
@media (max-width: 600px) {
  .media-item-card {
    min-width: 85%;
  }
}

/* Tablet: 2 items */
@media (min-width: 601px) and (max-width: 900px) {
  .media-item-card {
    min-width: 45%;
  }
}

/* Desktop: 3–4 items */
@media (min-width: 901px) {
  .media-item-card {
    min-width: 30%;
  }
}
