:root {
  --rtc-dark: #0b0f14;        /* background utama */
  --rtc-dark-soft: #121824;  /* section gelap */
  --rtc-light: #f5f7fa;      /* text utama */
  --rtc-muted: #9aa4b2;      /* text sekunder */
  --rtc-accent: #2dd4bf;     /* CTA / highlight */
  --rtc-accent-dark: #14b8a6;
  --rtc-glass: rgba(255,255,255,0.08);
  --rtc-error: #fb7185;         /* soft rose red */
  --rtc-error-bg: rgba(251,113,133,0.15);
}


body {
    font-family: "Inter", system-ui, sans-serif;
    background-color: #0b0b0b;
  }
  
  a{
    text-decoration: none;

  }
  /* LOADING */
  #loadingScreen {
    position: fixed;
    inset: 0;
    background: #020617;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s;
  }
  #loadingScreen.hide {
    opacity: 0;
    visibility: hidden;
  }
  .loading-content {
    text-align: center;
    color: #fff;
  }
  .loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,.2);
    margin: 20px auto 0;
    overflow: hidden;
  }
  .loading-bar span {
    display: block;
    width: 40%;
    height: 100%;
    background: #22c55e;
    animation: load 1.2s infinite;
  }
  @keyframes load {
    from { transform: translateX(-100%); }
    to { transform: translateX(250%); }
  }
  
  /* TOP BAR */
/* TOP BAR – FLOAT & TRANSPARENT */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    margin-top:10px;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    background: transparent;
    color: #fff;
    font-size: 16px;
    z-index: 1050;
    transition: opacity .3s ease;
  }
  
  .top-bar a {
    color: #fff;
    margin-right: 15px;
  }
  
  /* Hide top bar when scrolling */
  .top-bar.hide {
    opacity: 0;
    pointer-events: none;
  }
  
 /* NAVBAR DEFAULT */
 /* .navbar {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11,15,20,0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
} */

.main-navbar {
    position: fixed;
    top: 60px; /* tepat di bawah top-bar */
    left: 0;
    width: 100%;
    background: transparent;
    transition: background .3s ease, top .3s ease;
    z-index: 1040;
  }
  
  /* Desktop scroll behavior */
  @media (min-width: 992px) {
    .main-navbar.scrolled {
      top: 0;
      background: #020617;
    }
  }
  
  /* Mobile */
  @media (max-width: 991px) {
    .main-navbar {
      top: 0;
      background: #020617;
    }
  }
  

  /* HERO */
  .hero-section {
    position: relative;
    height: 100svh;      /* viewport modern (mobile-safe) */
    min-height: 100vh;   /* fallback */
    overflow: hidden;
  }
  
  .hero-section h1 span {
    background: linear-gradient(90deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  
  .hero-section p {
    max-width: 520px;
  }
  
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(2,6,23,0.75) 0%,
        rgba(2,6,23,0.55) 35%,
        rgba(2,6,23,0.25) 60%,
        rgba(2,6,23,0.05) 100%
      ),
      linear-gradient(
        180deg,
        rgba(2,6,23,0.35) 0%,
        rgba(2,6,23,0.15) 30%,
        rgba(2,6,23,0.45) 100%
      );
  }
  

  .hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 640px;
    padding-left: 40px;
    padding-right: 20px;
  }

  /* .hero-content {
    backdrop-filter: blur(2px);
  } */

  @media (max-width: 768px) {
      .mobile-hidden{
    display: none;
      }
    .hero-overlay {
      background:
        linear-gradient(
          180deg,
          rgba(2,6,23,0.75) 0%,
          rgba(2,6,23,0.6) 40%,
          rgba(2,6,23,0.4) 100%
        );
    }
  }
  
  
  
  /* Desktop besar – kasih ruang ekstra */
  @media (min-width: 1200px) {
    .hero-content {
      padding-left: 60px;
    }
  }
  
  .hero-tagline {
    color:#ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    opacity: .8;
  }

  .hero-section h1 {
    font-size: 52px;
    font-weight: 700;
    margin: 15px 0;
    color:#ffffff
  }
  .hero-section h1 span {
    color: #4ade80;
  }
  .hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color:#ffffff;
  }
  
  /* FOOTER */
  .site-footer {
    background: #0b0b0b;
    color: rgba(255,255,255,.75);
    padding: 90px 0 40px;
    font-size: .9rem;
  }
  
  .footer-logo {
    height: 60px;
    margin-bottom: 16px;
    filter: invert(100%)
  }

  .payment-icons img {
    /* height: 80px; */
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
  }

  /* .payment-icons img {
    filter: brightness(0) invert(1);
  } */

  .brand-box {
    border: 2px solid #ffffff;
    padding: 8px 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    border-radius: 2px;
    color: #ffffff;
}

  
  
  
  .footer-brand p {
    font-size: .85rem;
    line-height: 1.6;
    color: rgba(255,255,255,.7);
  }
  
  .site-footer h6 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    margin-bottom: 16px;
  }
  
  .site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .site-footer ul li {
    margin-bottom: 8px;
  }
  
  .site-footer a {
    text-decoration: none;
    color: rgba(255,255,255,.7);
  }
  
  .site-footer a:hover {
    color: #fff;
  }
  
  /* Payments */
  .footer-payments {
    margin-top: 50px;
    text-align: center;
  }
  
  .footer-payments span {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.5);
    margin-bottom: 14px;
  }
  
  .payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .payment-icons img {
    height: 35px;
    opacity: .7;
  }
  
  /* Network */
  .footer-network {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
  }
  
  .footer-network span {
    display: block;
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 14px;
  }
  
  .network-logos {
    display: flex;
    justify-content: center;
    gap: 28px;
  }
  
  .network-logos img {
    height: 24px;
    opacity: .65;
  }
  
  /* Bottom */
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    font-size: .8rem;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .site-footer {
      padding: 70px 0 30px;
    }
  }
  

  /* SCROLL INDICATOR */
/* .scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: .85;
    transition: opacity .3s ease, transform .3s ease;
  } */

  .scroll-indicator {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    transition: all .35s ease;
    opacity: .85;
    color: #fff;
  }
  
  .scroll-indicator.left {
    left: 24px;
    transform: none;
  }
  
  .scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
  }
  
  .scroll-indicator .arrow {
    font-size: 22px;
    animation: bounce 1.8s infinite;
  }
  
  /* Bounce animation */
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }
  
  /* Hidden state */
  .scroll-indicator.hide {
    opacity: 0;
    pointer-events: none;
  }
  
  /* Mobile tweak */
  @media (max-width: 768px) {
    .scroll-indicator {
      bottom: 20px;
      font-size: 12px;
    }
  }

  /* FLOATING WHATSAPP CTA */
.wa-float {
    position: fixed;
    right: 25px;
    bottom: 30px;
    background: #22c55e;
    color: #fff;
    padding: 12px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(34,197,94,.35);
    z-index: 1040;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  
  .wa-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(34,197,94,.45);
  }
  
  .wa-icon {
    font-size: 20px;
    line-height: 1;
  }
  
  .wa-text {
    white-space: nowrap;
  }
  
  /* Mobile: icon only */
  @media (max-width: 768px) {
    .wa-text {
      display: none;
    }
  
    .wa-float {
      padding: 14px;
      border-radius: 50%;
    }
  }

  .wa-float {
    opacity: 0;
  }

  /* Featured Package */
  .featured-packages {
    padding: 100px 0;
    background: #0b0b0b;
    color: #fff;
  }
  
  .section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .section-header p {
    color: rgba(255,255,255,.7);
    max-width: 600px;
    margin: 0 auto 60px;
  }
  
  .package-card {
    position: relative;
    display: block;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
  }
  
  .package-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
  }
  
  /* gradient overlay */
  .package-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,.85),
      rgba(0,0,0,.3),
      transparent
    );
  }
  
  .package-content {
    position: absolute;
    bottom: 0;
    padding: 24px;
    z-index: 2;
  }
  
  .package-price {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .5px;
    opacity: .85;
  }
  
  .package-content h3 {
    font-size: 1.2rem;
    margin: 6px 0 8px;
  }
  
  .package-content p {
    font-size: .9rem;
    line-height: 1.5;
    opacity: .85;
  }

  /* Package Badge */
