.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
.hero-gradient {
  background: linear-gradient(
    to bottom,
    rgba(24, 28, 32, 0.4),
    rgba(24, 28, 32, 0.8)
  );
}
.mega-menu {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
}
.group:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-drawer {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.closed {
  transform: translateX(-100%);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-item.active .accordion-content {
  max-height: 500px;
}
.accordion-item.active .chevron-icon {
  transform: rotate(180deg);
}
.mega-content {
  display: none;
}
.mega-content.active {
  display: block;
}

.mobile-drawer {
  transform: translateX(-100%);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer.closed {
  transform: translateX(-100%);
}

#mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease;
  opacity: 0;
}

.accordion-content.open {
  max-height: 500px;
  opacity: 1;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-content {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition:
    opacity 1s ease,
    transform 1s ease;
  pointer-events: none;
}

.active-content {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-title,
.hero-desc {
  transition: all 1s ease;
}

.hero-slide img {
  animation: heroZoom 12s linear infinite;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.15);
  }
}

.ts-control {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 14px;
  font-weight: 600;
}

.ts-wrapper.single .ts-control {
  background: transparent !important;
}

.hero-slide iframe {
  filter: brightness(1);
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-slide {
  transition: opacity 1.5s ease;
}

.hero-slide img {
  animation: heroZoom 14s linear infinite;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-content {
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
}

.active-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-booking-engine {
  opacity: 0;
  transform: translateY(60px);
}

@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.8) 100%
    );
  }
}

/* =========================
   PREMIUM FLATPICKR DESIGN
========================= */

.flatpickr-calendar {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 28px !important;
  overflow: hidden;
  padding: 18px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.08) !important;
  width: 340px !important;
}

/* DAYS */
.flatpickr-day {
  border-radius: 14px !important;
  font-weight: 600;
  color: #111827;
  transition: all 0.2s ease;
}

/* HOVER */
.flatpickr-day:hover {
  background: rgba(16, 185, 129, 0.12) !important;
  color: #059669 !important;
}

/* TODAY */
.flatpickr-day.today {
  border-color: #10b981 !important;
  color: #10b981 !important;
}

/* SELECTED */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: linear-gradient(135deg, #10b981, #059669) !important;

  border-color: transparent !important;
  color: white !important;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* RANGE */
.flatpickr-day.inRange {
  background: rgba(16, 185, 129, 0.12) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* NAVIGATION */
.flatpickr-prev-month,
.flatpickr-next-month {
  border-radius: 12px;
  transition: all 0.2s ease;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  background: rgba(16, 185, 129, 0.1);
}

/* INPUT */
#datePicker {
  box-shadow: none !important;
}

#datePicker:focus {
  outline: none !important;
  box-shadow: none !important;
}

#datePicker {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.group {
  transition: all 0.2s ease;
}

.group:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.flatpickr-prev-month,
.flatpickr-next-month {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
}

