/* ==========================================================================
   Nexus Experience Tourism LLC — Stylesheet
   ========================================================================== */

:root {
  /* Color palette */
  --color-primary-dark: #0F172A;
  --color-primary-navy: #1B365D;
  --color-accent: #2563EB;
  --color-accent-deep: #1D70B8;
  --color-bg: #FFFFFF;
  --color-bg-soft: #FBF6EF;
  --color-heading: #1A202C;
  --color-body: #4A5568;
  --color-border: #E7E9EE;

  /* Type */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Layout */
  --container-w: 1240px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin: 0 0 .5em;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.video-about {
  max-width: 340px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: block;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--color-accent-deep);
  margin-bottom: .25rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: var(--color-bg-soft);
}

.section--dark {
  background: var(--color-primary-dark);
  color: #CBD5E1;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(37, 99, 235, .6);
}

.btn--primary:hover {
  background: var(--color-accent-deep);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent-deep);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--color-primary-dark);
}

.btn--light:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.brand img {
  height: 95px;
  width: auto;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary-navy);
  line-height: 1.1;
}

.brand-text small {
  display: block;
  font-size: .55rem;
  letter-spacing: .12em;
  font-weight: 500;
  color: var(--color-body);
}

.main-nav {
  display: none;
}

.main-nav>ul {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-weight: 500;
  font-size: .95rem;
  color: var(--color-heading);
}

.main-nav a:hover {
  color: var(--color-accent);
}

.has-dropdown {
  position: relative;
}

.has-dropdown>a {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, .18);
  min-width: 180px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: all .2s ease;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: block;
  padding: .55rem .8rem;
  border-radius: 6px;
  font-size: .9rem;
}

.dropdown li a:hover {
  background: var(--color-bg-soft);
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: var(--color-primary-navy);
}

@media (min-width: 960px) {
  .main-nav {
    display: block;
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 24px 1.5rem;
  border-top: 1px solid var(--color-border);
  background: #ffffff;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: .6rem .8rem;
  font-weight: 500;
  /* color: var(--color-heading); */
}

.mobile-dropdown-wrap {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-dropdown-header a {
  flex: 1;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  padding: .6rem;
  font-size: .85rem;
  color: var(--color-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-dropdown-wrap.is-open .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding: 0 0 0 1rem;
  margin: 0;
  border-left: 2px solid var(--color-accent);
}

.mobile-dropdown-wrap.is-open .mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-top: .2rem;
  margin-bottom: .4rem;
}

.mobile-dropdown-menu li a {
  padding: .4rem 0.6rem;
  font-size: .9rem;
  font-weight: 400;
  color: var(--color-body);
}

.mobile-dropdown-menu li a:hover {
  color: var(--color-accent);
}

.mobile-nav .btn {
  margin-top: .5rem;
  align-self: flex-start;
}

/* ==========================================================================
   Floating widgets
   ========================================================================== */

.whatsapp-widget {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: .55rem .6rem .55rem 1rem;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, .3);
  font-weight: 600;
  font-size: .85rem;
  color: var(--color-heading);
}

.whatsapp-widget .icon-circle {
  width: 38px;
  height: 38px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.scroll-top {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 12px 30px -10px rgba(37, 99, 235, .6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: linear-gradient(180deg, #FDF8F1 0%, #FFFFFF 70%);
  background-image: url("../images/bg1.webp");
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.hero .container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.hero-copy p {
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-media img {
  border-radius: var(--radius-lg);
  /* box-shadow: 0 30px 60px -20px rgba(15, 23, 42, .35); */
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1.1fr 1fr;
  }
}

/* Feature strip */
.feature-strip {
  background: var(--color-primary-dark);
  padding: 2.2rem 0;
}

.feature-strip .container {
  display: grid;
  gap: 1.8rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #E2E8F0;
}

.feature-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-item h4 {
  color: #fff;
  margin-bottom: .15rem;
  font-size: 1rem;
}

.feature-item p {
  margin: 0;
  font-size: .85rem;
  color: #94A3B8;
}

@media (min-width: 760px) {
  .feature-strip .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Carousel / Cards
   ========================================================================== */

.carousel-wrap {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: .5rem;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .12);
  z-index: 5;
  cursor: pointer;
  transition: all .2s ease;
}

.carousel-arrow:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 6px 18px rgba(37, 99, 235, .35);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow--prev {
  left: -12px;
}

.carousel-arrow--next {
  right: -12px;
}

@media (min-width: 768px) {
  .carousel-arrow--prev {
    left: -20px;
  }

  .carousel-arrow--next {
    right: -20px;
  }
}

.activity-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  transition: transform .25s ease, box-shadow .25s ease;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -18px rgba(15, 23, 42, .25);
}

.activity-card .thumb {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.activity-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.activity-card:hover .thumb img {
  transform: scale(1.08);
}

.activity-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary-navy);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
}

.activity-card .body {
  padding: 1rem 1.1rem 1.2rem;
}

.activity-card h4 {
  font-size: 1rem;
  margin-bottom: .4rem;
}

.activity-card .meta {
  font-size: .8rem;
  color: #94A3B8;
}

/* Activities Grid for Destination Pages */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

.activity-card--full {
  flex: initial;
  width: 100%;
}

.card-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--color-border);
}

.btn--sm {
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
}

/* ==========================================================================
   About section
   ========================================================================== */

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-list li {
  display: flex;
  gap: .7rem;
  margin-bottom: .7rem;
  font-size: .95rem;
}

.about-list .check {
  color: var(--color-accent);
  flex-shrink: 0;
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, .3);
}