.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  pointer-events: none;
}

  
  /* hover effect desktop only */
  @media (hover: hover) {
    .package-card:hover .package-bg {
      transform: scale(1.08);
    }
  }

  .rinjani-status {
    padding: 80px 0;
    background: #0e0e0e;
  }
  
  .rinjani-status-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .rinjani-status-card:hover {
    transform: translateY(-2px);
  }
  
  /* STATUS COLORS */
  .rinjani-status-1 {
    background: linear-gradient(135deg, rgba(0,140,90,.35), rgba(0,0,0,.6));
    border: 1px solid rgba(0,140,90,.4);
  }
  
  .rinjani-status-2 {
    background: linear-gradient(135deg, rgba(255,165,0,.35), rgba(0,0,0,.6));
    border: 1px solid rgba(255,165,0,.4);
  }
  
  .rinjani-status-3 {
    background: linear-gradient(135deg, rgba(180,50,50,.35), rgba(0,0,0,.6));
    border: 1px solid rgba(180,50,50,.4);
  }
  
  .rinjani-status-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }
  
  .rinjani-status-content h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
  
  .rinjani-status-content p {
    font-size: .95rem;
    opacity: .85;
    margin: 0;
  }
  
  .rinjani-status-meta {
    margin-left: auto;
    text-align: right;
    font-size: .85rem;
    opacity: .8;
  }
  
  .rinjani-status-link {
    display: block;
    margin-top: 6px;
    font-weight: 600;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .rinjani-status-card {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .rinjani-status-meta {
      margin-left: 0;
      margin-top: 12px;
      text-align: left;
    }
  }

  
  /* About us */
  .why-choose-us {
    padding: 100px 0;
    background: #0b0b0b;
    color: #fff;
  }
  
  .why-choose-us .section-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .why-choose-us .section-header p {
    max-width: 640px;
    margin: 0 auto 60px;
    color: rgba(255,255,255,.7);
  }
  
  .why-card {
    padding: 32px 26px;
    height: 100%;
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .3s ease;
  }
  
  .why-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.05);
  }
  
  .why-icon {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  
  .why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  
  .why-card p {
    font-size: .95rem;
    opacity: .8;
    line-height: 1.6;
  }
  
  /* Mobile spacing */
  @media (max-width: 768px) {
    .why-choose-us {
      padding: 80px 0;
    }
  }

  
  /* FEED BACK */
  .testimonials {
    padding: 100px 0;
    background: #0e0e0e;
    color: #fff;
  }
  
  .testimonials .section-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .testimonials .section-header p {
    color: rgba(255,255,255,.7);
    margin-bottom: 60px;
  }
  
  .testimonial-card {
    height: 100%;
    padding: 28px;
    border-radius: 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    display: flex;
}

.testimonial-actions {
    position: relative;
  margin-top: -40px;
  padding-top: 60px;
  background: linear-gradient(
    to bottom,
    rgba(11,11,11,0),
    rgba(11,11,11,0.9)
  );
}
  
  
  .testimonial-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial-header h3 {
    font-size: 1rem;
    margin: 0;
  }
  
  .review-rating {
    font-size: .85rem;
    line-height: 1;
  }
  
  .review-content {
    font-size: .95rem;
    line-height: 1.6;
    opacity: .85;
    margin-bottom: 20px;
    flex-grow: 1;
  
    /* multiline clamp */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
  
  
  .review-source {
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    color: #8fd3f4;
  }
  
  .review-source:hover {
    text-decoration: underline;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .testimonials {
      padding: 80px 0;
    }
  }

  
  /* Trust */
  .trust-badges {
    padding: 70px 0 90px;
    background: #0b0b0b;
    color: #fff;
  }
  
  .trust-label {
    font-size: .95rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 30px;
  }
  
  .trust-badge-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 26px;
  }
  
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: .75;
    transition: opacity .3s ease;
  }
  
  .trust-badge img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
  }
  
  .trust-badge span {
    font-size: .85rem;
    white-space: nowrap;
  }
  
  .trust-badge:hover {
    opacity: 1;
  }
  
  .trust-note {
    max-width: 640px;
    margin: 0 auto;
    font-size: .9rem;
    opacity: .6;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .trust-badge-wrapper {
      gap: 18px;
    }
  
    .trust-badge img {
      height: 45px;
    }
  }

  /* Featured CTA */
  .featured-cta {
    margin-top: 50px;
  }
  
  .see-all-packages {
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    position: relative;
  }
  
  .see-all-packages::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.4);
    transition: all .3s ease;
  }
  
  .see-all-packages:hover::after {
    background: rgba(255,255,255,.9);
  }

  
  /* ABout Us */
  .about-us {
    padding: 110px 0;
    background: #0b0b0b;
    color: #fff;
  }
  
  .about-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 18px;
  }
  
  .about-highlight {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: rgba(255,255,255,.9);
  }
  
  .about-content p {
    font-size: .95rem;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
    margin-bottom: 16px;
  }
  
  .about-link {
    display: inline-block;
    margin-top: 10px;
    font-size: .95rem;
    font-weight: 600;
    color: #8fd3f4;
    text-decoration: none;
  }
  
  .about-link:hover {
    text-decoration: underline;
  }
  
  .about-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .about-us {
      padding: 90px 0;
    }
  
    .about-content h2 {
      font-size: 2rem;
    }
  }

  
  /* Teaser FAQ */
  .faq-teaser {
    padding: 110px 0;
    background: #0f0f0f;
    color: #fff;
  }
  
  .faq-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .faq-header p {
    font-size: .95rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 40px;
  }
  
  /* Accordion */
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  
  .faq-question {
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .faq-icon {
    font-size: 1.2rem;
    transition: transform .3s ease;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: .9rem;
    line-height: 1.6;
    color: rgba(255,255,255,.8);
    transition: max-height .35s ease;
    padding-right: 20px;
  }
  
  .faq-item.active .faq-answer {
    max-height:max-content;
    padding-bottom: 18px;
  }

  .faq-item a{
    text-decoration: none;
    color:#ffffff;
    font-weight: 800;
  }
  
  /* CTA */
  .faq-cta {
    margin-top: 40px;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .faq-teaser {
      padding: 90px 0;
    }
  
    .faq-header h2 {
      font-size: 2rem;
    }
  }

  /* Mini Network */

  .mini-network {
    padding: 70px 0;
    background: #0b0b0b;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  
  .network-label {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 26px;
  }
  
  .network-items {
    display: flex;
    justify-content: center;
    gap: 46px;
    flex-wrap: wrap;
  }
  
  .network-items a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: all .25s ease;
  }

  /* .payment-icons img {
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
  } */
  
  
  .network-items img {
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    height: 60px;
    /* opacity: .65; */
    transition: opacity .25s ease;
  }
  
  .network-items a:hover img {
    opacity: 1;
  }
  
  .network-items a:hover {
    color: #fff;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .mini-network {
      padding: 55px 0;
    }
  
    .network-items {
      gap: 28px;
    }
  }

  /* Blog Teaser */
  .blog-teaser {
    padding: 110px 0;
    background: #f7f7f7;
  }
  
  .blog-teaser h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .blog-intro {
    font-size: .95rem;
    color: #666;
  }
  
  /* Card */
  .blog-card {
    height: 100%;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
  }
  
  /* Thumbnail */
  .blog-thumb img {
    width: 100%;
    height: 300px;
    object-fit:cover;
  }
  
  /* Body */
  .blog-body {
    padding: 22px;
  }
  
  .blog-meta {
    font-size: .75rem;
    color: #999;
    margin-bottom: 10px;
  }
  
  .blog-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .blog-body h3 a {
    text-decoration: none;
    color: #111;
  }
  
  .blog-body p {
    font-size: .9rem;
    line-height: 1.6;
    color: #555;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .blog-teaser {
      padding: 90px 0;
    }
  
    .blog-teaser h2 {
      font-size: 2rem;
    }
  }

  .general-enquiry {
    padding: 110px 0;
    background: #f9f9f9;
  }
  
  .enquiry-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .enquiry-header p {
    font-size: .95rem;
    color: #666;
    margin-bottom: 40px;
  }
  
  /* Form */
  .general-enquiry-form {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
  }
  
  .general-enquiry-form .form-label {
    font-size: .8rem;
    font-weight: 600;
    color: #444;
  }
  
  .general-enquiry-form .form-control {
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 12px 14px;
    font-size: .9rem;
  }
  
  .general-enquiry-form .form-control:focus {
    border-color: #111;
    box-shadow: none;
  }
  
  /* Button */
  .general-enquiry-form .btn {
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    padding: 12px 36px;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .general-enquiry {
      padding: 90px 0;
    }
  
    .general-enquiry-form {
      padding: 28px;
    }
  }

  .dd-active{
    color:#06a455;
    font-weight: 800;
  }

  .item:hover {
    color:#06a455;
    font-weight: 800;
  }

  .currencyCheck{
    color:#06a455;
    font-weight: 900;
  }

  .languageCheck{
    color:#06a455;
    font-weight: 900;
  }

  .padding10{
    padding: 10px;
  }

  /* btn loading */
  .dots span {
    animation: dotFade 1.4s infinite;
    opacity: 0.2;
}

.dots span:nth-child(1) { animation-delay: 0s; }
.dots span:nth-child(2) { animation-delay: .2s; }
.dots span:nth-child(3) { animation-delay: .4s; }

@keyframes dotFade {
    0%   { opacity: .2; }
    20%  { opacity: 1; }
    100% { opacity: .2; }
}

.btn-loading {
    position: relative;
    animation: btnPulse 1.6s ease-in-out infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,105,95,.35);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255,105,95,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,105,95,0);
    }
}

.ava-img{
  width:30px
}

/* LOGIN */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      rgba(11,15,20,0.65),
      rgba(11,15,20,0.9)
    ),
    url('/assets/img/general/login.webp') center/cover no-repeat;
  padding: 20px;
}



.login-card {
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  padding: 40px 35px;
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
}


.login-card h2 {
  font-weight: 700;
  color: var(--rtc-dark-soft);
}

.login-card p {
  color: var(--rtc-muted);
}

.login-card label {
  color: var(--rtc-dark-soft);
  font-size: 14px;
}

.login-card .form-control {
  background: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--rtc-dark-soft);
}

.login-card .form-control::placeholder {
  color: #9aa4b2;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--rtc-accent),
    var(--rtc-accent-dark)
  );
  border: none;
  padding: 12px;
  font-weight: 600;
}

.btn-primary:hover {
  opacity: 0.9;
}

.login-links a {
  color: var(--rtc-accent);
  text-decoration: none;
}

.login-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .login-card {
    padding: 28px;
  }
}

/* .btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  color: var(--rtc-light);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 12px;
  font-weight: 500;
  transition: all 0.25s ease;
} */

.btn-google img {
  width: 28px;
}

.btn-google:hover {
  background: rgba(168, 168, 168, 0.383);
  color: #000000;
}

.divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.divider span {
  /* background: rgba(11,15,20,0.85); */
  padding: 0 12px;
  position: relative;
  color: var(--rtc-muted);
  font-size: 13px;
}

.form-control.is-invalid {
  border-color: var(--rtc-error) !important;
  /* background: var(--rtc-error-bg) !important; */
  box-shadow: 0 0 0 3px rgba(251,113,133,0.25) !important;
}


.invalid-feedback {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--rtc-error);
}

.form-control.is-invalid:focus {
  border-color: var(--rtc-error);
  box-shadow: 0 0 0 3px rgba(251,113,133,0.35);
}

/* Completing Registration */


.complete-registration {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      rgba(11,15,20,0.65),
      rgba(11,15,20,0.9)
    ),
    url('/assets/img/general/login.webp') center/cover no-repeat;
  padding: 20px;
}



.complete-card {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.complete-card .title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.complete-card .subtitle {
  font-size: 15px;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}

.complete-card .form-group {
  margin-bottom: 18px;
}

.complete-card label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.complete-card .form-control {
  height: 48px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.complete-card textarea.form-control {
  height: auto;
}

.btn-submit {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 10px;
}

.input-verified {
  position: relative;
}

.verified-input {
  padding-right: 110px;
  background-color: #f8f9fa;
  cursor: not-allowed;
}

.verified-badge {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #1e7e34;
  background: rgba(40, 167, 69, 0.12);
  padding: 4px 8px;
  border-radius: 20px;
  pointer-events: none;
}

.verified-badge svg {
  color: #28a745;
}

.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      rgba(11,15,20,0.65),
      rgba(11,15,20,0.9)
    ),
    url('/assets/img/general/login.webp') center/cover no-repeat;
  padding: 20px;
}

.auth-card {
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  padding: 40px 35px;
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  margin-top: 200px;
  margin-bottom: 50px;
}



.auth-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

.auth-subtitle {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.auth-divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
}

.auth-divider span {
  /* background: #fff; */
  padding: 0 10px;
  font-size: 13px;
  color: #888;
}

.auth-divider::before {
  content: "";
  height: 1px;
  background: #e0e0e0;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: -1;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:transparent;
  border: 1px solid #9b9b9b;
  height: 48px;
  border-radius: 12px;
  font-weight: 600;
}

.btn-connect-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:#fff;
  border: 1px solid #9b9b9b;
  height: 48px;
  border-radius: 12px;
  font-weight: 600;
}

.btn-connect-google img {
  width: 28px;
}

.btn-connect-google:hover {
  background: rgba(168, 168, 168, 0.383);
  color: #000000;
}

/* .btn-google img {
  width: 18px;
} */

.auth-footer-text {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

.auth-card .form-group label{
  margin-top: 10px;
}

.password-hint {
  font-size: 13px;
  color: #6b7280; /* soft gray */
}

.password-strength {
  opacity: 0;
  transition: opacity .2s ease;
}
.password-strength.active {
  opacity: 1;
}


.password-strength {
  position: relative;
  height: 4px !important;
  background: #e5e7eb;
  border-radius: 4px;
  margin-top: 6px;
  overflow: hidden;
  width: 100%;
}

.password-strength span {
  display: block !important;
  height: 100%;
  width: 0%;
  background-color: #ef4444;
  transition: width .3s ease, background-color .3s ease;
}


.password-match {
  font-size: 13px;
  margin-top: 4px;
  display: block;
}

.password-match.error {
  color: #dc2626;
}

.tx-error{
  color: #dc2626;
  font-size: small;
}

.password-match.success {
  color: #16a34a;
}

/* Account activation */
.auth-status {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      rgba(11,15,20,0.65),
      rgba(11,15,20,0.9)
    ),
    url('/assets/img/general/login.webp') center/cover no-repeat;
  padding: 20px;
}

.status-card {
  max-width: 420px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.status-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-card h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.status-card p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 24px;
}

.status-actions a {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  transition: all .25s ease;
}

/* ===== VARIANTS ===== */

.status-card.success .status-icon {
  background: #dcfce7;
  color: #16a34a;
}
.status-card.success h2 {
  color: #15803d;
}

.status-card.expired .status-icon,
.status-card.invalid .status-icon,
.status-card.used .status-icon {
  background: #fee2e2;
  color: #dc2626;
}
.status-card.expired h2,
.status-card.invalid h2,
.status-card.used h2 {
  color: #b91c1c;
}

/* Buttons */
.btn-primary {
  background: #16a34a;
  color: #fff;
}
.btn-primary:hover {
  background: #15803d;
}

.btn-outline {
  border: 1px solid #d1d5db;
  color: #374151;
}
.btn-outline:hover {
  background: #f3f4f6;
}

/* Forgot Password */


.fp-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      rgba(11,15,20,0.65),
      rgba(11,15,20,0.9)
    ),
    url('/assets/img/general/login.webp') center/cover no-repeat;
  padding: 20px;
}

.fp-card {
  max-width: 420px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 34px;
  box-shadow: 0 25px 45px rgba(0,0,0,.08);
}

.fp-title {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.fp-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 26px;
  line-height: 1.6;
}

.fp-group {
  margin-bottom: 22px;
}

.fp-label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #374151;
}

.fp-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  transition: all .25s ease;
}

.fp-input:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.15);
}

.fp-btn {
  width: 100%;
  background: #16a34a;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s ease, transform .1s ease;
}

.fp-btn:hover {
  background: #15803d;
}

.fp-btn:active {
  transform: scale(.98);
}

.fp-footer {
  margin-top: 22px;
  text-align: center;
}

.fp-back {
  font-size: 13px;
  color: #16a34a;
  text-decoration: none;
}

.fp-back:hover {
  text-decoration: underline;
}

/* Reset Password */
.rp-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      rgba(11,15,20,0.65),
      rgba(11,15,20,0.9)
    ),
    url('/assets/img/general/login.webp') center/cover no-repeat;
  padding: 20px;
}