.destination-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.cloud-mask {
  mask-image: url("../images/cloud.png fill='black'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
}

.trek-slider-container {
  scroll-behavior: smooth;
}

.about-img {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
  will-change: transform;
}

.about-img:hover {
  transform: scale(1.025) rotate(-0.5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.about-card {
  transition:
    transform 0.4s ease,
    background 0.4s ease;
  padding: 14px;
  border-radius: 18px;
}

.about-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.about-badge {
  backdrop-filter: blur(10px);
}

.bg-surface {
  --tw-bg-opacity: 1;
  background-color: rgb(247 249 255 / var(--tw-bg-opacity, 1) 1);
}

.cloud-divider {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
  margin-top: -50px;
  z-index: 10;
}

.premium-package-card {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
  will-change: transform;
}

.premium-package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

.premium-image {
  transition: transform 1s ease;
  will-change: transform;
}

.premium-package-card:hover .premium-image {
  transform: scale(1.08);
}

.premium-btn {
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.premium-package-card:hover .premium-btn {
  transform: translateY(-2px);
}

.testimonial-track {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.dot.active {
  background-color: #a63b00;
  width: 1.5rem;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.partner-card {
  transition: all 0.4s ease;
}

.partner-card img {
  transition: all 0.5s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.footer-social {
    @apply w-11 h-11 rounded-full flex items-center justify-center bg-white/10 border border-white/10 text-white hover:bg-primary hover:-translate-y-1 transition-all duration-300;
  }

  .footer-link {
    @apply text-white/75 hover:text-yellow-300 transition-colors duration-300;
  }

    /* =========================
     CKEDITOR CONTENT DESIGN
  ========================== */

  .ck-content {
    color: var(--on-surface, #1e293b);
    line-height: 1.9;
    font-size: 17px;
  }

  .ck-content > *:first-child {
    margin-top: 0 !important;
  }

  .ck-content > *:last-child {
    margin-bottom: 0 !important;
  }

  /* Headings */
  .ck-content h1,
  .ck-content h2,
  .ck-content h3,
  .ck-content h4,
  .ck-content h5,
  .ck-content h6 {
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
  }

  .ck-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
  }

  .ck-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .ck-content h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }

  .ck-content h4 {
    font-size: 1.5rem;
  }

  .ck-content h5 {
    font-size: 1.25rem;
  }

  .ck-content h6 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* Paragraph */
  .ck-content p {
    margin-bottom: 1.6rem;
    color: #475569;
  }

  /* Links */
  .ck-content a {
    color: #0f766e;
    font-weight: 600;
    text-decoration: none;
    position: relative;
  }

  .ck-content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }

  .ck-content a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  /* Lists */
  .ck-content ul,
  .ck-content ol {
    margin: 2rem 0;
    padding-left: 1.5rem;
  }

  .ck-content ul li,
  .ck-content ol li {
    margin-bottom: 1rem;
    color: #475569;
  }

  .ck-content ul li::marker {
    color: #0f766e;
  }

  .ck-content ol li::marker {
    color: #0f766e;
    font-weight: 700;
  }

  /* Blockquote */
  .ck-content blockquote {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 5px solid #0f766e;
    background: #f8fafc;
    border-radius: 1rem;
    font-size: 1.2rem;
    color: #334155;
    font-style: italic;
  }

  /* Images */
  .ck-content figure {
    margin: 3rem 0;
  }

  .ck-content figure img,
  .ck-content img {
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    object-fit: cover;
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.08),
      0 8px 20px rgba(0, 0, 0, 0.04);
  }

  .ck-content figcaption {
    margin-top: 1rem;
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
  }

  /* Tables */
  .ck-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 1.5rem;
    margin: 3rem 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  }

  .ck-content thead {
    background: #0f172a;
  }

  .ck-content thead th {
    color: white;
    padding: 1.25rem;
    text-align: left;
    font-weight: 700;
  }

  .ck-content tbody td {
    padding: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    background: white;
    color: #475569;
  }

  .ck-content tbody tr:hover td {
    background: #f8fafc;
  }

  /* Code */
  .ck-content pre {
    background: #0f172a;
    color: #f8fafc;
    padding: 2rem;
    border-radius: 1.25rem;
    overflow-x: auto;
    margin: 2rem 0;
  }

  .ck-content code {
    background: #f1f5f9;
    padding: 0.2rem 0.45rem;
    border-radius: 0.45rem;
    font-size: 0.95rem;
  }

  /* iframe */
  .ck-content iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    margin: 3rem 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  }

  /* HR */
  .ck-content hr {
    margin: 4rem 0;
    border: none;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      #cbd5e1,
      transparent
    );
  }

  /* =========================
     MODERN TABS
  ========================== */

  .tab-btn.active {
    color: white;
    background: linear-gradient(135deg, #1D326D, #1f42a1);
    box-shadow: 0 10px 30px rgba(22, 19, 185, 0.3);
  }

  /* =========================
     SHOW MORE BUTTON
  ========================== */

  .modern-load-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .modern-load-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1D326D, #1f42a1);
    opacity: 0;
    transition: 0.4s ease;
    z-index: -1;
  }

  .modern-load-btn:hover::before {
    opacity: 1;
  }

  .modern-load-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(22, 19, 185, 0.3);
  }

  /* =========================
     HERO OVERLAY
  ========================== */

  .hero-overlay {
    background:
      linear-gradient(
        to top,
        rgba(2, 6, 23, 0.85),
        rgba(2, 6, 23, 0.2)
      ),
      linear-gradient(
        to right,
        rgba(15, 118, 110, 0.2),
        rgba(0, 0, 0, 0)
      );
  }

  /* =========================
     CUSTOM SCROLLBAR
  ========================== */

  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
  }

    .tab-btn.active {
    color: white;
    background: linear-gradient(135deg, #1D326D, #1f42a1);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.25);
  }

  .modern-load-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .modern-load-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1D326D, #1f42a1);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
  }

  .modern-load-btn:hover::before {
    opacity: 1;
  }

  .modern-load-btn:hover {
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(31, 20, 184, 0.2);
  }

  /* CKEDITOR CONTENT */

  .ck-content {
    color: #475569;
    font-size: 17px;
    line-height: 1.9;
  }

  .ck-content h1,
  .ck-content h2,
  .ck-content h3,
  .ck-content h4,
  .ck-content h5,
  .ck-content h6 {
    color: #1D326D;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
  }

  .ck-content h1 {
    font-size: clamp(2.7rem, 6vw, 5rem);
  }

  .ck-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .ck-content h3 {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
  }

  .ck-content p {
    margin-bottom: 1.5rem;
  }

  .ck-content ul,
  .ck-content ol {
    margin: 2rem 0;
    padding-left: 1.5rem;
  }

  .ck-content li {
    margin-bottom: 1rem;
  }

  .ck-content blockquote {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid #1D326D;
    background: #f8fafc;
    border-radius: 1.5rem;
    font-size: 1.2rem;
    font-style: italic;
    color: #334155;
  }

  .ck-content img {
    width: 100%;
    border-radius: 1.5rem;
    margin: 2rem 0;
  }

  .ck-content figure {
    margin: 3rem 0;
  }

  .ck-content figcaption {
    margin-top: 1rem;
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
  }

  .ck-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 1.5rem;
    margin: 3rem 0;
  }

  .ck-content thead {
    background: #1D326D;
  }

  .ck-content thead th {
    color: white;
    padding: 1.2rem;
    text-align: left;
  }

  .ck-content tbody td {
    padding: 1.2rem;
    border-bottom: 1px solid #e2e8f0;
    background: white;
  }

  .ck-content iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 1.5rem;
    margin-top: 2rem;
  }

  .bento-card {
    transition: all 0.5s ease;
  }

  .bento-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  }

  .legacy-image img {
    transition: transform 1s ease;
  }

  .cta-box {
    backdrop-filter: blur(12px);
  }

  .hero-gradient {
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.75)
      );
  }

  .stat-box {
    transition: all 0.4s ease;
  }

  .stat-box:hover {
    transform: translateY(-8px);
  }