.about-media img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn span {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.4rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.2fr .8fr;
  }
}

/* ==========================================================================
   Destinations grid
   ========================================================================== */

.dest-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.4rem;
}

.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-card .label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, .75), transparent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 1rem;
}

@media (min-width: 700px) {
  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Emirates grid (destination sub-page) uses same card, 7 items */
.emirate-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.6rem;
}

@media (min-width: 700px) {
  .emirate-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 800px) {
  .testimonial-grid {
    grid-template-columns: .8fr 2fr;
    align-items: center;
  }
}

.review-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #fff;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 799px) {
  .review-summary {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
}

.review-summary .stars {
  color: #F5A623;
  letter-spacing: .1rem;
}

.review-summary .google {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .85rem;
}

.carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-heading);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0;
}

.carousel-arrow:hover {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.carousel-arrow--prev {
  left: 4px;
}

.carousel-arrow--next {
  right: 4px;
}

@media (min-width: 992px) {
  .carousel-arrow--prev {
    left: -14px;
  }

  .carousel-arrow--next {
    right: -14px;
  }
}

.review-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.25rem 1rem 0.25rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 80%;
  max-width: 300px;
  min-width: 240px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .review-card {
    flex: 0 0 280px;
    max-width: none;
    min-width: 0;
  }
}

@media (min-width: 640px) {
  .review-card {
    flex: 0 0 calc((100% - 1.2rem) / 2);
  }
}

@media (min-width: 992px) {
  .review-card {
    flex: 0 0 calc((100% - 2.4rem) / 3);
  }
}

.review-card .stars {
  color: #F5A623;
  font-size: .85rem;
  margin-bottom: .5rem;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem;
}

.review-card .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card .name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--color-heading);
}

.review-card p {
  font-size: .85rem;
  margin-bottom: 0;
  line-height: 1.55;
  color: var(--color-body);
}

.verified-badge {
  position: absolute;
  bottom: -10px;
  right: 14px;
  background: #16A34A;
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   Why choose us
   ========================================================================== */

.why-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-weight: 500;
}

.why-list .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}

.why-map {
  border: 1px dashed rgba(255, 255, 255, .25);
  border-radius: var(--radius-lg);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .4);
  font-size: .85rem;
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-grid {
  display: grid;
  gap: 1.8rem;
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -18px rgba(15, 23, 42, .2);
}

.blog-card .thumb {
  height: 190px;
  overflow: hidden;
}

.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.blog-card .date {
  font-size: .75rem;
  color: var(--color-accent-deep);
  font-weight: 600;
  margin-bottom: .4rem;
  display: block;
}

.blog-card h4 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.blog-card p {
  font-size: .85rem;
  margin-bottom: .8rem;
}

.blog-card .read-more {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-accent);
}

@media (min-width: 700px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Page banner (destination pages)
   ========================================================================== */

.page-banner {
  position: relative;
  padding: 5.5rem 0 3rem;
  background: linear-gradient(rgba(15, 23, 42, .55), rgba(15, 23, 42, .55)), var(--banner-img, url('../images/breadcrumb.jpg')) center/cover;
  color: #fff;
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 1.4rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--color-primary-navy);
  padding: .6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
}

.breadcrumb .sep {
  opacity: .6;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-primary-dark);
  color: #e5e9f0;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-grid h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.footer-brand img {
  height: 94px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: .9rem;
  max-width: 32ch;
}

.social-row {
  display: flex;
  gap: .7rem;
  margin-top: 1rem;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s ease;
}

.social-row a:hover {
  background: var(--color-accent);
}

.footer-links li {
  margin-bottom: .7rem;
  font-size: .9rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  gap: .6rem;
  margin-bottom: 1rem;
  font-size: .88rem;
  align-items: flex-start;
}

.footer-contact .ic {
  color: var(--color-accent);
  margin-top: .15rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.4rem 0;
  text-align: center;
  font-size: .82rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  }
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