.rp-card {
  max-width: 420px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 34px;
  box-shadow: 0 25px 45px rgba(0,0,0,.08);
}

.rp-title {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.rp-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 26px;
}

.rp-group {
  margin-bottom: 22px;
}

.rp-label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #374151;
}

.rp-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  transition: all .25s ease;
}

.rp-input:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.15);
}

/* Strength Bar */
.rp-strength {
  height: 4px;
  background: #e5e7eb;
  border-radius: 4px;
  margin-top: 8px;
  overflow: hidden;
}

.rp-strength span {
  display: block;
  height: 100%;
  width: 0%;
  background: #ef4444;
  transition: width .3s ease, background .3s ease;
}

.rp-hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
  display: block;
}

/* Match text */
.rp-match {
  font-size: 12px;
  margin-top: 6px;
  display: block;
}

.rp-match.error {
  color: #dc2626;
}

.rp-match.success {
  color: #16a34a;
}

/* Button */
.rp-btn {
  width: 100%;
  background: #16a34a;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s ease, transform .1s ease;
}

.rp-btn:hover {
  background: #15803d;
}

.rp-btn:active {
  transform: scale(.98);
}


/* PROMO POPUP */
.rtc-promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.rtc-promo-modal {
  background: #0f0f0f;
  color: #fff;
  max-width: 420px;
  width: 90%;
  padding: 36px 32px;
  border-radius: 22px;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.rtc-promo-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
}

.rtc-promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c7a14a, #e5c77a);
  color: #000;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
}

.rtc-promo-modal h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.rtc-promo-desc {
  font-size: .95rem;
  line-height: 1.6;
  opacity: .85;
}

.rtc-promo-expire {
  font-size: .85rem;
  opacity: .7;
}

.rtc-promo-btn {
  margin-top: 30px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: #c7a14a;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.rtc-promo-btn:hover {
  background: #e5c77a;
}

/* EARLY BIRD SECTION */
.rtc-offer-section {
  padding: 80px 0;
  background: #0b0b0b;
}

.rtc-offer-box {
  background: linear-gradient(145deg, #141414, #0d0d0d);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.rtc-offer-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
  background: rgba(199, 161, 74, .15);
  color: #e5c77a;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.rtc-offer-box h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #fff;
}

.rtc-offer-box p {
  max-width: 560px;
  margin: 0 auto 20px;
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
}

.rtc-offer-expire {
  display: block;
  font-size: .85rem;
  opacity: .6;
  /* margin-bottom: 26px; */
  color: rgba(255, 255, 255, .75);
}

.rtc-offer-link {
  font-weight: 600;
  color: #e5c77a;
  text-decoration: none;
  transition: color .3s ease;
}

.rtc-offer-link:hover {
  color: #fff;
}


/* HERO */
.rinjani-hero {
  position: relative;
  /* height: 40vh; */
  min-height: 480px;
  color: #fff;
  overflow: hidden;
}

.rinjani-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left center;
  filter: brightness(.75);
}

.rinjani-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.65),
    rgba(0,0,0,.4),
    rgba(0,0,0,.85)
  );
}

.rinjani-hero-content {
  position: relative;
  z-index: 2;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rinjani-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 300px;
}

.rinjani-hero p {
  font-size: 1.1rem;
  opacity: .85;
}

/* ABOUT */
.rinjani-about {
  padding: 100px 0;
  background: #0b0b0b;
  color: #fff;
}

.about-text h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  font-size: .95rem;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 16px;
}

.rinjani-facts {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.rinjani-facts li {
  font-size: .9rem;
  opacity: .9;
  margin-bottom: 8px;
}

.about-image {
  border-radius: 18px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}

@media (hover:hover) {
  .about-image:hover img {
    transform: scale(1.06);
  }
}


/* GLOBAL */
.tour-section {
  padding: 30px 0;
  background: #0b0b0b;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.container.narrow {
  max-width: 760px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

/* ================= HERO ================= */
.tour-hero-soft {
  position: relative;
  /* height: 50vh; */
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0b0b;
}

.tour-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15),
    rgba(11,11,11,.8),
    #0b0b0b
  );
}

.tour-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color:#ffffff;
  margin-bottom: 10px;
  margin-top: 300px;
}

.tour-hero-title {
  font-size: 3rem;
  margin:0px;
  

}

/* ================= SNAPSHOT ================= */
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  gap: 20px;
}

.snapshot-grid div {
  background: rgba(255,255,255,.05);
  padding: 20px;
  border-radius: 14px;
}

.snapshot-grid strong {
  display: block;
  opacity: .7;
  margin-bottom: 4px;
}



/* ================= PACKING ================= */
.packing-list {
  columns: 2;
  gap: 20px;
}

.packing-list li {
  margin-bottom: 10px;
}

/* ================= FOOD (LIGHT) ================= */
.tour-food.light {
  background: #f8f8f8;
  color: #111;
}

/* ================= MAP ================= */
.map-box img {
  width: 100%;
  border-radius: 18px;
}

/* ================= BOOKING ================= */
.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form input,
.booking-form select {
  padding: 14px;
  border-radius: 10px;
  border: none;
}

.booking-form button {
  padding: 14px;
  background: #22c55e;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.tour-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

/* IMAGE */
.tour-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* GRADIENT OVERLAY */
.tour-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0) 0%,
          rgba(0, 0, 0, 0.15) 30%,
          rgba(0, 0, 0, 0.6) 65%,
          rgba(0, 0, 0, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

/* LOAD MORE WRAP (OVER IMAGE) */


/* Booking Summary Box */
.booking-summary {
  margin: 5px 0;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03)
  );
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(6px);
}

/* Title */
.booking-summary-title {
  /* font-size: 1.1rem; */
  font-weight: 600;
  margin-bottom: 5px;
}

/* List */
.booking-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-summary-list li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: .7rem;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.booking-summary-list li:last-child {
  border-bottom: none;
}

/* Highlight total */
.booking-summary-list li.total strong {
  font-size: .7rem;
  font-weight: 700;
}

/* Discount */
.booking-summary-list li.discount strong {
  color: #22c55e;
}

/* Note */
.booking-summary-note {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .7rem;
  line-height: 1.5;
  opacity: .85;
}

/* Glass Card for Booking */
.tour-booking-card {
  background: linear-gradient(180deg,
          rgba(255, 255, 255, .10),
          rgba(255, 255, 255, .04)) !important;

  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;

  box-shadow:
      0 25px 60px rgba(0, 0, 0, .45),
      inset 0 1px 0 rgba(255, 255, 255, .12);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #fff;

  max-height: none;
  overflow: visible;
}

/* Saat card lebih tinggi dari viewport */
.tour-booking-sticky.is-scrollable .tour-booking-card {
  top:-25px;
  max-height: calc(100vh - 40px); /* 60px navbar + breathing space */
  overflow-y: auto;

  /* Firefox */
  scrollbar-width: none;

  /* IE / Edge lama */
  -ms-overflow-style: none;
}


/* Chrome / Safari / Edge (Chromium) */
.tour-booking-sticky.is-scrollable
.tour-booking-card::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.tour-description img{
  width:100%
}

/* spacing */
.tour-booking-card .card-body {
  padding: 36px;
}

/* form inside card */
.tour-booking-card .form-control {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
}

.tour-booking-card .form-control::placeholder {
  color: rgba(255, 255, 255, .55);
}

.tour-booking-card .form-control:focus {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
  box-shadow: none;
}

/* title inside card */
.tour-booking-card h3,
.tour-booking-card h4 {
  color: #fff;
}

/* mobile */
@media (max-width: 768px) {
  .tour-booking-card .card-body {
      padding: 24px;
  }
}

@media (hover: hover) {
  .tour-booking-card:hover {
      box-shadow:
          0 35px 80px rgba(0, 0, 0, .55),
          inset 0 1px 0 rgba(255, 255, 255, .15);
  }
}

.tour-booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg,
          rgba(255, 255, 255, .15),
          transparent 40%);
}


.booking-auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-auth-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.14),
    rgba(255,255,255,.06)
  );

  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  padding: 32px;
  max-width: 420px;
  width: 100%;

  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  color: #fff;
  text-align: center;
}

.booking-auth-card h3 {
  margin-bottom: 10px;
}

.booking-auth-card .subtitle {
  opacity: .8;
  margin-bottom: 24px;
}

.booking-auth-card .auth-note {
  font-size: .75rem;
  opacity: .6;
  margin-top: 16px;
}

p a {
  color: #c9a24d; /* muted gold */
  text-decoration: none;
  transition: color .25s ease;
}

.food-group{
  color: #c9a24d; /* muted gold */
}

p a:hover {
  color: #e6c36a;
  text-decoration: underline;
}

.inclusion-desc{
  color: rgba(255, 255, 255, .55);
  padding: 0px;
  margin: 0px;
}

.package-box ul li{
  margin-bottom: 5px;
}

.package-box h4{
  color: #c9a24d; /* muted gold */
font-weight: 800;
}

/* ================= DEFAULT (DESKTOP) ================= */

    /* Hide Load More button */
    .tour-loadmore-wrap {
      display: none;
  }

  /* Show content by default */
  .tour-more-content {
      max-height: none;
      opacity: 1;
      transform: none;
      overflow: visible;
  }

  /* ================= MOBILE ================= */
  @media (max-width: 768px) {

      /* Show Load More button */
      .tour-loadmore-wrap {
          display: block;
          position: absolute;
          left: 50%;
          bottom: 10%;
          transform: translateX(-50%);
          z-index: 2;
      }

      /* Hide content initially */
      .tour-more-content {
          max-height: 0;
          overflow: hidden;
          opacity: 0;
          transform: translateY(-20px);
          transition:
              max-height .8s ease,
              opacity .5s ease,
              transform .5s ease;
      }

      /* Active State */
      .tour-more-content.is-visible {
          max-height: 9999px;
          opacity: 1;
          transform: translateY(0);
      }

      .tour-loadmore-btn {
          padding: 14px 30px;
          border-radius: 999px;
          background: rgba(20, 20, 20, 0.55);
          color: #fff;
          border: 1px solid rgba(255, 255, 255, 0.45);
          font-weight: 600;
          letter-spacing: .4px;
          cursor: pointer;
          backdrop-filter: blur(6px);
          -webkit-backdrop-filter: blur(6px);
          transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
      }

      .tour-loadmore-btn:hover {
          background: rgba(255, 255, 255, .18);
          transform: translateY(-2px);
      }

  }

  /* ================= ITINERARY ================= */

  .itinerary-item {
      border-left: 3px solid rgba(255, 255, 255, 0.35);
      padding-left: 20px;
      margin-bottom: 28px;
      position: relative;
  }

  /* HEADER ROW */
  .itinerary-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
  }

  .tour-itinerary h4 {
      font-size: 1.1rem;
      margin: 0;
  }

  /* DAY BADGE */
  .tour-itinerary h4 span {
      display: inline-block;
      padding: 4px 12px;
      margin-right: 8px;
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .5px;
      text-transform: uppercase;
      color: #22c55e;
      background: rgba(34, 197, 94, 0.15);
      border-radius: 999px;
  }

  /* SUB HEADER */
  .itinerary-subheader {
      margin: 6px 0 0;
      color: #16a34a;
      font-size: .95rem;
  }

  /* DESCRIPTION */
  .itinerary-desc {
      margin-top: 10px;
      color: rgba(255, 255, 255, .85);
      line-height: 1.6;

      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-6px);
      transition: all .4s ease;
  }

  /* OPEN STATE */
  .itinerary-item.is-open .itinerary-desc {
      max-height: 9999px;
      /* sangat besar, aman */
      opacity: 1;
      transform: translateY(0);
  }


  /* TOGGLE BUTTON */
  .itinerary-toggle {
      background: none;
      border: none;
      padding: 6px;
      cursor: pointer;
  }

  /* ARROW ICON */
  .itinerary-toggle .arrow {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-right: 2px solid rgba(255, 255, 255, .7);
      border-bottom: 2px solid rgba(255, 255, 255, .7);
      transform: rotate(45deg);
      transition: transform .3s ease, opacity .3s ease;
      opacity: .7;
  }

  /* ROTATE WHEN OPEN */
  .itinerary-item.is-open .arrow {
      transform: rotate(-135deg);
      opacity: 1;
  }

  .package-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 30px;
  }

  .package-box {
      background: rgba(255, 255, 255, .06);
      padding: 30px;
      border-radius: 18px;
  }

  .package-box .price {
      display: block;
      margin: 10px 0 16px;
      font-weight: 600;
  }

  /* ================= TOUR FAQ ================= */

  .tour-faq h2 {
    margin-bottom: 30px;
}

