/* —— RESET & BASE —— */
*,
*::before,
*::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background: #FCFBF6;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* —— VARIABLES —— */
:root {
  --color-primary:   #FF7A00;
  --color-secondary: #7A301E;
  --bg-1:            #FCFBF6;
  --text-2:          #666666;
  --border-line:     #D8C4B0;
  --radius-card:     12px;
  --radius-btn:      4px;
  --max-width:       1200px;
  --spacing:         16px;
}

/* —— CONTAINER —— */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing) 0;
}

/* —— NAVBAR —— */
.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.5rem; font-weight: 700; color: var(--color-secondary);
}
.nav-menu {
  list-style: none;
  display: flex; 
  gap: 2rem;
  
}
.nav-menu a {
  font-weight: 500; color: #333;
}
.contact-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius);
  color: var(--color-primary);
  font-weight: 500;
}
.contact-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* —— HERO —— */
.hero {
  padding: 4rem 0 0;          
  background: var(--bg-1);
}
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-card);
}
.hero-slider .slides {
  position: relative;
  width: 100%; height: 100%;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.hero-slider .slide.active {
  opacity: 1;
}
.hero-slider .slide-content {
  position: relative;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-slider .slide-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-slider .slide-content .btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  cursor: pointer;
}

/* arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 3rem; height: 3rem;
  border-radius: var(--radius-btn);
  cursor: pointer;
  z-index: 2;
}
.hero-arrow.prev { left: 1rem; }
.hero-arrow.next { right: 1rem; }
.hero-arrow:hover {
  background: rgba(255,255,255,0.2);
}

/* dots */
.hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.hero-dots .dot {
  width: 0.75rem; height: 0.75rem;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s;
}
.hero-dots .dot.active {
  opacity: 1;
}


/* —— ABOUT —— */
.overline {
  display: block;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25rem;
  margin-bottom: 0.5em;
  text-align: center;
}
.about {
  background: var(--bg-1);
  text-align: center;
  padding: 4rem 0;
}
.about h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-2);
  line-height: 1.6;
}
.about-video {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.about-video img { width: 100%; }
.play-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: var(--color-secondary);
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.25rem;
}

/* —— SEPARATOR —— */
.section-separator {
  border: none;
  border-top: 2px solid var(--border-line);
  margin: 4rem auto 0;
  width: 90%;
}

/* —— STATS —— */
.stats { background: #fafafa; padding: 4rem 0; }
.stats-container {
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between;
}
.stat-item {
  flex: 1 1 150px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}
.stat-item p { color: var(--text-2); }

/* Desert Safari Section */
.desert-safari {
  background: var(--color-secondary);
  color: #fff;
  padding: 4rem 0;
}
.desert-safari .overline {
  color: #F5EDE4;
}
.desert-safari h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0.5em 0;
}
.desert-safari .intro-text {
  color: #FFEFE2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.button-desert{
    color: #fff;
    background-color: #FF7A00;
    padding: 0.5rem 0.5rem;
    border-color: #FF7A00;
    border-radius: 5%;   
}
/* Slider layout */
.cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cards-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  padding-bottom: 0.5rem;
}
.cards-container::-webkit-scrollbar { display: none; }
.cards-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cards-container.active { cursor: grabbing; }

/* Arrow buttons */
.nav-arrow {
  flex-shrink: 0;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-btn);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-arrow:hover {
  background: rgba(255,255,255,0.2);
}

/* Card base */
.card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-btn);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 280px;
}

/* Badge */
.card__badge {
  position: absolute;
  top: 0; left: 0;
  background: #0052CC;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom-right-radius: var(--radius-btn);
  z-index: 1;
}