/* ==========================================================================
   About Page Custom Layout (Matching Design)
   ========================================================================== */

.about-hero-banner {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  color: #fff;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.about-hero-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.about-hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}

.about-breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #1e293b;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  font-size: 0.88rem;
}

.about-breadcrumb-pill .breadcrumb-item {
  color: #cbd5e1;
  padding: 0.35rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease;
}

.about-breadcrumb-pill .breadcrumb-item:hover {
  color: #fff;
}

.about-breadcrumb-pill .breadcrumb-active {
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Main About Journey Grid */
.about-main-section {
  padding: 5rem 0;
}

.about-journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-journey-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 4.5rem;
  }
}

.about-journey-media {
  position: relative;
  min-height: 440px;
  display: flex;
  justify-content: flex-start;
}

.media-frame-bg {
  width: 75%;
  max-width: 340px;
  height: 380px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.18);
}

.img-top-skyline {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame-front {
  position: absolute;
  bottom: 0;
  left: 35%;
  width: 65%;
  max-width: 300px;
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  border: 7px solid #fff;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  z-index: 2;
}

.img-front-travelers {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Flight Path Illustration Elements */
.flight-path-svg {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  pointer-events: none;
  z-index: 1;
}

.path-plane-icon {
  position: absolute;
  top: 15%;
  right: -5px;
  color: #64748b;
  font-size: 1.1rem;
  transform: rotate(45deg);
  z-index: 3;
}

.path-pin-icon {
  position: absolute;
  bottom: 12%;
  left: 10px;
  color: #2563eb;
  font-size: 1.2rem;
  z-index: 3;
}

/* About Content Details */
.journey-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.22;
  margin-top: 0.4rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.journey-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.journey-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}

@media (min-width: 580px) {
  .journey-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.journey-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-box--green {
  background: rgba(20, 184, 166, 0.12);
  color: #0d9488;
}

.journey-feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.journey-feature-card p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

.btn--explore-dest {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.95rem 2rem;
  font-weight: 700;
}

/* Stats Counter Section */
.about-stats-section {
  background: #f8fafc;
  background-image: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.06) 0%, transparent 40%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 3.5rem 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

@media (min-width: 900px) {
  .about-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.stat-icon {
  font-size: 2.5rem;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-info h3 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.15rem;
  line-height: 1;
}

.stat-info span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.05em;
  display: block;
}

/* Reviewer Card Improvements */
.reviewer-meta {
  display: flex;
  flex-direction: column;
}

.reviewer-meta .name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.review-time {
  font-size: 0.72rem;
  color: #94a3b8;
}

.review-google-ic {
  margin-left: auto;
  color: #4285f4;
  font-size: 1.1rem;
}

.verified-ic {
  color: #2563eb;
  font-size: 0.85rem;
  margin-left: 0.2rem;
}

.avatar--orange {
  background: #ea580c !important;
}

.avatar--teal {
  background: #0d9488 !important;
}

/* ==========================================================================
   Site-Wide Entrance Animations & Motion System
   ========================================================================== */

/* --- 1. Luxury Site Entrance Preloader --- */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0.55s cubic-bezier(0.77, 0, 0.175, 1),
    transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo-wrap {
  position: relative;
  width: 140px;
  animation: preloaderPulse 1.6s ease-in-out infinite alternate;
}

.preloader-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(37, 99, 235, 0.2));
}

.preloader-progress-bar {
  width: 160px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #2563EB, #3B82F6, #60A5FA);
  border-radius: 99px;
  animation: preloaderFill 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 3.5px;
  color: #334155;
  text-transform: uppercase;
  font-weight: 700;
  animation: fadeInText 0.8s ease forwards;
}

@keyframes preloaderPulse {
  0% {
    transform: scale(0.96);
    filter: drop-shadow(0 5px 15px rgba(37, 99, 235, 0.25));
  }

  100% {
    transform: scale(1.05);
    filter: drop-shadow(0 14px 32px rgba(37, 99, 235, 0.65));
  }
}