/* LIST */
.tour-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ITEM */
.tour-faq-item {
    background: rgba(255, 255, 255, .05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
}

/* QUESTION */
.tour-faq-question {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.tour-faq-question span {
    line-height: 1.4;
}

/* ICON */
.tour-faq-icon {
    transition: transform .3s ease;
    transform: rotate(0deg);
    opacity: .7;
}

/* ANSWER (ANIMATED WRAPPER) */
.tour-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

/* REAL CONTENT */
.tour-faq-answer-inner {
    padding: 0 22px 18px;
}

.tour-faq-answer-inner p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
    opacity: .85;
}

/* OPEN STATE */
.tour-faq-item.is-open .tour-faq-answer {
    max-height: 320px;
    /* aman */
}

.tour-faq-item.is-open .tour-faq-icon {
    transform: rotate(180deg);
}

/* HOVER (DESKTOP ONLY) */
@media (hover: hover) {
    .tour-faq-question:hover {
        background: rgba(255, 255, 255, .04);
    }
}

/* Sticky wrapper */
.tour-booking-sticky {
  position: sticky;
  top: 70px;
  /* max-width: 500px; */
  /* tinggi navbar */
}

/* Booking card */
.tour-booking-card {
  background: rgba(255, 255, 255, .06);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .45);
  margin-right: 16px;
  padding: 15px;


  /* 🔑 PENTING */
  /* max-height: 100vh; */
  /* viewport - navbar - breathing space */
  overflow-y: auto;
}

/* Scrollbar halus (opsional, mewah) */
.tour-booking-card::-webkit-scrollbar {
  width: 6px;
}

.tour-booking-card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .25);
  border-radius: 10px;
}

/* Mobile: disable sticky */
@media (max-width: 991px) {
  .tour-booking-sticky {
      position: static;
      top: auto;
  }

  .tour-booking-card {
      margin-left: 16px;
  }

  .tour-booking-card {
    max-height: none !important;
    overflow: visible !important;
  }
}

/* @media (min-width: 992px) {
  .tour-booking-card {
      margin-right: 16px;
  }
} */

/* SWITCH WRAPPER */
.booking-switch {
  display: flex;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 20px;
}

/* SWITCH BUTTON */
.booking-switch-btn {
  flex: 1;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  padding: 10px 0;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
}

.booking-switch-btn.active {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

/* FORM VISIBILITY */
.booking-form,
.enquiry-form {
  display: none;
  animation: fadeUp .35s ease;
}

.booking-form.is-active,
.enquiry-form.is-active {
  display: block;
}

/* INPUTS (shared) */
.booking-form input,
.enquiry-form input,
.enquiry-form textarea,
.booking-form select {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .35);
  color: #fff;
}

/* BUTTON */
.booking-form button,
.enquiry-form button {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
      opacity: 0;
      transform: translateY(8px);
  }

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

/* ================= RELATED TOURS ================= */
.empty-section {
  height: 50px;
  background-color: #0b0b0b
}

.rt-section {
  /* margin-top: 40px; */
  padding: 100px 0 80px;
  background: radial-gradient(circle at top, #111 0%, #0b0b0b 60%);
}

.rt-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.rt-header {
  text-align: center;
  margin-bottom: 60px;
}

.rt-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color:#fff
}

.rt-header p {
  color: rgba(255, 255, 255, .65);
  max-width: 600px;
  margin: auto;
}

/* GRID */
.rt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* CARD */
.rt-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
  color: #fff;
  transition: transform .4s ease, box-shadow .4s ease;
}

.rt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}

/* IMAGE */
.rt-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.rt-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
          rgba(0, 0, 0, .15),
          rgba(0, 0, 0, .65));
}

/* CONTENT */
.rt-content {
  padding: 24px;
}

/* TAG */
.rt-tag {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .5px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .15);
  color: #22c55e;
  margin-bottom: 12px;
}

/* TITLE */
.rt-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/* DESC */
.rt-content p {
  font-size: .9rem;
  line-height: 1.5;
  opacity: .75;
  margin-bottom: 16px;
}

/* PRICE */
.rt-price {
  font-weight: 600;
  font-size: .9rem;
  opacity: .9;
}

/* ================= PACKAGE SECTION (ISOLATED) ================= */
.td-packages {
  padding: 90px 0;
  background: transparent;
  color: #fff;
  position: relative;
  z-index: 1;
}

.td-packages-container {
  /* max-width: 920px; */
  margin: 0 auto;
  padding: 0 20px;
}

.td-packages-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

/* LIST */
.td-package-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* CARD */
.td-package {
  background: rgba(255, 255, 255, .06);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
}

/* HEADER */
.td-package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
}

.td-package-name {
  font-size: 1.1rem;
  margin: 0;
}

.td-package-toggle {
  transition: transform .3s ease;
}

.td-package.is-open .td-package-toggle {
  transform: rotate(180deg);
}

/* CONTENT */
.td-package-content {
  display: none;
}

.td-package.is-open .td-package-content {
  display: block;
}

/* INNER */
.td-package-inner {
  padding: 0 26px 26px;
}

/* PRICE */
.td-package-price {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 18px;
}

/* BLOCK */
.td-package-block {
  margin-bottom: 20px;
}

.td-package-block h5 {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: .85;
  margin-bottom: 10px;
}

.td-package-block ul {
  padding-left: 18px;
}

.td-package-block li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.td-package-block small {
  display: block;
  opacity: .7;
  font-size: .85rem;
}

/* FEATURED */
.td-package.is-featured {
  border-color: rgba(34, 197, 94, .4);
  background: linear-gradient(to bottom,
          rgba(34, 197, 94, .12),
          rgba(255, 255, 255, .05));
}

.viewsCount{
  margin-top: 15px;
  font-size: .7rem;
  color:#9aa4b2;
  text-align: center;
}

.trekkingDateInfo{
  margin-top: -5px; 
  margin-bottom: 15px; 
  font-size: .7rem;
  color:#9aa4b2;
  text-align: center;
}



/* BOOKING PAGE */
/* HERO */
.booking-hero {
  position: relative;
  padding: 100px 0;
  color: #fff;
}

.booking-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.booking-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.booking-hero-content {
  position: relative;
  max-width: 700px;
  margin-top: 300px;
  margin-bottom: 20px;
}

/* PAGE */
.booking-page {
  background: #0b0b0b;
  padding: 60px 0;
}

/* LEFT */
.booking-left {
  padding-right: 40px;
}

/* SECTION */
.booking-section {
  background: #141414;
  padding: 30px;
  border-radius: 14px;
  margin-bottom: 30px;
}

.booking-section h3 {
  color: #fff;
  margin-bottom: 20px;
}

/* FORM GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-grid textarea {
  grid-column: span 2;
}

/* ACTIONS */
.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* RIGHT STICKY */
.booking-sticky {
  position: sticky;
  top: 70px;
  margin-top: -160px;

  /* aman dari navbar */
}

.booking-summary-desktop,
.booking-summary-mobile {
  background: #1b1b1b;
  color: #fff;
  padding: 25px;
  border-radius: 16px;
}

/* MOBILE */
@media(max-width:991px) {
  .booking-left {
      padding-right: 0;
  }

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

  .form-grid textarea {
    grid-column: span 1; /* override agar ambil satu kolom saja di mobile */
}
}

/* ================= FORM BASE ================= */
.booking-page input,
.booking-page select,
.booking-page textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: all .25s ease;
}

/* Placeholder */
.booking-page input::placeholder,
.booking-page textarea::placeholder {
  color: #fff;
}

/* Focus */
.booking-page input:focus,
.booking-page select:focus,
.booking-page textarea:focus {
  border-color: #c9a14a;
  /* gold accent */
  box-shadow: 0 0 0 2px rgba(201, 161, 74, .15);
  background: #111;
}

/* Select arrow (modern) */
.booking-page select {
  appearance: none;
  background-image:
      linear-gradient(45deg, transparent 50%, #c9a14a 50%),
      linear-gradient(135deg, #c9a14a 50%, transparent 50%);
  background-position:
      calc(100% - 18px) calc(50% - 3px),
      calc(100% - 13px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* Textarea */
.booking-page textarea {
  resize: vertical;
  min-height: 110px;
}

/* ================= INVALID STATE ================= */
.booking-page input.is-invalid,
.booking-page textarea.is-invalid {
  background-color: #0f0f0f;
  border-color: #8f3a38;
  box-shadow: 0 0 0 1px rgba(143, 58, 56, .22);
}

/* Placeholder error – lebih soft */
.booking-page input.is-invalid::placeholder,
.booking-page textarea.is-invalid::placeholder {
  color: #8b6b6b;
}

/* Focus saat memperbaiki */
.booking-page input.is-invalid:focus,
.booking-page textarea.is-invalid:focus {
  background-color: #111;
  border-color: #c9a14a;
  box-shadow: 0 0 0 2px rgba(201, 161, 74, .25);
}


.booking-page select.is-invalid {
  background-color: #0f0f0f !important;
  border-color: #8f3a38;
  box-shadow: 0 0 0 1px rgba(143, 58, 56, .22);
}

/* Panah tetap gold */
.booking-page select.is-invalid {
  background-image:
      linear-gradient(45deg, transparent 50%, #c9a14a 50%),
      linear-gradient(135deg, #c9a14a 50%, transparent 50%);
}

/* Focus */
.booking-page select.is-invalid:focus {
  background-color: #111 !important;
  border-color: #c9a14a;
  box-shadow: 0 0 0 2px rgba(201, 161, 74, .25);
}

/* ================= FORM GRID SPACING ================= */
.booking-section .form-grid {
  gap: 18px;
}

/* ================= SECTION TITLE ================= */
.booking-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .3px;
}

/* ================= SUMMARY LIST ================= */
.booking-summary-desktop ul,
.booking-summary-mobile ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.booking-summary-desktop li,
.booking-summary-mobile li {
  display: flex;
  justify-content: space-between;

  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.booking-summary-desktop li strong,
.booking-summary-mobile li strong {
  text-align: right;
}

/* ================= BUTTONS ================= */
.booking-actions button {
  padding: 14px 26px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all .3s ease;
}

.booking-actions .btn-back {
  background: transparent;
  color: #aaa;
  border: 1px solid #333;
}

.booking-actions .btn-back:hover {
  color: #fff;
  border-color: #c9a14a;
}

.booking-actions .btn-next {
  background: linear-gradient(135deg, #c9a14a, #a67c2c);
  color: #000;
}

.booking-actions .btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 161, 74, .25);
}

.section-info {
  font-size: small;
  color: rgba(203, 213, 225, 0.9);
}

.traveller-lable-first {
  color: #fff;
  margin-top: 20px;
}

.traveller-lable {
  color: #fff;
  margin-top: 30px;
}

.has-breakdown {
  flex-direction: column;
  align-items: stretch;
}

.total-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-breakdown-toggle {
  margin-top: 6px;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  color: #c9a14a;
  cursor: pointer;
  align-self: flex-end;
}

.price-breakdown-toggle:hover {
  text-decoration: underline;
}

.price-breakdown {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, .15);
  display: none;
}

.price-breakdown.open {
  display: block;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #ccc;
  margin-bottom: 6px;
}

.package-type-lable {
  color: #c9a14a;
  font-size: small;
}

/* ================= PAYMENT SWITCHER ================= */
.payment-switcher {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.payment-switch {
  flex: 1;
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: all .25s ease;
}

.payment-switch small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #888;
}

.payment-switch:hover {
  border-color: #555;
}

.payment-switch.active {
  background: linear-gradient(135deg, #c9a14a, #a67c2c);
  color: #000;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(201, 161, 74, .3);
}

.payment-switch.active small {
  color: #000;
  opacity: .8;
}

.payment-switch.is-disabled {
  opacity: .85;
}

.payment-switch.is-disabled .switch-option {
  cursor: not-allowed;
}

.payment-switch.is-disabled .switch-option:first-child {
  opacity: .45;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .45);
  text-decoration: line-through;
}

.payment-switch.is-disabled .switch-option:first-child::after {
  content: "Not available";
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
  color: rgba(255, 255, 255, .4);
}

.payment-switch.is-disabled .switch-option:not(:first-child) {
  background: rgba(255, 255, 255, .14);
}



/* PAYMENT */
/* ================= PAYMENT HERO ================= */
.payment-hero {
  position: relative;
  padding: 120px 0 80px;
  color: #fff;
}

.payment-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.payment-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 2;
}

.payment-hero-content {
  margin-top: 300px;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
  text-align: left;
}

.payment-hero-title {
  font-size: 42px;
  font-weight: 700;
  text-align: left;
}

.payment-hero-desc {
  /* max-width: 520px; */
  margin: 12px auto 0;
  opacity: .85;
  text-align: left;
}

/* ================= LAYOUT ================= */
.payment-wrapper {
  background: #0b0b0b;
  padding: 60px 0;
  /* color: #fff */
}

/* LEFT BOX */
.payment-box {
  background: rgba(255, 255, 255, .05);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 20px;
}

.payment-box-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.payment-box-content p {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 6px;
}

/* PAYMENT METHODS */
.payment-methods {
  display: grid;
  gap: 12px;
}

.payment-method-card {
  background-color: transparent;
  border-radius: 12px;

}

.payment-method {
  /* display: flex; */
  /* align-items: center; */
  /* gap: 12px; */
  /* padding: 14px 16px; */
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  /* border: none; */
  /* background-color: #0b0b0b; */
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.payment-method img {
  height: 22px;
}

.payment-method:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-1px);
}

/* ================= RIGHT SUMMARY ================= */
.payment-sticky {
  position: sticky;
  top: 70px;
  margin-top: -160px;
  z-index: 1000;
  /* safe for navbar */
}

.payment-summary-card {
  background: rgba(20, 19, 19, 1);
  border-radius: 18px;
  padding: 22px;
}

.summary-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: .85;
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, .15);
  margin: 12px 0;
}

