/* ==========================================================================
    1. IMPORT FONT DAN VARIABEL
    ========================================================================== */

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

  :root {
    --dce-red: #d62828;
    --dce-red-dark: #b91c1c;
    --dce-red-soft: #fff1f2;

    --dce-blue: #0f3d6e;
    --dce-blue-medium: #1e5fa8;
    --dce-blue-light: #dbeafe;
    --dce-blue-soft: #eff6ff;
    --dce-blue-dark: #082f49;

    --dce-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-soft: #f1f5f9;
    --text-dark: #1e293b;
    --text-body: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-small: 0 5px 16px rgba(15, 23, 42, 0.07);
    --shadow-medium: 0 15px 35px rgba(15, 23, 42, 0.1);
    --shadow-large: 0 25px 55px rgba(15, 23, 42, 0.14);
    --transition-fast: all 0.3s ease;
  }

  /* ==========================================================================
    2. GLOBAL
    ========================================================================== */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-body);
    background-color: var(--dce-white);
    overflow-x: hidden;
    line-height: 1.7;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 0;
    color: var(--dce-blue);
    font-weight: 700;
  }

  p {
    margin-bottom: 0;
  }

  a {
    text-decoration: none;
    transition: var(--transition-fast);
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* ==========================================================================
    3. NAVBAR
    ========================================================================== */

  .custom-navbar {
    padding: 8px 0;
    background: linear-gradient(135deg, var(--dce-blue), var(--dce-blue-medium));
    box-shadow: 0 6px 22px rgba(15, 61, 110, 0.24);
  }

  .dce-logo {
    width: auto;
    height: 46px;
    max-width: 180px;
    object-fit: contain;
  }

  .nav-link {
    position: relative;
    padding: 12px 15px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.95rem;
    font-weight: 600;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--dce-white) !important;
  }

  .navbar-booking {
    padding: 12px 25px;
    border-radius: 999px;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.25);
  }

  @media (min-width: 992px) {
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      width: 0;
      height: 3px;
      border-radius: 999px;
      background-color: var(--dce-red);
      transform: translateX(-50%);
      transition: var(--transition-fast);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 62%;
    }
  }

  /* ==========================================================================
    4. BUTTON
    ========================================================================== */

  .btn {
    border-radius: 11px;
    font-weight: 700;
    transition: var(--transition-fast);
  }

  .btn-primary {
    color: var(--dce-white);
    background: linear-gradient(
      135deg,
      var(--dce-red),
      var(--dce-red-dark)
    );
    border-color: var(--dce-red);
    box-shadow: 0 10px 25px rgba(214, 40, 40, 0.22);
  }

  .btn-primary:hover {
    color: var(--dce-white);
    background: linear-gradient(
      135deg,
      var(--dce-red-dark),
      #991b1b
    );
    border-color: var(--dce-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(185, 28, 28, 0.3);
  }

  .btn-outline-primary {
    color: var(--dce-red);
    background-color: rgba(255, 255, 255, 0.84);
    border: 1.5px solid var(--dce-red);
  }

  .btn-outline-primary:hover {
    color: var(--dce-white);
    background-color: var(--dce-red);
    border-color: var(--dce-red);
    transform: translateY(-3px);
  }

  .btn-light {
    color: var(--dce-red);
    background-color: var(--dce-white);
    border-color: var(--dce-white);
    padding: 14px 32px;
    border-radius: 999px;
  }

  .btn-light:hover {
    color: var(--dce-red-dark);
    background-color: var(--bg-light);
    transform: translateY(-3px);
  }


  .btn-secondary-action {
    color: var(--dce-blue);
    background-color: var(--dce-white);
    border: 1.5px solid var(--dce-blue-medium);
  }

  .btn-secondary-action:hover {
    color: var(--dce-white);
    background-color: var(--dce-blue-medium);
    border-color: var(--dce-blue-medium);
    transform: translateY(-3px);
  }

/* ==========================================================================
   KOMPONEN JUDUL SECTION GLOBAL
   ========================================================================== */

.section-label {
  color: var(--dce-red);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

/* ==========================================================================
   RESPONSIVE GLOBAL
   ========================================================================== */

@media (max-width: 991.98px) {
  .navbar-nav {
    align-items: stretch !important;
    padding: 15px 0;
  }

  .navbar-booking {
    width: 100%;
  }
}

/* ==========================================================================
    11. FOOTER
    ========================================================================== */

  .footer-section {
    padding: 65px 0 30px;
    color: #cbd5e1;
    background: linear-gradient(135deg, var(--dce-blue-dark), var(--dce-blue));
    border-top: 4px solid var(--dce-red);
  }

  .footer-section h3,
  .footer-section h4,
  .footer-section strong {
    color: var(--dce-white);
  }

  .footer-brand {
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
  }

  .footer-brand span {
    color: #f87171;
  }

  .footer-description {
    max-width: 680px;
    margin-bottom: 25px;
    color: #cbd5e1;
    font-size: 0.9rem;
  }

  .footer-contact {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-contact strong {
    display: block;
    margin-bottom: 7px;
    font-size: 0.88rem;
  }

  .footer-contact p,
  .footer-contact a {
    color: #cbd5e1;
    font-size: 0.86rem;
  }

  .footer-contact a:hover {
    color: #f87171;
  }

  .footer-section h4 {
    margin-bottom: 17px;
    font-size: 0.92rem;
    text-transform: uppercase;
  }

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

  .footer-section li {
    margin-bottom: 9px;
  }

  .footer-section li a {
    color: #cbd5e1;
    font-size: 0.87rem;
  }

  .footer-section li a:hover {
    color: #f87171;
    padding-left: 4px;
  }

  .footer-section .col-lg-3 p {
    margin-bottom: 7px;
    color: #cbd5e1;
    font-size: 0.87rem;
  }

  .footer-section hr {
    margin: 35px 0 25px;
    border-color: rgba(255, 255, 255, 0.12);
    opacity: 1;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom p {
    color: #cbd5e1;
    font-size: 0.82rem;
  }

/* ==========================================================================
    12. WHATSAPP
    ========================================================================== */

  /* =========================================================
    WHATSAPP FLOATING BUTTON
    ========================================================= */

  .whatsapp-float {
      position: fixed;
      right: 25px;
      bottom: 25px;
      z-index: 9999;

      width: 62px;
      height: 62px;

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

      background: linear-gradient(
          135deg,
          #25D366,
          #128C4A
      );

      color: #ffffff;
      text-decoration: none;

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

      font-size: 34px;      /* ukuran icon */
      box-shadow: 0 14px 30px rgba(18,140,74,.35);

      transition: .3s;
      animation: whatsapp-pulse 2.2s infinite;
  }

  .whatsapp-float:hover{
      color:#fff;
      transform:translateY(-4px) scale(1.08);
  }

  .whatsapp-float i{
      font-size:32px;
      line-height:1;
  }

  @keyframes whatsapp-pulse{

      0%{
          box-shadow:
          0 14px 30px rgba(18,140,74,.35),
          0 0 0 0 rgba(37,211,102,.45);
      }

      70%{
          box-shadow:
          0 14px 30px rgba(18,140,74,.35),
          0 0 0 18px rgba(37,211,102,0);
      }

      100%{
          box-shadow:
          0 14px 30px rgba(18,140,74,.35),
          0 0 0 0 rgba(37,211,102,0);
      }

  }

/* =========================
    PAGE TRANSITION
  ========================= */

  body {
    opacity: 0;
    animation: pageFadeIn 0.1s ease-out forwards;
  }

  body.page-exit {
    opacity: 0;
    transition: opacity 0.07s ease-in;
  }

  @keyframes pageFadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Menghormati pengaturan pengguna yang mematikan animasi */
  @media (prefers-reduced-motion: reduce) {
    body {
      opacity: 1;
      animation: none;
    }

    body.page-exit {
      transition: none;
    }
  }