:root {
  --hero-blue: #1e40af;   /* ocean blue */
  --hero-sky:  #3b82f6;   /* sky blue */
  --hero-warm: #f59e0b;   /* sunset accent (opsional) */
}

.borderTop {
	border-top: 1px solid rgba(0,0,0,0.04);
}
.borderBtm {
	border-bottom: 1px solid rgba(0,0,0,0.04);
}

body {
  font-family: 'Inter', sans-serif;
  color: #243444;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
	font-size: 2rem;
	margin-bottom: 0.5rem;
}
.section-subtitle {
  max-width: 720px;
  margin: auto;
  color: #6b7280;
}
.section-intro {
  max-width: 720px;
  margin: 0 auto;
  color: #556;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }
}

/* navbar */
.main-navbar {
  padding: 18px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}
.main-navbar.scrolled {
  background-color: rgba(12, 32, 61, 1);
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  padding: 12px 0;
}
.navbar-dark .navbar-nav .nav-link {
  color: #e5e7eb;
  font-weight: 500;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
}
.dropdown-menu {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
@media (max-width: 991px) {
  .main-navbar {
    background-color: rgba(12, 32, 61, 0.98);
    padding: 12px 0;
  }

  .navbar-nav {
    padding-top: 12px;
  }

  .navbar-nav .nav-item {
    margin-bottom: 8px;
  }
}

/* HERO WRAPPER */
.hero {
  height: 90vh;
  min-height: 520px;
  max-height: 920px;
  overflow: hidden;
}
/* CAROUSEL */
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}
/* SMOOTH FADE */
/* */
.carousel-item {
  transition: transform 2.6s ease-in-out;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  transition: opacity 0s 2s;
}
/* KEN BURNS EFFECT (STABLE) */
.carousel-fade .carousel-item.active .hero-img {
  animation: heroZoom 6s linear forwards;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
/* REDUCE MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .carousel-item,
  .carousel-fade .carousel-item .hero-img {
    transition: none;
    animation: none;
    transform: none;
  }
}
/* IMAGE SAFE AREA */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 32, 61, 0.75),
    rgba(12, 32, 61, 0.35),
    rgba(12, 32, 61, 0.15)
  );
  z-index: 2;
}
/* CONTENT */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #E3F2FD;
  line-height: 1.2;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
.hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #E3F2FD;
  line-height: 1.2;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
.hero p {
  color: #ffffff;
  max-width: 600px;
}
/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .hero {
    height: 85vh;
  }
  .hero-img {
    object-position: center 25%;
  }
  .hero h1 {
    font-size: 2rem;
  }
	.hero h2 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cta-btn {
  font-size: 16px;
  padding: 12px 24px;
  transition: background-color .3s ease, box-shadow .3s ease;
}
/* Hover only on desktop */
@media (hover: hover) and (pointer: fine) {
  .cta-btn:hover {
    box-shadow: 0 8px 20px rgba(37,99,235,.35);
  }
}
/* Keyboard focus */
.cta-btn:focus-visible {
  outline: 3px solid rgba(59,130,246,.7);
  outline-offset: 4px;
}

.domain-notice--hero {
  background: rgba(9, 30, 66, 0.85); /* navy gelap */
  color: #f9fafb;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.domain-notice--hero p {
  margin: 0;
  padding: 14px 0;
  font-size: 15px;
}
.domain-notice--hero .old-domain {
  color: #fde68a;
  text-decoration: line-through;
}
.domain-notice--hero .new-domain {
  color: #93c5fd;
  font-weight: 600;
}
@media (max-width: 576px) {
  .domain-notice--hero p {
    font-size: 13.5px;
    line-height: 1.4;
    padding: 10px 12px;
  }

  .domain-notice--hero {
    text-align: center;
  }
}



/* AUDIENCE */
.audience-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.audience-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.audience-card p {
  color: #475569;
  font-size: 15px;
}
.audience-icon {
  display: inline-flex;
  justify-content: center;
  transition: transform .35s ease;
}
.audience-card:hover .audience-icon {
  transform: scale(1.2);
}
.audience-icon i {
  font-size: 42px;
  color: var(--hero-blue);
  transition: transform .35s ease, color .35s ease;
}
.audience-card:hover .audience-icon i {
  color: var(--hero-sky);
}
.audience-card:focus-visible {
  outline: 3px solid rgba(59,130,246,.6); /* hero-sky */
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .audience-card,
  .audience-icon {
    transition: none;
    transform: none !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
  }

  .audience-card:hover .audience-icon {
    transform: scale(1.08);
  }
}