.summary-row.total {
  font-size: 16px;
  font-weight: 700;
  opacity: 1;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .payment-sticky {
      position: static;
      margin-top: 30px;
  }
}

/* ================= GLOBAL TEXT IMPROVEMENT ================= */
.payment-wrapper,
.payment-wrapper p,
.payment-wrapper span {
  color: rgba(255, 255, 255, .85);
}

/* ================= HERO ================= */
.payment-hero-title {
  color: #ffffff;
}

.payment-hero-desc {
  color: rgba(255, 255, 255, .85);
}

/* ================= LEFT CONTENT ================= */
.payment-box-title {
  color: #ffffff;
}

.payment-box-content p {
  color: rgba(255, 255, 255, .88);
}

.payment-box-content table {
  color: rgba(255, 255, 255, .88);
}

/* label <strong> */
.payment-box-content strong {
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}

/* ================= PAYMENT METHODS ================= */
.payment-method {
  color: #ffffff;
}

.payment-method:hover {
  color: #ffffff;
}

/* ================= SUMMARY CARD ================= */
.payment-summary-card {
  color: #ffffff;
}

.summary-title {
  color: #ffffff;
}

/* row label (kiri) */
.summary-row span:first-child {
  color: rgba(255, 255, 255, .65);
}

/* row value (kanan) */
.summary-row span:last-child {
  color: #ffffff;
  font-weight: 500;
  text-align: right;
}

/* divider lebih kelihatan */
.summary-divider {
  background: rgba(255, 255, 255, .25);
}

/* total */
.summary-row.total span {
  color: #ffffff;
}

.summary-row.total span:last-child {
  font-size: 18px;
  font-weight: 700;
}

/* ================= OPTIONAL: ACTIVE PAYMENT ================= */
.payment-method.active {
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}


.payment-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.btn-edit-section {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #d6d6d6;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s ease;
}

.btn-edit-section i {
  margin-right: 6px;
}

.btn-edit-section:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}


.extra-service-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: .85;
}

.extra-service-divider {
  height: 1px;
  background: rgba(255, 255, 255, .15);
  margin: 12px 0;
}

.extra-service-row span:first-child {
  color: rgba(255, 255, 255, .65);
}

/* row value (kanan) */
.extra-service-row span:last-child {
  color: #ffffff;
}

.extra-service-row input {
  width: 100px;
  height: 30px;
  border-radius: 5px;
  /* padding:2px */

}

.extra-input {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  color: #ffffff;
}


.payment-agreement {
  margin: 24px 0 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
}

.payment-agree-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.payment-agree-check .form-check-input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, .5);
  cursor: pointer;
}

.payment-agree-check .form-check-input:checked {
  background-color: #1aa36f;
  border-color: #1aa36f;
}

.payment-agree-check .form-check-label {
  font-size: 14px;
  line-height: 1.5;
  color: #d0d0d0;
  cursor: pointer;
}

.payment-agree-check .form-check-label a {
  color: #7ccfff;
  text-decoration: underline;
}

.payment-agree-check .form-check-label a:hover {
  color: #9ee2ff;
}




.payment-agreement-warning {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #facc15;
  /* amber */
}

.payment-agreement-warning.show {
  display: block;
}

.payment-agreement.shake {
  animation: subtleShake .35s ease;
}

@keyframes subtleShake {
  0% {
      transform: translateX(0);
  }

  25% {
      transform: translateX(-3px);
  }

  50% {
      transform: translateX(3px);
  }

  75% {
      transform: translateX(-2px);
  }

  100% {
      transform: translateX(0);
  }
}


.payment-wrap {
  position: relative;
}

.price_amount_lable {
  position: absolute;
  top: -18px;
  /* setengah keluar */
  left: 16px;
  /* jarak dari kiri card */
  z-index: 2;

  background: linear-gradient(135deg, #34d399, #10b981);
  color: #022c22;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.paypal-btn-payment-wrapper {
  height: 80px;
  background-color: #272929;
  padding: 0;
  display: flex;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .04) inset;
}

.btn-payment-wrapper {
  height: 80px;
  background: rgba(255, 255, 255, .99);
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .04) inset;

  display: flex;
  align-items: center;
  /* center vertical */
  justify-content: center;
  /* center horizontal */
}

.btn-payment-wrapper:hover {
  background: rgba(255, 255, 255, .80);
  border-color: rgba(255, 255, 255, .25);
}

.payment-method-logo {
  transition: transform .25s ease, opacity .25s ease;
  opacity: .9;
  filter:
      drop-shadow(0 0 20px rgba(255, 255, 255, .50)) drop-shadow(0 3px 3px rgba(0, 0, 0, .10));


}

/* .payment-method-logo {
  filter:
      drop-shadow(0 0 6px rgba(255, 255, 255, .18)) drop-shadow(0 2px 6px rgba(0, 0, 0, .4));
} */


.btn-payment-wrapper:hover .payment-method-logo {
  transform: translateY(-2px);
  opacity: 1;
}

.btn-payment-wrapper:active {
  transform: scale(0.985);
}


.btn-payment-wrapper {
  position: relative;
  overflow: hidden;
}

/* default: hidden */
.payment-loading-bar {
  position: absolute;
  bottom: 0;
  left: -40%;
  width: 40%;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg,
          transparent,
          rgba(255, 255, 255, .6),
          transparent);
}

/* aktif hanya saat loading */
.btn-payment-wrapper.loading .payment-loading-bar {
  opacity: 1;
  animation: loadingBar 1.4s ease-in-out infinite;
}

@keyframes loadingBar {
  0% {
      left: -40%;
  }

  100% {
      left: 100%;
  }
}

/* optional: disable interaction */
.btn-payment-wrapper.loading {
  pointer-events: none;
  opacity: .95;
}

/* aktif hanya saat loading */
.paypal-btn-payment-wrapper.loading .payment-loading-bar {
  opacity: 1;
  animation: loadingBar 1.4s ease-in-out infinite;
}

/* @keyframes loadingBar {
  0% {
      left: -40%;
  }

  100% {
      left: 100%;
  }
} */

/* optional: disable interaction */
.paypal-btn-payment-wrapper.loading {
  pointer-events: none;
  opacity: .95;
}

/* ================= PRINT INVOICE ================= */
.summary-actions {
  margin-top: 20px;
}

.btn-print-invoice {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-print-invoice i {
  font-size: 15px;
}

.btn-print-invoice:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .6);
}

.payment-verification-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;

  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  align-items: center;
  justify-content: center;
}

.payment-verification-overlay.show {
  display: flex;
}

.payment-verification-box {
  text-align: center;
  max-width: 320px;
  padding: 32px 28px;

  background: #121414;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);

  box-shadow:
      0 20px 50px rgba(0, 0, 0, .6),
      0 0 0 1px rgba(255, 255, 255, .04) inset;
}

/* Spinner – soft & premium */
.verification-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;

  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .15);
  border-top-color: rgba(255, 255, 255, .75);

  animation: spin 1s linear infinite;
}

.payment-verification-box h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
}

.payment-verification-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .7);
}

@keyframes spin {
  to {
      transform: rotate(360deg);
  }
}

.payment-confirmed-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;

  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  align-items: center;
  justify-content: center;
}

.payment-confirmed-overlay.show {
  display: flex;
}

.payment-confirmed-box {
  text-align: center;
  max-width: 340px;
  padding: 34px 28px;

  background: #121414;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);

  box-shadow:
      0 20px 50px rgba(0, 0, 0, .6),
      0 0 0 1px rgba(255, 255, 255, .04) inset;
}

/* Checkmark */
.confirmation-check {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
}

.confirmation-check svg {
  width: 100%;
  height: 100%;
}

.confirmation-check circle {
  stroke: #34d399;
  stroke-width: 2.5;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: circleDraw .4s ease-out forwards;
}

.confirmation-check path {
  stroke: #34d399;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkDraw .25s ease-out .4s forwards;
}

.payment-confirmed-box h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
}

.payment-confirmed-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .7);
}

@keyframes circleDraw {
  to {
      stroke-dashoffset: 0;
  }
}

@keyframes checkDraw {
  to {
      stroke-dashoffset: 0;
  }
}

.card-payment-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;

  background: rgba(0, 0, 0, .55);
  /* sedikit lebih terang */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  align-items: center;
  justify-content: center;
}

.card-payment-overlay.show {
  display: flex;
}

/* Modal box */
.card-payment-modal {
  width: 100%;
  max-width: 450px;

  background: #1a1d1d;
  /* lebih terang dari #121414 */
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);

  box-shadow:
      0 25px 60px rgba(0, 0, 0, .55),
      0 0 0 1px rgba(255, 255, 255, .05) inset;

  animation: modalUp .35s ease-out;
  overflow: hidden;
}

/* Header */
.card-payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;

  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
}

.card-payment-header img {
  height: 50px;
}

.card-payment-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .55);
  font-size: 22px;
  cursor: pointer;
}

.card-payment-close:hover {
  color: rgba(255, 255, 255, .85);
}

/* Body */
.card-payment-body {
  text-align: center;
  padding: 28px 24px;
}

.card-payment-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
}

.card-payment-body p {
  margin: 0 0 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
}

/* Spinner */
.card-payment-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto;

  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .2);
  border-top-color: rgba(255, 255, 255, .85);

  animation: spin 1s linear infinite;
}

/* Footer */
.card-payment-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;

  background: rgba(255, 255, 255, .015);
}

.secure-text {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
}

/* Animations */
@keyframes spin {
  to {
      transform: rotate(360deg);
  }
}

@keyframes modalUp {
  from {
      opacity: 0;
      transform: translateY(10px) scale(.985);
  }

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


/* edit traveller */
.traveller-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;

  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  align-items: center;
  justify-content: center;
}

.traveller-modal-overlay.show {
  display: flex;
}

/* Modal box */
.traveller-modal {
  width: 100%;
  max-width: 520px;
  background: #141717;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
      0 30px 80px rgba(0,0,0,.75),
      0 0 0 1px rgba(255,255,255,.04) inset;

  overflow: hidden;
  animation: modalUp .35s ease-out;
}

/* Header */
.traveller-modal-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid rgba(255,255,255,.06);
}

.traveller-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.traveller-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 22px;
  cursor: pointer;
}

.traveller-modal-close:hover {
  color: #fff;
}

/* Body */
.traveller-modal-body {
  padding: 24px 22px;
}

/* Form */
.form-group-payment {
  margin-bottom: 16px;
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-group-payment label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: rgba(255,255,255,.6);
}

.form-group-payment input,
.form-group-payment select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  height: 40px;
  background: #1b1f1f;
  color: #fff;
  font-size: 14px;

  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.form-group-payment textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  /* height: 40px; */
  background: #1b1f1f;
  color: #fff;
  font-size: 14px;

  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.form-group-payment input.is-invalid,
.form-group-payment select.is-invalid,
.form-group-payment textarea.is-invalid {
  border: 1px solid #ff4d4f;
  box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.15);
}

