@import url("./header.css");
@import url("./navbar.css");
@import url("./footer.css");
@import url("./contact-expert.css");

:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #bb9a49; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1a1a1a; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff;
  font-family: var(--heading-font);
}

/* Global body background */
body {
  background-color: #000000;
}
.justify-content-center{
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
}
/* ---------------------------------------------
   HERO SECTION
--------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 350px;

  /* background-image is set per page inline */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 80px;
  max-width: 900px;
}

.hero-content h1 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-family: McQueen;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 280px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 240px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}
/*--------------------------------------------------------------
# Travel Destination Details Section
--------------------------------------------------------------*/
.travel-destination-details .destination-hero {
  margin-bottom: 120px;
  position: relative;
}

.travel-destination-details .destination-hero .hero-content2 {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 60px;
}

.travel-destination-details .destination-hero .hero-content2 .destination-name {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-hero .hero-content2 .destination-name {
    font-size: 2.5rem;
  }
}

.travel-destination-details .destination-hero .hero-content2 .destination-tagline {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.travel-destination-details .destination-hero .hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.travel-destination-details .destination-hero .hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-hero .hero-image img {
    height: 350px;
  }
}

.travel-destination-details .destination-hero .hero-image:hover img {
  transform: scale(1.02);
}

.travel-destination-details .destination-overview {
  margin-bottom: 120px;
}

.travel-destination-details .destination-overview .overview-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-overview .overview-content h2 {
    font-size: 2rem;
  }
}

.travel-destination-details .destination-overview .overview-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.travel-destination-details .destination-overview .overview-content p:last-child {
  margin-bottom: 0;
}

.travel-destination-details .destination-overview .overview-image {
  border-radius: 8px;
  overflow: hidden;
}

.travel-destination-details .destination-overview .overview-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-overview .overview-image img {
    height: 300px;
  }
}

.travel-destination-details .destination-highlights {
  margin-bottom: 120px;
}

.travel-destination-details .destination-highlights .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.travel-destination-details .destination-highlights .section-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-highlights .section-header h2 {
    font-size: 2rem;
  }
}

.travel-destination-details .destination-highlights .section-header p {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.travel-destination-details .destination-highlights .highlight-item {
  height: 100%;
}

.travel-destination-details .destination-highlights .highlight-item .highlight-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.travel-destination-details .destination-highlights .highlight-item .highlight-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-destination-details .destination-highlights .highlight-item .highlight-image:hover img {
  transform: scale(1.05);
}

.travel-destination-details .destination-highlights .highlight-item .highlight-content h4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.travel-destination-details .destination-highlights .highlight-item .highlight-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.travel-destination-details .available-tours {
  margin-bottom: 120px;
}

.travel-destination-details .available-tours .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.travel-destination-details .available-tours .section-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .travel-destination-details .available-tours .section-header h2 {
    font-size: 2rem;
  }
}