/* Body & footer */
.card img {
  width: 100%;
  display: block;
}
.card__body {
  padding: var(--spacing);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__body h3 {
  color: #333;
  margin-bottom: 0.5rem;
}
.card__meta {
  color: var(--text-2);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.card__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card__price {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.desert-safari .btn-outline-light {
  background: #fff;
  color: #333;
  border: 1px solid #333;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
}

/* —— CARD —— */
.card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-btn);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.card img { width: 100%; height: auto; display: block; }
.card__badge {
  position: absolute;
  top: 0; left: 0;
  background: #0052CC;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom-right-radius: var(--radius-btn);
  z-index: 1;
}
.card__body {
  padding: var(--spacing);
  display: flex; flex-direction: column; flex: 1;
}
.card__body h3 {
  margin-bottom: 0.5rem;
  color: #333;
}
.card__meta {
  color: var(--text-2);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.card__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-line);
  display: flex; justify-content: space-between; align-items: center;
}
.card__price {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

/* —— VIEW ALL BUTTON —— */
.center {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: #fff;
  color: var(--color-secondary);
}
/* —— SIGHTSEEING TOURS SECTION —— */
.tours {
  background: var(--bg-1);
  padding: 4rem 0;
}

.tours .overline {
  display: block;
  text-align: center;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.tours h2 {
  text-align: center;
  color: #333;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.tours p {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: var(--text-2);
  text-align: center;
  line-height: 1.6;
}

/* grid of two cards */
.tours-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tour-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  padding: 15px;
}
.tour-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
}


.tour-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
}
.tour-info h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.tour-info .btn {
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-btn);
  font-weight: 500;
}


.center {
  text-align: center;
}


.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}
/* —— COMBO TOURS —— */
.combo-tours {
  background-color:#D8C4B0 ; 
  padding: 4rem 0;
}

.combo-tours .overline {
  display: block;
  text-align: center;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.combo-tours h2 {
  text-align: center;
  color: #333;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.combo-tours p {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: var(--text-2);
  text-align: center;
  line-height: 1.6;
}

/* —— GRID LAYOUT —— */
.combo-grid {
  display: grid;
  /* three columns with equal gap */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;             
  margin-bottom: 2rem;
}

/* —— CARD BASE —— */
.combo-card {
  background: #fff;
  border-radius: 0;      
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

/* fixed-height images */
.combo-card img {
  width: 100%;
  height: 260px;         
  object-fit: cover;     
  display: block;
}

/* —— INFO BLOCK —— */
.combo-info {
  padding: var(--spacing);
  
  flex-direction:column;
  flex: 1;
}

.combo-info h3 {
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1.125rem;
}

.combo-meta {
  color: var(--text-2);
  font-size: 0.875rem;
  margin: 0.5rem 0 1rem;
  border-top: 1px solid var(--border-line);
  padding-top: 0.5rem;
}

/* —— CARD FOOTER —— */
.combo-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.combo-price {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

/* —— BOOK NOW BUTTON —— */
.combo-book-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  cursor: pointer;
}
.combo-book-btn:hover {
  opacity: 0.9;
}

/* —— CENTERED VIEW ALL —— */
.combo-tours .center {
  text-align: center;
  margin-top: 1rem;
}

/* outline button already in your CSS */
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-btn);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}
/* —— DINNER CRUISE SECTION —— */
.dining-cruise {
  background: var(--bg-1);
  padding: 4rem 0;
}
.dining-cruise .overline {
  display: block;
  text-align: center;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.dining-cruise h2 {
  text-align: center;
  font-size: 2.25rem;
  color: #333;
  margin-bottom: 1rem;
}
.dining-cruise .intro-text {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-2);
  text-align: center;
  line-height: 1.6;
}

/* —— GRID OF CARDS —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* —— CARD STYLE —— */
.card {
  background: #fff;
  border: 1px solid var(--border-line);
  border-radius: 0;    
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  flex: 1 1 calc(33.333% - 20px);
}


.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}


.card-body {
  padding: var(--spacing);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 {
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1.125rem;
}
.card-meta {
  color: var(--text-2);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}


.card-divider {
  border: none;
  border-top: 1px solid var(--border-line);
  margin: 0.5rem 0 1rem;
}


.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-price {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
}


.btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.9;
}