@keyframes preloaderFill {
  0% {
    width: 0%;
  }

  60% {
    width: 75%;
  }

  100% {
    width: 100%;
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- 2. Site Header Entrance Animation --- */
.site-header {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease, box-shadow 0.3s ease;
}

body.page-loaded .site-header {
  transform: translateY(0);
  opacity: 1;
}

/* --- 3. Scroll Reveal & Entrance Utility System --- */
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  transition-property: transform, opacity;
  transition-duration: var(--reveal-duration, 0.85s);
  transition-timing-function: var(--reveal-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: var(--reveal-delay, 0s);
}

/* Transform Variants */
[data-reveal="fade-up"],
.reveal-fade-up {
  transform: translateY(40px);
}

[data-reveal="fade-down"],
.reveal-fade-down {
  transform: translateY(-40px);
}

[data-reveal="fade-left"],
.reveal-fade-left {
  transform: translateX(45px);
}

[data-reveal="fade-right"],
.reveal-fade-right {
  transform: translateX(-45px);
}

[data-reveal="zoom-in"],
.reveal-zoom-in {
  transform: scale(0.92) translateY(25px);
}

[data-reveal="flip-up"],
.reveal-flip-up {
  transform: perspective(1000px) rotateX(20deg) translateY(30px);
}

/* Active Revealed Trigger State */
[data-reveal].is-revealed,
.reveal-fade-up.is-revealed,
.reveal-fade-down.is-revealed,
.reveal-fade-left.is-revealed,
.reveal-fade-right.is-revealed,
.reveal-zoom-in.is-revealed,
.reveal-flip-up.is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotateX(0deg);
}

/* Stagger Delays */
[data-delay="100"] {
  --reveal-delay: 0.1s;
}

[data-delay="150"] {
  --reveal-delay: 0.15s;
}

[data-delay="200"] {
  --reveal-delay: 0.2s;
}

[data-delay="250"] {
  --reveal-delay: 0.25s;
}

[data-delay="300"] {
  --reveal-delay: 0.3s;
}

[data-delay="350"] {
  --reveal-delay: 0.35s;
}

[data-delay="400"] {
  --reveal-delay: 0.4s;
}

[data-delay="500"] {
  --reveal-delay: 0.5s;
}

/* --- 4. Page Hero & Banner Entrance Polish --- */
.hero-copy .eyebrow {
  animation: heroItemEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-copy h1 {
  animation: heroItemEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-copy p {
  animation: heroItemEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-actions {
  animation: heroItemEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-media {
  animation: heroMediaZoomEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

@keyframes heroItemEntrance {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMediaZoomEntrance {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Page Banner entrance animation for inner pages */
.page-banner h1 {
  animation: bannerTextEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.page-banner .breadcrumb {
  animation: bannerTextEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

@keyframes bannerTextEntrance {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- 5. Interactive Cards & Elements Hover Micro-Animations --- */
.dest-card,
.activity-card,
.feature-item,
.review-card,
.blog-card,
.package-card,
.why-card,
.step-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card:hover,
.activity-card:hover,
.blog-card:hover,
.package-card:hover,
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 38px -10px rgba(15, 23, 42, 0.16);
}

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

.path-plane-icon {
  animation: floatPlane 4s ease-in-out infinite;
}

@keyframes floatPlane {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(4deg);
  }
}

.whatsapp-widget {
  animation: widgetFloat 3.2s ease-in-out infinite alternate;
}

@keyframes widgetFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-7px);
  }
}

/* --- 6. Accessibility & Reduced Motion --- */
/* --- 7. Gallery Showcase Grid (Bali & Destination Pages) --- */
.bali-gallery-showcase {
  width: 100%;
}

.gallery-grid-layout {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .gallery-grid-layout {
    grid-template-columns: 1fr;
  }
}

.gallery-thumbs-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* justify-content: space-between; */
}

@media (max-width: 768px) {
  .gallery-thumbs-col {
    flex-direction: row;
    overflow-x: auto;
  }

  .gallery-main-col {
    height: 340px !important;
  }
}

.thumb-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  height: 105px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.thumb-item:hover,
.thumb-item.active {
  border-color: #2563eb;
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-main-col {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.gallery-main-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.gallery-pill-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.gallery-pill-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Full-Screen Gallery Lightbox Modal
   ========================================================================== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 1350px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  margin-bottom: 16px;
  padding: 0 10px;
}

.lightbox-counter {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightbox-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-radius: 99px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.lightbox-btn--autoplay.is-active {
  background: #2563eb;
  border-color: #60a5fa;
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.6);
}

.lightbox-btn--close {
  padding: 8px 14px;
  font-size: 1.1rem;
}

.lightbox-stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  gap: 20px;
}

.lightbox-img-wrapper {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: calc(85vh - 70px);
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-img-wrapper img.fade-out {
  opacity: 0;
  transform: scale(0.96);
}

.lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
}

.lightbox-nav-arrow {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.lightbox-nav-arrow:hover {
  background: #2563eb;
  border-color: #60a5fa;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* Contact Social Icon Buttons */
.social-icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  color: var(--color-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 1px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.social-icon-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.social-facebook:hover {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
}

.social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  border-color: transparent;
}

.social-google:hover {
  background: #ea4335;
  color: #ffffff;
  border-color: #ea4335;
}

.social-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

@media (prefers-reduced-motion: reduce) {

  .site-preloader,
  [data-reveal],
  .site-header,
  .hero-copy *,
  .hero-media,
  .page-banner * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-preloader {
    display: none !important;
  }
}