.travel-destination-details .available-tours .section-header p {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .available-tours .tour-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.travel-destination-details .available-tours .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-destination-details .available-tours .tour-card .tour-image {
  position: relative;
  overflow: hidden;
}

.travel-destination-details .available-tours .tour-card .tour-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-destination-details .available-tours .tour-card .tour-image .tour-duration {
  position: absolute;
  top: 20px;
  right: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.travel-destination-details .available-tours .tour-card .tour-image:hover img {
  transform: scale(1.1);
}

.travel-destination-details .available-tours .tour-card .tour-content {
  padding: 30px;
}

.travel-destination-details .available-tours .tour-card .tour-content h4 {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.travel-destination-details .available-tours .tour-card .tour-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.travel-destination-details .available-tours .tour-card .tour-content .tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.travel-destination-details .available-tours .tour-card .tour-content .tour-meta .tour-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
}

.travel-destination-details .available-tours .tour-card .tour-content .tour-meta .tour-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffc107;
}

.travel-destination-details .available-tours .tour-card .tour-content .tour-meta .tour-rating span {
  color: var(--default-color);
  font-weight: 500;
}

.travel-destination-details .available-tours .tour-card .tour-content .btn-tour {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.travel-destination-details .available-tours .tour-card .tour-content .btn-tour:hover {
  color: var(--heading-color);
  gap: 12px;
}

.travel-destination-details .available-tours .tour-card .tour-content .btn-tour i {
  transition: transform 0.3s ease;
}

.travel-destination-details .available-tours .tour-card .tour-content .btn-tour:hover i {
  transform: translateX(3px);
}

.travel-destination-details .practical-info {
  margin-bottom: 120px;
}

.travel-destination-details .practical-info .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.travel-destination-details .practical-info .section-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .travel-destination-details .practical-info .section-header h2 {
    font-size: 2rem;
  }
}

.travel-destination-details .practical-info .section-header p {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .practical-info .info-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.travel-destination-details .practical-info .info-item {
  display: flex;
  gap: 20px;
}

.travel-destination-details .practical-info .info-item .info-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.travel-destination-details .practical-info .info-item .info-content h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.travel-destination-details .practical-info .info-item .info-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.travel-destination-details .destination-gallery {
  margin-bottom: 120px;
}

.travel-destination-details .destination-gallery .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.travel-destination-details .destination-gallery .section-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-gallery .section-header h2 {
    font-size: 2rem;
  }
}

.travel-destination-details .destination-gallery .section-header p {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .destination-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-gallery .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.travel-destination-details .destination-gallery .gallery-grid .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.travel-destination-details .destination-gallery .gallery-grid .gallery-item.large {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-gallery .gallery-grid .gallery-item.large {
    grid-row: span 1;
  }
}

.travel-destination-details .destination-gallery .gallery-grid .gallery-item a {
  display: block;
  height: 100%;
}

.travel-destination-details .destination-gallery .gallery-grid .gallery-item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-gallery .gallery-grid .gallery-item a img {
    height: 250px;
  }
}

.travel-destination-details .destination-gallery .gallery-grid .gallery-item a:hover img {
  transform: scale(1.05);
}

.travel-destination-details .destination-cta {
  text-align: center;
  padding: 80px 0;
  background: #121212;
  border-radius: 8px;
  margin-bottom: 60px;
}

.travel-destination-details .destination-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.travel-destination-details .destination-cta .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-cta .cta-content h2 {
    font-size: 2rem;
  }
}

.travel-destination-details .destination-cta .cta-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.travel-destination-details .destination-cta .cta-content .cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 576px) {
  .travel-destination-details .destination-cta .cta-content .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

.travel-destination-details .destination-cta .cta-content .cta-actions .btn-primary,
.travel-destination-details .destination-cta .cta-content .cta-actions .btn-outline {
  padding: 15px 35px;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.travel-destination-details .destination-cta .cta-content .cta-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.travel-destination-details .destination-cta .cta-content .cta-actions .btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
}

.travel-destination-details .destination-cta .cta-content .cta-actions .btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.travel-destination-details .destination-cta .cta-content .cta-actions .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Travel Tours Section
--------------------------------------------------------------*/
.travel-tours {
  color: var(--default-color);
}

.travel-tours .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .travel-tours .hero-title {
    font-size: 2.5rem;
  }
}

.travel-tours .hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 0;
}

.travel-tours .search-container {
  background: var(--surface-color);
  border-radius: 60px;
  padding: 1rem;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
}

.travel-tours .search-container .search-bar {
  position: relative;
  margin-bottom: 1.5rem;
}

.travel-tours .search-container .search-bar .form-control {
  border: none;
  background: transparent;
  font-size: 1.125rem;
  padding: 1.25rem 4rem 1.25rem 1.5rem;
  color: #ffffff;
}

.travel-tours .search-container .search-bar .form-control:focus {
  box-shadow: none;
  background: transparent;
}