.dining-cruise .center {
  text-align: center;
}
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-btn);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}
/* —— TESTIMONIALS —— */

/* —— TESTIMONIALS —— */
.testimonials-slider {
  background-color: #7A301E;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.testimonials-slider .subtitle {
  color: #F5EDE4;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonials-slider h2 {
  margin-bottom: 2rem;
}

/* Scrollable container */
.testimonials-slider .cards-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0 1rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.testimonials-slider .cards-container::-webkit-scrollbar {
  display: none;
}
.testimonials-slider .cards-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Card styling */
.testimonials-slider .card {
  background: #fff;
  color: #333;
  padding: 1.25rem;
  border-radius: 12px;
  min-width: 280px;
  max-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonials-slider .card p:first-of-type {
  color: #FFD700;
  margin-bottom: 0.5em;
  font-size: 1.1rem;
}

.testimonials-slider .card p:last-of-type {
  margin-bottom: 1em;
  font-size: 0.95rem;
  line-height: 1.5;
}

.testimonials-slider .card h4 {
  margin-top: auto;
  font-weight: 600;
  color: #7A301E;
}

/* Responsive: Slightly wider cards on smaller devices */
@media (max-width: 768px) {
  .testimonials-slider .cards-container {
    padding: 1rem;
  }

  .testimonials-slider .card {
    min-width: 85vw;
    max-width: 90vw;
  }
}

/* —— FOOTER —— */
.site-footer {
  background: var(--bg-light);
  padding-top: var(--spacing);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(150px,1fr));
  gap: var(--spacing);
  padding-bottom: var(--spacing);
}
.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
}
.footer-col h4 {
  margin-bottom: 0.5em;
  color: var(--color-secondary);
}
.footer-col a {
  display: block;
  margin-bottom: 0.25em;
  color: #333;
  font-size: 0.9rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing) 0;
  font-size: 0.85rem;
  color: #999;
}
.footer-bottom .social img {
  width: 1.25rem;
  margin-left: var(--spacing);
}
.social {
  display: flex;
  align-items: center;
  gap: 0.5rem;      
}
/* —— RESPONSIVE —— */
@media (max-width: 768px) {
  .detail-hero { grid-template-columns: 1fr; }
  .includes-grid,
  .notes-grid { grid-template-columns: 1fr; }
  .testimonial-cards { flex-direction: column; }
}

/* Tablet (≤992px) */
@media (max-width: 992px) {
  .hero-slider .slide-content h1 {
    font-size: 2rem;
  }

  .stats-container {
    gap: 1rem;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav,
  .detail-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .cards-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .hero-slider {
    aspect-ratio: 4/3;
  }

  .hero-slider .slide-content h1 {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .cards-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .social {
    justify-content: center;
  }

  .hero-arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }

  .hero-dots .dot {
    width: 0.5rem;
    height: 0.5rem;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }

  .combo-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-secondary);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu,
  .contact-btn {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: left;
    margin-top: 0.5rem;
  }

  .nav-menu.show,
  .contact-btn.show {
    display: flex;
  }

  .nav-menu {
    gap: 0.5rem;
  }
}

.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hamburger icon styling */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-secondary);
}

/* Responsive navbar layout */
@media (max-width: 768px) {
  .nav-menu,
  .contact-btn {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-menu.show,
  .contact-btn.show {
    display: flex;
  }

  .hamburger {
    display: block;
    margin-left: auto; 
  }

  .detail-header {
    flex-wrap: wrap; 
  }

  .logo {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  .logo {
    flex: 0 0 auto;
    justify-content: flex-start;
    text-align: left;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    color: var(--color-secondary);
    cursor: pointer;
  }

  .nav-menu,
  .contact-btn {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: left;
    margin-top: 1rem;
  }

  .nav-menu.show,
  .contact-btn.show {
    display: flex;
  }
}

/* Force header layout */
.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Logo must NOT be centered */
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.logo img {
  display: block;
  height: 50px;
  margin: 0;
  padding: 0;
}