/* Optional: saat focus tetap merah */
.form-group-payment input.is-invalid:focus,
.form-group-payment select.is-invalid:focus,
.form-group-payment textarea.is-invalid:focus {
  border: 1px solid #ff4d4f;
  box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.25);
}

.form-group-payment input::placeholder {
  color: rgba(255,255,255,.35);
}

.form-group-payment input:focus,
.form-group-payment select:focus,
.form-group-payment textarea:focus  {
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 0 0 2px rgba(255,255,255,.08);
}

/* Footer */
.traveller-modal-footer {
  padding: 16px 22px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;

  border-top: 1px solid rgba(255,255,255,.06);
}

.btn-primary {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,.3);
}

/* Animation */
@keyframes modalUp {
  from {
      opacity: 0;
      transform: translateY(12px) scale(.98);
  }
  to {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}

.avatar-upload {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Image */
.avatar-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.guest-avatar-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

/* Overlay */
.avatar-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;

  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: scale(.96);
  transition: opacity .35s ease, transform .35s ease;
}

/* Text */
.avatar-text {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;

  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}

/* Hover state */
.avatar-upload:hover .avatar-overlay {
  opacity: 1;
  transform: scale(1);
}

.avatar-upload:hover .avatar-text {
  opacity: 1;
  transform: translateY(0);
}

.avatar-upload:hover .avatar-img {
  transform: scale(1.04);
  filter: brightness(.85);
}

.avatar-upload::after {
  content: '✎';
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: .85;
}

.mc-calendar {
  z-index: 999999 !important;
  /* lebih tinggi dari modal */
  position: absolute !important;
}

.img_error_message{
  width: 100%;
  text-align: center;
  color: var(--rtc-error);
  font-size: small;
}

.booking-status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.booking-status.confirmed {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.4);
}

.booking-status.pending {
  background: rgba(241, 196, 15, 0.15);
  color: #f1c40f;
  border: 1px solid rgba(241, 196, 15, 0.4);
}

.booking-status.cancelled {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.4);
}

.booking-status.departed {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.4);
}

/* Flash payment success */
.flash-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  max-width: 620px;
  margin: 24px auto;
  padding: 16px 20px;

  border-radius: 12px;

  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;

  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.12);

  animation: flashEnter 0.4s ease-out;
}

.flash-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background-color: #22C55E;
}

.flash-icon svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
}

.flash-content strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #14532D;
  margin-bottom: 4px;
}

.flash-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #166534;
}

/* subtle entrance */
@keyframes flashEnter {
  from {
      opacity: 0;
      transform: translateY(-6px);
  }

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

/* HERO */
.packing-page-hero-image {
  position: relative;
  height: 420px;
  background: url('/assets/img/general/sunset.webp') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.packing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.6),
          rgba(0, 0, 0, 0.75));
}

.packing-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  margin-top: 300px;
  margin-bottom: 20px;
}

.packing-page-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.packing-page-subtitle {
  font-size: 17px;
  color: #ddd;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
  margin-bottom: 30px;
}


/* PACKING SECTION */
.packing-section {
  padding: 60px 0;
  background: #0f0f0f;
}

.packing-card {
  background: #151515;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

.packing-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}

.packing-title-provide-by-rtc {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  margin-top: 70px;
}


/* ITEM */
.packing-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.packing-item:last-child {
  border-bottom: none;
}

.packing-item input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: #2ecc71;
  cursor: pointer;
}

.packing-content label {
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 4px;
  cursor: pointer;
}

.packing-content small {
  color: #aaa;
  font-size: 13px;
  line-height: 1.5;
}


/* Checked Effect */
.packing-item input:checked+.packing-content label {
  text-decoration: line-through;
  color: #777;
}

.packing-title-inportant-notes {
  color: #fff;
  font-weight: 600;
  margin-top: 70px;
  margin-bottom: 5px;
}

.packing-title-inportant-notes-list {
  color: #777;
  margin-bottom: 5px;
  margin-top: 5px;
}

/* ================= TOURS LIST SECTION ================= */
.tours-list-section {
  background: #0b0b0b;
  padding: 80px 0;
  color: #fff;
}

/* ================= FILTER ================= */
.tours-filter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: #121212;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 40px;
}

.filter-group label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 6px;
}

.filter-group input,
.filter-group select {
  width: 100%;
  padding: 10px 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  color: #fff;
}

.filter-btn {
  align-self: end;
  padding: 12px;
  background: #1f8b4c;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}

/* ================= GRID ================= */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.tour-card-item {
  background: #121212;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.tour-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
}

.tour-card-image {
  position: relative;
  height: 220px;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #1f8b4c;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
}

/* ================= BODY ================= */
.tour-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tour-title {
  font-size: 18px;
  font-weight: 600;
}

.tour-meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

.tour-snippet {
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.6;
}

/* ================= FOOTER ================= */
.tour-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-price strong {
  font-size: 18px;
}

.tour-btn {
  padding: 10px 16px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}

.tour-btn:hover {
  background: rgba(255, 255, 255, .25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .tours-filter {
      grid-template-columns: 1fr;
  }

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

.my-booking-page-hero-image {
  position: relative;
  height: 420px;
  background: url('/assets/img/general/sunset.webp') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.my-booking-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.65),
          rgba(0, 0, 0, 0.8));
}

.my-booking-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.my-booking-page-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 300px;
}

.my-booking-page-subtitle {
  font-size: 17px;
  color: #ddd;
  max-width: 650px;
  margin: auto;
}

.booking-search-section {
  padding: 80px 0;
  background: #0f0f0f;
}

.booking-search-card {
  max-width: 600px;
  margin: auto;
  background: #151515;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .5);
}

.search-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.search-desc {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 30px;
}

/* FORM */
.booking-search-form .form-group {
  margin-bottom: 20px;
}

.booking-search-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #ccc;
}

.booking-search-form input,
.booking-search-form select {
  width: 100%;
  padding: 12px 14px;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  transition: .3s;
}

.booking-search-form input:focus,
.booking-search-form select:focus {
  border-color: #2ecc71;
  outline: none;
  box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
}

/* BUTTON */
.btn-search-booking {
  width: 100%;
  padding: 14px;
  background: #2ecc71;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: .3s;
}

.btn-search-booking:hover {
  background: #27ae60;
}

/* INVALID INPUT */
.booking-search-form input.is-invalid,
.booking-search-form select.is-invalid {
  border-color: #e74c3c;
  /* background: rgba(231, 76, 60, 0.08); */
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.15);
}

/* ERROR TEXT */
.invalid-feedback {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 6px;
  display: block;
}

/* Optional: smooth transition */
.booking-search-form input,
.booking-search-form select {
  transition: all .2s ease;
}

.secure-note {
  font-size: 12px;
  color: #777;
  margin-top: 25px;
  text-align: center;
}

.website-input {
  position: absolute;
  left: -9999px;
}

/* Trekking Certificate */
.certificate-hero {
  background: url('<?= base_url(); ?>assets/images/certificate-hero.jpg') center center/cover no-repeat;
}

.certificate-search-section {
  padding: 90px 0;
  background: #0f0f0f;
}

.certificate-search-card {
  max-width: 620px;
  margin: auto;
  background: #151515;
  padding: 45px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.search-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.search-desc {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 30px;
}

.certificate-search-form .form-group {
  margin-bottom: 22px;
}

.certificate-search-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #ccc;
}

.certificate-search-form input,
.certificate-search-form select {
  width: 100%;
  padding: 13px 14px;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  transition: .3s;
}

.certificate-search-form input:focus,
.certificate-search-form select:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Button */
.btn-search-certificate {
  width: 100%;
  padding: 15px;
  background: #3498db;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: .3s;
}

.btn-search-certificate:hover {
  background: #2980b9;
}

/* Error Alert */
.certificate-error-alert {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #ff6b6b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}

/* Invalid */
.certificate-search-form input.is-invalid,
.certificate-search-form select.is-invalid {
  border-color: #e74c3c;
  /* background: rgba(231, 76, 60, 0.08); */
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.15);
}

.invalid-feedback {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 6px;
}

/* About RTC */
.about-section {
  padding: 90px 0;
  background: #0f0f0f;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.about-text p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.about-features {
  padding: 80px 0;
  background: #111;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: #151515;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: .3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 204, 113, 0.4);
}

.feature-card h4 {
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  color: #aaa;
  font-size: 14px;
}

@media (max-width: 992px) {
  .about-grid {
      grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .feature-grid {
      grid-template-columns: 1fr;
  }
}

.about-mission {
  padding: 100px 0;
  background: linear-gradient(to bottom, #0f0f0f, #0a0a0a);
  text-align: center;
}

.mission-box h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.mission-box p {
  max-width: 700px;
  margin: auto;
  color: #aaa;
  line-height: 1.8;
}

.journey-section {
  padding: 100px 0;
  background: #111;
}

.timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 30px;
  border-left: 2px solid rgba(255, 255, 255, .08);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-year {
  font-size: 18px;
  font-weight: 700;
  color: #2ecc71;
  margin-bottom: 10px;
}

.timeline-content h4 {
  color: #fff;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 12px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
}

.timeline-intro {
  max-width: 700px;
  margin: 20px auto 40px;
  text-align: center;
  color: #aaa;
}

.about-future {
  padding: 100px 0;
  background: linear-gradient(to bottom, #0f0f0f, #0a0a0a);
  text-align: center;
}

.about-future h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.about-future p {
  max-width: 700px;
  margin: auto;
  color: #aaa;
  line-height: 1.8;
}

/* Galery */
.gallery-section {
  padding: 80px 0 100px;
  background: #0f0f0f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Landscape default */
.landscape {
  grid-row: span 1;
}

/* Portrait lebih tinggi */
.portrait {
  grid-row: span 2;
}

@media (max-width: 1200px) {
  .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

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

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}




/* Blog List */
.blog-list-hero {
  background: url('/assets/img/general/drone-rim-senaru.webp') center center/cover no-repeat;
  position: relative;
  min-height: 480px;
  color: #fff;
  overflow: hidden;
}

.blog-list-search-section {
  padding: 50px 0 20px;
  background: #0f0f0f;
}

.blog-list-search-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  gap: 10px;
}

.blog-list-search-form input {
  flex: 1;
  padding: 14px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  color: #fff;
}

.blog-list-search-form button {
  padding: 14px 20px;
  background: #2ecc71;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.blog-list-list-section {
  padding: 70px 0 100px;
  background: #0f0f0f;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .blog-list-grid {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .blog-list-grid {
      grid-template-columns: 1fr;
  }
}

.blog-list-card {
  background: #151515;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .05);
  transition: .3s;
}

.blog-list-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 204, 113, .4);
}

.blog-list-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-list-content {
  padding: 20px;
}

.blog-list-date {
  font-size: 12px;
  color: #777;
}

.blog-list-content h3 {
  color: #fff;
  margin: 10px 0;
  font-size: 18px;
}

.blog-list-content p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 15px;
}

.read-more {
  color: #2ecc71;
  font-weight: 600;
  text-decoration: none;
}

/* Blog details */
.blog-detail-hero {
  padding: 140px 0 100px;
  background-size: cover;
  background-position: center;
}

.blog-detail-hero h1 {
  color: #fff;
  font-size: 36px;
  max-width: 800px;
}

.blog-category {
  display: inline-block;
  background: #2ecc71;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-meta {
  margin-top: 15px;
  color: #ddd;
  font-size: 14px;
  display: flex;
  gap: 20px;
}

.blog-detail-section {
  padding: 80px 0;
  background: #0f0f0f;
}

.blog-detail-wrapper {
  max-width: 850px;
  margin: auto;
  /* background-color: #f5f5f3; */
  border-radius: 20px;
}

.blog-content {
  color: #fff;
  line-height: 1.9;
  font-size: 16px;
  padding: 30px;
}

.blog-content h2,
.blog-content h3 {
  margin-top: 40px;
  color: #fff;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 30px 0;
}

.blog-tags {
  margin-top: 50px;
}

.tag-item {
  display: inline-block;
  padding: 8px 14px;
  margin: 5px 5px 0 0;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
  transition: .3s;
}

.tag-item:hover {
  background: #2ecc71;
  color: #000;
}

.blog-navigation {
  margin-top: 60px;
  padding: 30px;
  border-top: 1px solid black;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.nav-post {
  flex: 1;
  color: #2ecc71;
  text-decoration: none;
  font-weight: 600;
}

.next-post {
  text-align: right;
}

/* Hero */
.faq-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.faq-hero-content {
  position: relative;
  z-index: 3;
}

.faq-hero-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  margin-top: 200px;
}