/* why us */
.media-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
	height: 100%;
}
@media (min-width: 992px) {
  .media-card video,
  .media-card img {
    height: 420px;
    width: 100%;
    object-fit: contain; /* penting */
    background: #000;
  }
}
@media (max-width: 991px) {
  .media-card video,
  .media-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.media-frame {
  background: #f4f8fc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-frame video,
.media-frame img {
  height: 420px;
 
  background: transparent;
}
@media (max-width: 756px) {
  .media-frame video,
  .media-frame img {
    height: auto;
  }
}
video {
  display: block;
}
.media-caption {
  margin: 0;
  padding: 0.5rem 0.75rem;
  line-height: 1.4;
  background: #f4f8fc;
}

.media-card:focus-within .media-caption {
  outline: 2px solid var(--hero-sky);
  outline-offset: -2px;
}
@media (max-width: 576px) {
  .media-caption {
    padding: 0.45rem 0.6rem;
  }
}


/* SERVICES */
.services-section {
  background: #f8fbfd;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
@media (max-width: 576px) {
  .service-card {
    padding: 22px;
  }
}
/* Titles & Text */
.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
/* List */
.service-list {
  padding-left: 18px;
  margin-bottom: 20px;
  color: #555;
  font-size: 0.9rem;
}
.service-list li {
  margin-bottom: 6px;
}
/* CTA */
.service-cta {
  margin-top: auto;
  font-weight: 600;
  color: var(--hero-sky, #1e88e5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-cta:focus-visible {
  outline: 3px solid var(--hero-sky, #1e88e5);
  outline-offset: 3px;
  border-radius: 6px;
}
.service-cta span {
  transition: transform .2s ease;
}
.service-cta:hover span {
  transform: translateX(4px);
}
/* Mobile tweaks */



/* TESTIMONIAL */
.testimonials-section {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f8fb 100%
  );
}
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
/* Rating */
.testimonial-rating {
  color: #f5b301;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
/* Text */
.testimonial-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}
/* Author */
.testimonial-author {
  margin-top: auto;
  font-size: 0.9rem;
  color: #666;
}
.testimonial-author strong {
  display: block;
  color: #222;
  font-weight: 600;
}
.testimonial-author span {
  font-size: 0.85rem;
}
/* Mobile */
@media (max-width: 576px) {
  .testimonial-card {
    padding: 22px;
  }
}

/* CTA */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    var(--hero-sky) 0%,
    var(--hero-blue) 100%
  );
  color: #fff;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 18px;
}
.cta-text {
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 36px;
  opacity: 0.95;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
/* Buttons */
.cta-btn {
  min-width: 220px;
  padding: 14px 26px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
/* Focus state */
.cta-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.btn-cta-primary {
  background: #ffffff;
  color: var(--hero-blue);
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-cta-primary:hover,
.btn-cta-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.25);
}
.btn-cta-secondary {
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
  background: transparent;
}
.btn-cta-secondary:hover,
.btn-cta-secondary:focus-visible {
  background: rgba(255,255,255,.12);
}

/* Mobile */
@media (max-width: 576px) {
  .cta-section {
    padding: 60px 0;
  }
  .cta-btn {
    width: 100%;
  }
}

/* FOOTER */
.site-footer {
  background: #0b2a3a;
  color: #cfd8de;
  padding: 60px 0 30px;
  font-size: 0.9rem;
}
.footer-logo {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-desc {
  max-width: 360px;
  line-height: 1.6;
}
.footer-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 8px;
}
.footer-nav a {
  color: #cfd8de;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: 0.85rem;
  color: #aeb9c1;
}
/* Focus */
.site-footer a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
/* Mobile */
@media (max-width: 576px) {
  .site-footer {
    padding: 50px 0 24px;
  }
  .footer-desc {
    max-width: 100%;
  }
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1e5bd7, #0f3d91);
	color: #fff;
}
.page-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}
.page-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
}


/* ABOUT HERO */
.about-hero {
  background: linear-gradient(
    rgba(10, 35, 64, 0.65),
    rgba(10, 35, 64, 0.65)
  ),
  url('../img/hero/about.jpg') center / cover no-repeat;
}

.about-section p {
  line-height: 1.7;
  color: #444;
}
/* VALUE CARDS */
.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s ease;
}
.value-card:hover {
  transform: translateY(-4px);
}
.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
/* MEDIA */
.media-box img {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
/* NOTICE */
.notice-box {
  background: #f7f9fb;
  border-left: 4px solid #0d6efd;
  padding: 20px;
  border-radius: 8px;
}
.notice-box h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
/* CTA */
.about-cta {
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
}
.about-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* CONTACT */
.contact-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1e5bd7, #0f3d91);
}
.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  border: none;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #1ebe5d;
  color: #fff;
}
/* CONTACT CARDS */
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.contact-card i {
  font-size: 2rem;
  color: #1e5bd7;
  margin-bottom: 10px;
}
/* FORM */
form .form-control:focus {
  border-color: #1e5bd7;
  box-shadow: 0 0 0 0.15rem rgba(30,91,215,0.25);
}
/* Accessibility */
:focus-visible {
  outline: 3px solid #1e5bd7;
  outline-offset: 2px;
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
	background: linear-gradient(135deg, #1e5bd7, #0f3d91);
}
.thank-you-box {
  max-width: 720px;
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.thank-you-box h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.thank-you-box p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}
.thank-you-actions {
  margin-top: 35px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* TRANSPORT */
.transport-hero {
  background: linear-gradient(
    rgba(10, 35, 64, 0.65),
    rgba(10, 35, 64, 0.65)
  ),
		url('../img/hero/transport.jpg') center / cover no-repeat;
}
.transport-intro .lead {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.service-includes {
  margin: 20px 0;
  padding-left: 20px;
}
.service-includes li {
  margin-bottom: 8px;
}
.note {
  font-style: italic;
  color: #555;
}
/* PRICING TABLE */
.table-wrapper {
  overflow-x: auto;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  border: 1px solid #e5e7eb;
  padding: 14px;
  text-align: center;
}
.pricing-table th {
  background: #0b5ed7;
  color: #fff;
  font-weight: 500;
}
.pricing-table td:first-child {
  font-weight: 500;
  text-align: left;
}
/* PRICING NOTES */
.pricing-notes {
  margin-top: 40px;
  background: #f1f5f9;
  padding: 25px;
  border-radius: 12px;
}
.pricing-notes h3 {
  margin-bottom: 15px;
}
.pricing-notes ul {
  padding-left: 20px;
}
/* CTA */
.transport-cta {
  background: linear-gradient(135deg, #0b5ed7, #0d6efd);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}
.transport-cta h2 {
  font-size: 2.1rem;
  margin-bottom: 15px;
}
.transport-cta p {
  font-size: 1.05rem;
  margin-bottom: 25px;
}
.btn-cta {
  display: inline-block;
  background: #ffffff;
  color: #0b5ed7;
  padding: 14px 34px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}
/* MOBILE */
@media (max-width: 768px) {
  .transport-hero h1 {
    font-size: 2rem;
  }
  
}
		
/* TOURS */
.tour-hero {
  background: linear-gradient(rgba(10, 35, 64, 0.65), rgba(10, 35, 64, 0.65)),
              url("../img/hero/tours.jpg") center/cover no-repeat;
}
.tour-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
}
.tour-highlights li {
  padding: 14px 16px;
  border-radius: 10px;
}
/* ===== TOUR LIST ===== */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
/* ===== TOUR CARD ===== */
.tour-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}
.tour-card img {
  width: 100%;
  object-fit: cover;
}
.tour-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.tour-card-body p {
  flex: 1;
  color: #555;
  font-size: .95rem;
}
.btn-outline2 {
  align-self: flex-start;
  margin-top: 15px;
  padding: 10px 18px;
  border: 2px solid var(--hero-sky);
  border-radius: 999px;
  color: var(--hero-sky);
  text-decoration: none;
  font-weight: 600;
  transition: background .25s ease, color .25s ease;
}
.btn-outline2:hover {
  background: var(--hero-sky);
  color: #fff;
}

/* ===== TOUR DETAIL ===== */
.hero-tour-detail {
  color: #fff;
  padding: 110px 0 90px;
	min-height: 450px;
}
.hero-tour-content {
  max-width: 760px;
}
.hero-tour-detail h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.tour-meta {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.tour-meta li {
  margin-bottom: 6px;
}

/* ===== LIST ===== */
.tour-list {
  list-style: disc;
  padding-left: 20px;
}
.tour-list li {
  margin-bottom: 8px;
}

.equip-hero {
  background: linear-gradient(rgba(10, 35, 64, 0.65), rgba(10, 35, 64, 0.65)),
              url("../img/hero/equipment.jpg") center/cover no-repeat;
}
.price-table {
  width: 100%;
  margin: 12px 0 16px;
  font-size: 0.95rem;
}
.price-table td {
  padding: 6px 0;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 600;
}


