/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  line-height: 1.55;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(90%, 1180px);
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: #ff6d28;
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  border: 1px solid #ff6d28;
  color: #ff6d28;
  background: transparent;
}

.btn-secondary:hover {
  background: #ff6d28;
  color: #fff;
}

/* Logo */
.logo {
  font-weight: 700;
  font-size: 24px;
  line-height: 0.9;
  text-transform: uppercase;
  color: #ff6d28;
}

/* ========== HEADER ========== */
.site-header {
  padding: 20px 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  position: relative;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* opened state */
.nav-open .hamburger {
  background: transparent;
}

.nav-open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.text-link {
  font-weight: 500;
}

/* ========== HERO SECTION ========== */
.hero-section {
  padding-block: 40px 80px;
  background: #fff6f0;
}

/* Compact hero for inner pages (about/contact/privacy) */
.hero-section--compact {
  padding-block: 26px 54px;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 20px;
}

.hero-text .accent {
  color: #ff6d28;
}

.search-form {
  display: flex;
  max-width: 320px;
  margin-bottom: 20px;
}

.search-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.search-form button {
  border-radius: 0 6px 6px 0;
  border: none;
}

.hero-gallery {
  display: flex;
  gap: 16px;
}

.hero-gallery {
  display: flex;
  gap: 24px;
}

.hero-gallery-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.hero-gallery-left img,
.hero-gallery-right {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.hero-gallery-left img {
  height: 260px;
}

.hero-gallery-right {
  width: 0;
  flex-grow: 1;
  height: 550px;
}

.hero-section--compact .hero-gallery-left img {
  height: 200px;
}

.hero-section--compact .hero-gallery-right {
  height: 410px;
}

/* ========== EXPERIENCE SECTION ========== */
.experience-section {
  padding-block: 80px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.experience-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  overflow: initial;
}

.exp-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
}

.exp-card img {
  height: 160px;
  object-fit: cover;
  width: 100%;
}

.exp-content {
  padding: 16px;
}

.exp-content h4 {
  font-size: 16px;
  font-weight: 600;
  min-height: 48px;
}

.exp-content .meta {
  font-size: 12px;
  color: #777;
  margin: 4px 0;
}

.rating {
  font-size: 14px;
  color: #ff6d28;
  font-weight: 500;
}

/* ALT Background */
.alt-bg {
  background: #fafafa;
}

/* ========== FEATURES SECTION ========== */
.features-section {
  padding-block: 80px;
}

.features-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.features-list h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.features-list ul li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
}

.bullet {
  color: #ff6d28;
  font-weight: 600;
}

.features-img {
  width: 100%;
  border-radius: 14px;
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-section {
  padding-block: 80px;
  background: #fff6f0;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: center;
  gap: 60px;
}

.testimonial-wrapper img {
  border-radius: 20px;
  height: 380px;
  object-fit: cover;
  width: 100%;
}

.testimonial-content h3 {
  font-size: 32px;
  color: #ff6d28;
  margin-bottom: 8px;
}

.author {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  color: #555;
}

/* ========== DESTINATIONS SECTION ========== */
.destinations-section {
  padding-block: 80px;
}

.destinations-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.dest-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.dest-card img {
  width: 280px;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.8);
}

.dest-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========== VIDEO BANNER ========== */
.video-banner {
  padding-block: 80px;
  background: #fafafa;
  text-align: center;
}

.video-banner h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.video-wrapper {
  position: relative;
  display: inline-block;
}

.video-wrapper img {
  border-radius: 20px;
  width: 520px;
  height: 340px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ff6d28;
  color: #fff;
  border: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ========== ATTRACTIONS GRID ========== */
.attractions-section {
  padding-block: 80px;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.attractions-grid img {
  border-radius: 14px;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* ========== SUBSCRIBE BANNER ========== */
.subscribe-banner {
  padding-block: 60px;
  background: #ff6d28;
  color: #fff;
}

.subscribe-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.subscribe-form {
  display: flex;
  width: 340px;
}

.subscribe-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
  font-size: 14px;
}

.subscribe-form button {
  border: none;
  border-radius: 0 6px 6px 0;
  background: #fff;
  color: #ff6d28;
  font-size: 20px;
  width: 56px;
}

/* ========== FOOTER ========== */
.site-footer {
  padding-block: 60px;
  background: #111;
  color: #eee;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo .logo {
  color: #ff6d28;
  font-size: 28px;
}

.footer-contact ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
  font-size: 24px;
}

/* ========== RESPONSIVE ========== */
/* Business License Image */
.license-wrap {
  margin-top: 40px;
  text-align: center;
}

.license-wrap h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.license-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 80px; /* Adjust based on header height */
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 0.3s ease;
    z-index: 100;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
  }

  .main-nav.is-open {
    transform: scale(1, 1);
  }
}

@media (max-width: 992px) {
  .hero-wrapper,
  .features-wrapper,
  .testimonial-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-gallery {
    justify-content: center;
  }

  .header-wrapper {
    flex-wrap: wrap;
  }

  .subscribe-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

 / *   B u s i n e s s   L i c e n s e   I m a g e   * / 
 . l i c e n s e - w r a p   { 
     m a r g i n - t o p :   4 0 p x ; 
     t e x t - a l i g n :   c e n t e r ; 
 } 
 
 . l i c e n s e - i m g   { 
     m a x - w i d t h :   1 0 0 % ; 
     h e i g h t :   a u t o ; 
     b o r d e r :   1 p x   s o l i d   # d d d ; 
     p a d d i n g :   1 0 p x ; 
     b o r d e r - r a d i u s :   8 p x ; 
     m a r g i n - t o p :   2 0 p x ; 
     m a x - w i d t h :   6 0 0 p x ;   / *   A d j u s t   a s   n e e d e d   * / 
 } 
 
 