.faq-hero-desc {
  font-size: 1.2rem;
}


.weather-icon {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Tooltip bubble */
.weather-icon::after {
  content: attr(data-desc);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(0, 0, 0, .85);
  color: #fff;
  font-size: .75rem;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease;
  z-index: 20;
}

/* Arrow */
.weather-icon::before {
  content: '';
  position: absolute;
  bottom: 108%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, .85);
  opacity: 0;
  transition: opacity .2s ease;
}

/* Show on hover */
.weather-icon:hover::after,
.weather-icon:hover::before,
.weather-icon:focus-within::after,
.weather-icon:focus-within::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* TABLE WRAPPER */
.table-responsive {
  overflow-x: auto;
  position: relative;
}

/* FREEZE FIRST COLUMN */
.table .frezz {
  position: sticky;
  left: 0;
  z-index: 5;

  /* WAJIB: background agar tidak transparan */
  background: #fff;

  /* optional: visual separator */
  box-shadow: 2px 0 6px rgba(0, 0, 0, .08);
}

/* Supaya header lebih kuat */
.table tr:first-child .frezz {
  z-index: 6;
}

.p0m0 {
  margin: 0px;
  padding: 0px
}

.date-sunrise-sunset {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  font-size: 14px;
}

/* icon vertical alignment */
.date-sunrise-sunset span {
  vertical-align: middle;
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .date-sunrise-sunset {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
  }

  .date-sunrise-sunset>* {
      display: flex;
      align-items: center;
      gap: 6px;
  }
}

.tos-section {
  margin-top: 50px
}

/* ===============================
WEATHER SWITCH – PREMIUM UI
=============================== */

/* FORM VISIBILITY */
.weather-data {
  display: none;
  animation: fadeUp .35s ease;
}

.weather-data.is-active {
  display: block;
}

/* SWITCH CONTAINER */
.weather-switch {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

/* SWITCH BUTTON */
.weather-switch-btn {
  flex: 1;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
      background .25s ease,
      color .25s ease,
      box-shadow .25s ease,
      transform .2s ease;
}

/* ACTIVE STATE */
.weather-switch-btn.active {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

/* HOVER (DESKTOP ONLY) */
@media (hover: hover) {
  .weather-switch-btn:hover {
      background: rgba(255, 255, 255, .12);
      color: #fff;
      transform: translateY(-1px);
  }
}

/* ===============================
MOBILE (≤ 768px)
2 ROW GRID LAYOUT
=============================== */

@media (max-width: 768px) {
  .weather-switch {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;

      /* FIX UTAMA */
      background: rgba(255, 255, 255, .08);
      border-radius: 18px;
      /* jangan 999px */
      padding: 10px;
  }

  .weather-switch-btn {
      background: rgba(255, 255, 255, .08);
      border-radius: 999px;
      /* tombol tetap pill */
      padding: 14px 0;
      font-size: .85rem;
  }

  .weather-switch-btn.active {
      background: rgba(255, 255, 255, .2);
  }
}


/* ===============================
SMALL MOBILE (≤ 480px)
=============================== */

@media (max-width: 480px) {
  .weather-switch-btn {
      font-size: .8rem;
      padding: 12px 0;
  }
}

/* ===============================
ANIMATION
=============================== */

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

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

.weather-disclaimer {
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  background: #f8fafc;
  color: #64748b;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

/* GRID */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* CARD */
.booking-card {
  position: relative;
  display: block;
  padding: 20px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* CONTENT */
.booking-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-date {
  font-size: 14px;
  opacity: 0.9;
}

.booking-package {
  font-size: 18px;
  font-weight: 600;
}

.booking-type {
  font-size: 14px;
  opacity: 0.85;
}

.booking-code {
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.7;
}

/* BADGE */
.status-badge {
  position: absolute;
  top: 12px;
  right: -35px;
  padding: 6px 40px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
  text-align: center;
  color: #fff;
}

/* STATUS COLORS */

/* Pending */
.booking-status-0 {
  background: linear-gradient(135deg, rgba(255,165,0,.35), rgba(0,0,0,.7));
  border: 1px solid rgba(255,165,0,.4);
}
.status-0 { background: #ff9800; }

/* Confirmed */
.booking-status-1 {
  background: linear-gradient(135deg, rgba(40,167,69,.35), rgba(0,0,0,.7));
  border: 1px solid rgba(40,167,69,.4);
}
.status-1 { background: #28a745; }

/* Cancelled */
.booking-status-2 {
  background: linear-gradient(135deg, rgba(220,53,69,.35), rgba(0,0,0,.7));
  border: 1px solid rgba(220,53,69,.4);
}
.status-2 { background: #dc3545; }

/* Departed */
.booking-status-4 {
  background: linear-gradient(135deg, rgba(0,123,255,.35), rgba(0,0,0,.7));
  border: 1px solid rgba(0,123,255,.4);
}
.status-4 { background: #007bff; }

.tos-section {
  margin-top: 50px
}


/* Guest */
.guest-dashboard {
  padding: 80px 0 100px;
  background: #0f0f0f;
  min-height: 70vh;
}

.dashboard-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Sidebar */
.dashboard-sidebar {
  background: #151515;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .05);
}

.guest-info {
  text-align: center;
  margin-bottom: 30px;
}

.guest-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.guest-info h4 {
  color: #fff;
  margin-bottom: 5px;
}

.guest-info p {
  font-size: 13px;
  color: #888;
}

/* Menu */
.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-menu a {
  padding: 12px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #aaa;
  transition: .3s;
  font-size: 14px;
}

.dashboard-menu a:hover {
  background: rgba(46, 204, 113, .1);
  color: #2ecc71;
}

.dashboard-menu a.active {
  background: #2ecc71;
  color: #000;
  font-weight: 600;
}

.dashboard-menu a.logout {
  margin-top: 20px;
  background: rgba(255, 0, 0, .08);
  color: #ff6b6b;
}

/* Content */
.dashboard-content {
  background: #151515;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .05);
  color: #ddd;
}

@media (max-width: 992px) {
  .dashboard-wrapper {
      grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
      margin-bottom: 30px;
  }
}

/* Form Dashboard */
.dashboard-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #aaa;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  color: #fff;
}

.btn-primary {
  background: #2ecc71;
  color: #000;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: #2ecc71;
  color: #000;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Disabled State */
.btn-primary:disabled,
.btn-primary.disabled {
  background: #bdbdbd;
  /* abu netral */
  color: #666;
  /* text lebih soft */
  cursor: not-allowed;
  opacity: 0.7;
}


/* Mobile Dropdown Default Hidden */
.dashboard-mobile-menu {
  display: none;
  margin-bottom: 20px;
}

.dashboard-mobile-menu button {
  width: 100%;
  padding: 14px;
  background: #151515;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.dashboard-mobile-dropdown {
  display: none;
  flex-direction: column;
  background: #151515;
  border-radius: 10px;
  margin-top: 10px;
  overflow: hidden;
}

.dashboard-mobile-dropdown a {
  padding: 12px 15px;
  text-decoration: none;
  color: #aaa;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.dashboard-mobile-dropdown a:hover {
  background: rgba(46, 204, 113, .1);
  color: #2ecc71;
}

.dashboard-mobile-dropdown a.logout {
  color: #ff6b6b;
}

/* Responsive Behavior */
@media (max-width: 992px) {

  .dashboard-wrapper {
      grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
      display: none;
  }

  .dashboard-mobile-menu {
      display: block;
  }
}

/* MAIN CARD */
.dashboard-rinjani-status-card {
    display: block;
    width: 100%;
    padding: 22px 24px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-rinjani-status-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* INNER LAYOUT */
.dashboard-rinjani-status-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.dashboard-rinjani-status-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 70%;
}

.dashboard-rinjani-status-indicator {
    width: 14px;
    height: 14px;
    min-width: 14px;
    /* penting */
    min-height: 14px;
    /* tambahan safety */
    border-radius: 50%;
    flex-shrink: 0;
    /* supaya tidak gepeng */
    aspect-ratio: 1 / 1;
    /* extra safety modern */
}


/* TEXT */
.dashboard-rinjani-status-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.dashboard-rinjani-status-desc {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.4;
}

/* RIGHT SIDE */
.dashboard-rinjani-status-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dashboard-rinjani-status-updated {
    font-size: 13px;
    opacity: 0.8;
}

.dashboard-rinjani-status-link {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

/* STATUS 1 = OPEN / GOOD */
.dashboard-rinjani-status-1 {
    background: linear-gradient(135deg, rgba(40, 167, 69, .35), rgba(0, 0, 0, .7));
    border: 1px solid rgba(40, 167, 69, .4);
}

.dashboard-rinjani-status-1 .dashboard-rinjani-status-indicator {
    background: #28a745;
}

/* STATUS 2 = WARNING / LIMITED */
.dashboard-rinjani-status-2 {
    background: linear-gradient(135deg, rgba(255, 165, 0, .35), rgba(0, 0, 0, .7));
    border: 1px solid rgba(255, 165, 0, .4);
}

.dashboard-rinjani-status-2 .dashboard-rinjani-status-indicator {
    background: #ff9800;
}

/* STATUS 3 = CLOSED / ALERT */
.dashboard-rinjani-status-3 {
    background: linear-gradient(135deg, rgba(220, 53, 69, .35), rgba(0, 0, 0, .7));
    border: 1px solid rgba(220, 53, 69, .4);
}

.dashboard-rinjani-status-3 .dashboard-rinjani-status-indicator {
    background: #dc3545;
}

.google-soft-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background-color: #f3f7ff;
  border: 1px solid #dce6ff;
  color: #2c3e70;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.google-soft-alert-icon {
  flex-shrink: 0;
  color: #4c6ef5;
  margin-top: 2px;
}

.google-soft-alert-content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.google-soft-alert-content p {
  margin: 0;
  font-size: 13px;
  color: #4a5568;
}

/* Connect Card Dashboad */
.booking-connect-card {
  background: #1e1f24;
  /* slightly lighter than main bg */
  border: 1px solid #2c2f36;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  animation: fadeInConnect 0.3s ease-in-out;
}

.booking-connect-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.booking-connect-card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #b5b8c5;
  line-height: 1.6;
}

.booking-connect-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-connect-booking {
  background: #ff7a18;
  /* warm accent - feels outdoor/adventure */
  color: #ffffff;
  border: none;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-connect-booking:hover {
  background: #e5670f;
  transform: translateY(-1px);
}

.btn-connect-later {
  background: transparent;
  border: 1px solid #3a3f47;
  color: #b5b8c5;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-connect-later:hover {
  background: #2a2d33;
  color: #ffffff;
}

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

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

.google-connect-card {
  background: #1e1f24;
  border: 1px solid #2c2f36;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  animation: fadeInGoogle 0.3s ease-in-out;
}

.google-connect-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.google-connect-card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #b5b8c5;
  line-height: 1.6;
}

.google-connect-card .sub-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #8f94a3;
}

.google-connect-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-google-connect {
  background: #ffffff;
  color: #1e1f24;
  border: none;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-google-connect:hover {
  background: #e6e6e6;
  transform: translateY(-1px);
}

.btn-google-later {
  background: transparent;
  border: 1px solid #3a3f47;
  color: #b5b8c5;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-google-later:hover {
  background: #2a2d33;
  color: #ffffff;
}

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

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

/* HEADER ROW */
.dashboard-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  /* margin-top: -30px; */
  /* margin-right: -30px; */
}

/* NOTIFICATION BUTTON */
.dashboard-notification-wrapper {
  position: relative;
}

.dashboard-notification-btn {
  position: relative;
  background: #1f2937;
  border: 1px solid #2d3748;
  color: #e5e7eb;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s ease;
}

.dashboard-notification-btn:hover {
  background: #374151;
}

/* BADGE */
.notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #22c55e;
  /* konsisten dengan hijau kamu */
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50px;
  min-width: 18px;
  text-align: center;
}

/* DROPDOWN */
.dashboard-notification-dropdown {
  position: absolute;
  right: 0;
  top: 48px;
  width: 260px;
  background: #111827;
  border: 1px solid #2d3748;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  display: none;
  z-index: 50;
}

.dashboard-notification-dropdown2 {
  position: absolute;
  right: 0;
  top: 48px;
  width: 260px;
  background: #111827;
  border: 1px solid #2d3748;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  display: none;
  z-index: 50;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
  border-bottom: 1px solid #1f2937;
}

.notif-item:last-child {
  border-bottom: none;
}

.notif-item:hover {
  background: #1f2937;
}

/* UNREAD */
.notif-unread {
  background: rgba(34, 197, 94, 0.06);
}

.notif-unread .notif-title {
  font-weight: 600;
  color: #f3f4f6;
}

/* READ */
.notif-read {
  opacity: 0.7;
}

.notif-read .notif-title {
  font-weight: 500;
  color: #9ca3af;
}

/* DOT */
.notif-dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* Content */
.notif-content {
  flex: 1;
}

.notif-title {
  font-size: 14px;
  line-height: 1.4;
}

.notif-time {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}


/* ===============================
   Trekking Certificate Section
   =============================== */

   .trecer-section {
    background: linear-gradient(135deg, #0c0c0c, #141414);
    padding: 80px 20px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.trecer-container {
    max-width: 900px;
    margin: 0 auto;
}

.trecer-header {
    text-align: center;
    margin-bottom: 50px;
}

.trecer-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
}

.trecer-subtitle {
    color: #aaa;
    margin-top: 10px;
    font-size: 15px;
}

/* ===============================
   Card
   =============================== */

.trecer-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Success State */

.trecer-success {
    border-left: 4px solid #00c896;
}

.trecer-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: #00c896;
    color: #000;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Failed State */

.trecer-failed {
    border-left: 4px solid #ff3b3b;
    text-align: center;
}

.trecer-badge-failed {
    background: #ff3b3b;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.trecer-error-message {
    color: #ccc;
    font-size: 15px;
}

/* ===============================
   Content Layout
   =============================== */

.trecer-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

/* Avatar */

.trecer-avatar-wrapper {
    flex: 0 0 140px;
    text-align: center;
}

.trecer-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00c896;
}

/* Info */

.trecer-info {
    flex: 1;
}

.trecer-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #222;
}

.trecer-row:last-child {
    border-bottom: none;
}

.trecer-label {
    color: #888;
    font-size: 14px;
}

.trecer-value {
    font-weight: 500;
    font-size: 15px;
}

/* ===============================
   Responsive
   =============================== */

@media (max-width: 768px) {
    .trecer-content {
        flex-direction: column;
        text-align: center;
    }

    .trecer-row {
        flex-direction: column;
        gap: 5px;
    }

    .trecer-label {
        font-size: 13px;
    }

    .trecer-value {
        font-size: 16px;
    }
}



/* INPUTS (shared) */
.my-invoice-form input,
.my-invoice-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .35);
  color: #fff;
}

.my-invoice-form-input{
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .35);
  color: #fff;
}

.my-invoice-form-input.is-invalid {
  border: 1px solid rgba(255, 70, 70, 0.8);
  background: rgba(255, 70, 70, 0.08);
  color: #ffffff;
  box-shadow: 0 0 8px rgba(255, 70, 70, 0.4);
}

/* Optional: focus state when invalid */
.my-invoice-form-input.is-invalid:focus {
  outline: none;
  border: 1px solid rgba(255, 90, 90, 1);
  box-shadow: 0 0 12px rgba(255, 70, 70, 0.6);
}

/* BUTTON */
.my-invoice-form button {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}


.my-invoice-form {
  display: grid;
  gap: 16px;
}

.card-my-invoice {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, 1);
  color: #fff;
}