.travel-tours .search-container .search-bar .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.travel-tours .search-container .search-bar .search-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.travel-tours .search-container .search-bar .search-btn:hover {
  transform: translateY(-50%) scale(1.05);
  background: color-mix(in srgb, var(--accent-color), #000 10%);
}

.travel-tours .search-container .search-bar .search-btn i {
  font-size: 1.25rem;
}

.travel-tours .search-container .filter-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.travel-tours .search-container .filter-pills .filter-pill {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-tours .search-container .filter-pills .filter-pill:hover,
.travel-tours .search-container .filter-pills .filter-pill.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.travel-tours .featured-hero-tour {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  padding: 3rem;
}

@media (max-width: 992px) {
  .travel-tours .featured-hero-tour {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.travel-tours .featured-hero-tour .featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .travel-tours .featured-hero-tour .featured-image img {
    height: 300px;
  }
}

.travel-tours .featured-hero-tour .featured-content .featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.travel-tours .featured-hero-tour .featured-content h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .travel-tours .featured-hero-tour .featured-content h3 {
    font-size: 2rem;
  }
}

.travel-tours .featured-hero-tour .featured-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span.rating {
  color: var(--accent-color);
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span.rating i {
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-price {
  margin-bottom: 2rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-price .from {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-tours .featured-hero-tour .featured-content .featured-price .amount {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-left: 0.5rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 576px) {
  .travel-tours .featured-hero-tour .featured-content .featured-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.travel-tours .section-subtitle {
  font-size: 2rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: center;
}

.travel-tours .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.travel-tours .categories-grid .category-item {
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-tours .categories-grid .category-item:hover {
  transform: translateY(-5px);
}

.travel-tours .categories-grid .category-item:hover .category-visual img {
  transform: scale(1.05);
}

.travel-tours .categories-grid .category-item .category-visual {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.travel-tours .categories-grid .category-item .category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-tours .categories-grid .category-item h5 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.travel-tours .categories-grid .category-item .tour-count {
  font-size: 0.95rem;
  color: #ffffff;
}

.travel-tours .tours-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.travel-tours .tours-header .view-toggle {
  display: flex;
  gap: 0.5rem;
}

.travel-tours .tours-header .view-toggle .toggle-btn {
  padding: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: transparent;
  border-radius: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.travel-tours .tours-header .view-toggle .toggle-btn.active,
.travel-tours .tours-header .view-toggle .toggle-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-tours .tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.travel-tours .tours-grid .tour-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.travel-tours .tours-grid .tour-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-tours .tours-grid .tour-item:hover .tour-image img {
  transform: scale(1.03);
}

.travel-tours .tours-grid .tour-item .tour-image {
  position: relative;
  overflow: hidden;
}

.travel-tours .tours-grid .tour-item .tour-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.travel-tours .tours-grid .tour-item .tour-image .tour-availability {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  backdrop-filter: blur(10px);
  color: var(--default-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.travel-tours .tours-grid .tour-item .tour-details {
  padding: 2rem;
}

.travel-tours .tours-grid .tour-item .tour-details h4 {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.travel-tours .tours-grid .tour-item .tour-details p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights span i {
  color: var(--accent-color);
  font-size: 0.875rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing .price {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--accent-color);
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing .per {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-tours .offers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.travel-tours .offers-container .offer-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.travel-tours .offers-container .offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-tours .offers-container .offer-card .offer-image {
  height: 200px;
  overflow: hidden;
}

.travel-tours .offers-container .offer-card .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-tours .offers-container .offer-card .offer-content {
  padding: 2rem;
}

.travel-tours .offers-container .offer-card .offer-content .offer-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.travel-tours .offers-container .offer-card .offer-content h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.travel-tours .offers-container .offer-card .offer-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.travel-tours .offers-container .offer-card .offer-content .offer-validity {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.travel-tours .consultation-cta {
  text-align: center;
  background: var(--surface-color);
  padding: 4rem 3rem;
  border-radius: 20px;
}

.travel-tours .consultation-cta h3 {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.travel-tours .consultation-cta p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.travel-tours .consultation-cta .cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .travel-tours .consultation-cta .cta-actions {
    flex-direction: column;
  }
}

.travel-tours .btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.travel-tours .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.travel-tours .btn-accent {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  border: none;
  color: var(--contrast-color);
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.travel-tours .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.travel-tours .btn-text {
  background: transparent;
  border: none;
  color: #000000;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.travel-tours .btn-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #BB9A49;
  transition: width 0.3s ease;
}

.travel-tours .btn-text:hover {
  color: #BB9A49;
}

.travel-tours .btn-text:hover::after {
  width: 100%;
}


/* ---------------------------------------------
   PACKAGE CARDS
--------------------------------------------- */
.package-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.package-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d4af37;
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.package-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 56px;
}

.package-route {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}

.package-route span {
  color: #d4af37;
  font-weight: 500;
}

.package-route i {
  font-size: 10px;
  color: #666;
}

.package-activities {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 8px;
}

.activity-item i {
  color: #ffffff;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Package card button */
.package-card .btn-primary {
  background: #bb9a49;
  border: none;
  color: #000;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.package-card .btn-primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Package Card Responsive */
@media (max-width: 768px) {
  .package-card {
    margin-bottom: 20px;
  }

  .package-title {
    font-size: 18px;
    min-height: auto;
  }

  .package-route {
    font-size: 12px;
  }
}