/* ===============================
   Invoice Status Variants
   =============================== */

/* PAID */
.card-my-invoice.invoice-card-paid {
  border: 1px solid rgba(0, 200, 120, 0.6);
  /* background: rgba(0, 200, 120, 0.12); */
  color: #00e09d;
  font-weight: 600;
}

/* PARTIAL */
.card-my-invoice.invoice-card-partial {
  border: 1px solid rgba(245, 183, 0, 0.6);
  /* background: rgba(245, 183, 0, 0.12); */
  color: #f5b700;
  font-weight: 600;
}

/* UNPAID */
.card-my-invoice.invoice-card-unpaid {
  border: 1px solid rgba(255, 70, 70, 0.6);
  /* background: rgba(255, 70, 70, 0.12); */
  color: #ff6b6b;
  font-weight: 600;
}

.rinjani-update-section {
  background: linear-gradient(180deg, #0a0a0a, #111);
  padding: 100px 20px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.rinjani-update-container {
  max-width: 1000px;
  margin: auto;
}

.rinjani-update-header {
  text-align: center;
  margin-bottom: 60px;
}

.rinjani-update-title {
  font-size: 36px;
  font-weight: 700;
  color: #f5d76e;
}

.rinjani-update-subtitle {
  color: #aaa;
}

/* Latest Card */
.rinjani-update-latest {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 18px;
  padding: 45px;
  margin-bottom: 70px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Badge */
.rinjani-update-badge {
  position: absolute;
  top: -18px;
  right: 30px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
}

/* STATUS COLORS */
.rinjani-update-open .rinjani-update-badge {
  background: #00c896;
  color: #000;
}

.rinjani-update-closed .rinjani-update-badge {
  background: #ff4d4d;
  color: #fff;
}

.rinjani-update-warning .rinjani-update-badge {
  background: #f5d76e;
  color: #111;
}

/* Text */
.rinjani-update-date {
  color: #bbb;
  margin-bottom: 15px;
  font-size: 14px;
}

.rinjani-update-short {
  font-size: 24px;
  margin-bottom: 15px;
}

.rinjani-update-full {
  color: #ddd;
  line-height: 1.7;
}

/* Archive */
.rinjani-update-archive-title {
  font-size: 22px;
  margin-bottom: 25px;
}

.rinjani-update-archive-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rinjani-update-archive-date {
  font-size: 13px;
  color: #999;
}

.rinjani-update-open-text {
  color: #00e09d;
}

.rinjani-update-closed-text {
  color: #ff6b6b;
}

.rinjani-update-warning-text {
  color: #f5d76e;
}

.rinjani-update-hidden {
  display: none;
}

/* Load More */
.rinjani-update-loadmore-wrapper {
  text-align: center;
  margin-top: 30px;
}

.rinjani-update-loadmore-btn {
  background: #f5d76e;
  color: #111;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* Archive Wrapper */
.rinjani-update-archive-wrapper {
  margin-top: 60px;
}

/* Title */
.rinjani-update-archive-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

/* Archive List */
.rinjani-update-archive {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Archive Item Card */
.rinjani-update-archive-item {
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}

/* Hover Effect */
.rinjani-update-archive-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

/* Date */
.rinjani-update-archive-date {
  font-size: 13px;
  opacity: .7;
  margin-bottom: 6px;
  color: #ccc;
}

/* Status */
.rinjani-update-archive-status {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
}

/* Description */
.rinjani-update-archive-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 12px;
}

/* Read Detail Button */
.rinjani-update-readmore {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all .3s ease;
}

/* Underline animation */
.rinjani-update-readmore::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width .3s ease;
}

.rinjani-update-readmore:hover::after {
  width: 100%;
}

/* Load More Button */
.rinjani-update-loadmore-btn {
  margin-top: 25px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all .3s ease;
}

.rinjani-update-loadmore-btn:hover {
  background: #fff;
  color: #000;
}

/* Hidden Items */
.rinjani-update-hidden {
  display: none;
}

/* My Invoice */
.table-invoice-item {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  color: #ffffff;
}

.table-invoice-item th,
.table-invoice-item td {
  background: transparent;
  color: #ffffff;
  border: none;
  padding: 10px 12px;
}

.table-invoice-item thead th {
  font-weight: 600;
  text-align: left;
}

.table-invoice-item tbody tr {
  background: transparent;
}

.table-invoice-item tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
  /* optional subtle hover */
}

.table-invoice-item .invoice-divider td {
  border-top: 1px solid #ffffff;
}

/* Wrapper */
.rinjani-update-nav-wrapper {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Card Base */
.rinjani-update-nav-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition: all .35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}

/* Hover */
.rinjani-update-nav-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Label */
.rinjani-update-nav-label {
  font-size: 12px;
  opacity: .6;
  margin-bottom: 8px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #ccc;
}

/* Title */
.rinjani-update-nav-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

/* Alignment */
.rinjani-update-nav-prev {
  text-align: left;
}

.rinjani-update-nav-next {
  text-align: right;
}

/* Optional subtle gradient accent */
.rinjani-update-nav-prev:hover {
  box-shadow: -4px 0 20px rgba(255, 255, 255, 0.08);
}

.rinjani-update-nav-next:hover {
  box-shadow: 4px 0 20px rgba(255, 255, 255, 0.08);
}

/* Status Badge */
.rinjani-update-nav-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* OPEN */
.status-badge-open {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.4);
}

.status-open {
  border-left: 3px solid #2ecc71;
}

/* CLOSED */
.status-badge-closed {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.4);
}

.status-closed {
  border-left: 3px solid #e74c3c;
}

/* WARNING */
.status-badge-warning {
  background: rgba(241, 196, 15, 0.15);
  color: #f1c40f;
  border: 1px solid rgba(241, 196, 15, 0.4);
}

.status-warning {
  border-left: 3px solid #f1c40f;
}

/* Card Container */
.certificate-update-system-card {
  position: relative;
  padding: 40px 35px;
  border-radius: 20px;
  background: linear-gradient(145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  max-width: 700px;
  margin: 40px auto;
  transition: all .4s ease;
}

/* Hover subtle effect */
.certificate-update-system-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Icon */
.certificate-update-system-icon {
  margin-bottom: 20px;
  color: #4fd1c5;
  /* soft secure cyan */
  opacity: 0.9;
}

/* Badge */
.certificate-update-system-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  background: rgba(79, 209, 197, 0.15);
  color: #4fd1c5;
  border: 1px solid rgba(79, 209, 197, 0.4);
  margin-bottom: 20px;
  font-weight: 600;
}

/* Message */
.certificate-update-system-message {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e5e5;
  opacity: 0.9;
}

/* Link */
.certificate-update-system-message a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

/* Elegant underline animation */
.certificate-update-system-message a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #ffffff;
  transition: width .3s ease;
}

.certificate-update-system-message a:hover::after {
  width: 100%;
}

/* Section */
.notfound-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

/* Container */
.notfound-container {
  max-width: 720px;
  width: 100%;
}

/* Content Card */
.notfound-content {
  text-align: center;
  padding: 60px 40px;
  border-radius: 24px;
  background: linear-gradient(
      145deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
  );
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .4s ease;
}

.notfound-content:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

/* 404 Code */
.notfound-code {
  font-size: 90px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.08);
  margin-bottom: 10px;
}

/* Title */
.notfound-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Description */
.notfound-description {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e5e5;
  opacity: 0.85;
  margin-bottom: 35px;
}

/* Buttons Wrapper */
.notfound-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons Base */
.notfound-btn {
  padding: 12px 26px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
  border: 1px solid transparent;
}

/* Primary Button */
.notfound-btn-primary {
  background: #ffffff;
  color: #000;
}

.notfound-btn-primary:hover {
  background: #eaeaea;
  transform: translateY(-2px);
}

/* Secondary Button */
.notfound-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

.notfound-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}


.form-check-policy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 10px 0;
}

/* Input */
.check-refund-input {
  flex: 1;
  padding: 9px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  height: 38px;
  outline: none;
  transition: 0.2s ease;
}

.check-refund-input:focus {
  border-color: #ffffff;
}

/* Button */
.check-refund-btn {
  height: 38px;
  padding: 0 16px;
  border-radius: 6px;
  border: none;
  background: #ffffff;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.check-refund-btn:hover {
  background: #eaeaea;
}

/* Section */
.tour-notfound-section {
  /* min-height: 80vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

/* Container */
.tour-notfound-container {
  max-width: 720px;
  width: 100%;
}

/* Content Card */
.tour-notfound-content {
  text-align: center;
  padding: 60px 40px;
  border-radius: 24px;
  background: linear-gradient(145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all .4s ease;
}

.tour-notfound-content:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 404 Code */
.tour-notfound-code {
  font-size: 90px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

/* Title */
.tour-notfound-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Description */
.tour-notfound-description {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e5e5;
  opacity: 0.85;
  margin-bottom: 35px;
}

/* Buttons Wrapper */
.tour-notfound-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons Base */
.tour-notfound-btn {
  padding: 12px 26px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
  border: 1px solid transparent;
}

/* Primary Button */
.tour-notfound-btn-primary {
  background: #ffffff;
  color: #000;
}

.tour-notfound-btn-primary:hover {
  background: #eaeaea;
  transform: translateY(-2px);
}

/* Secondary Button */
.tour-notfound-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tour-notfound-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}


































  
  
  

  
  
  