/* ==========================================================
   NAVBAR
========================================================== */

.site-header {
  position: sticky;

  top: 0;

  z-index: 1030;

  background: #ffffff;

  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
  min-height: 82px;
}

.navbar__logo {
  height: 56px;

  width: auto;
}

/* ==========================================================
   DESKTOP NAVIGATION
========================================================== */

.navbar-collapse {
  position: relative;

  z-index: 5;

  overflow: visible;
}

.navbar-collapse .navbar-nav {
  position: relative;

  z-index: 10;

  display: flex;

  gap: 12px;

  isolation: isolate;
}

.navbar-collapse .navbar-nav > .nav-item {
  position: relative;

  z-index: 1;
}

/* Home dibuat berada di atas layer lain */
.navbar-collapse .navbar-nav > .nav-item:first-child {
  z-index: 20;
}

.navbar-collapse .navbar-nav > .nav-item > .nav-link {
  position: relative;

  z-index: 2;

  display: block;

  color: #222222;

  font-weight: 600;

  cursor: pointer;

  pointer-events: auto;

  user-select: none;

  transition: color var(--transition-fast);
}

.navbar-collapse .navbar-nav > .nav-item > .nav-link:hover {
  color: var(--color-primary);
}

.navbar-collapse .navbar-nav > .nav-item > .nav-link.active {
  color: var(--color-primary) !important;
}

/* Underline */
.navbar-collapse .navbar-nav > .nav-item > .nav-link::before {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--color-primary);

  pointer-events: none;

  transition: width var(--transition-fast);
}

.navbar-collapse .navbar-nav > .nav-item > .nav-link:hover::before,
.navbar-collapse .navbar-nav > .nav-item > .nav-link.active::before {
  width: 100%;
}

.navbar__actions {
  display: flex;

  gap: 12px;
}

.navbar__quotation {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 120px;

  height: 44px;

  padding: 0 22px;

  border: 1px solid #03306b;

  border-radius: 8px;

  background: #ffffff;

  color: #03306b;

  font-size: 0.9rem;

  font-weight: 600;

  transition: all 0.25s ease;
}

.navbar__quotation:hover {
  background: #03306b;

  color: #ffffff;
}

.navbar__whatsapp {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  min-width: 130px;

  height: 44px;

  padding: 0 22px;

  background: #03306b;

  color: #ffffff;

  border-radius: 8px;

  font-size: 0.9rem;

  font-weight: 600;

  transition: all 0.25s ease;
}

.navbar__whatsapp:hover {
  background: #022754;

  color: #ffffff;
}

.dropdown-menu {
  display: block;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transform: translateY(10px);

  margin-top: 0;

  padding: 10px 0;

  border: none;

  border-radius: 12px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition:
    opacity var(--transition-fast),
    visibility var(--transition-fast),
    transform var(--transition-fast);
}

.dropdown-item {
  padding: 10px 20px;

  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #03306b;

  color: #ffffff;

  padding-left: 26px;
}

/* ==========================================================
   NAVBAR DROPDOWN HOVER
========================================================== */

@media (min-width: 992px) {
  .navbar-collapse .dropdown:hover > .dropdown-menu,
  .navbar-collapse .dropdown:focus-within > .dropdown-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateY(0);
  }
}

/* ==========================================================
   HERO
========================================================== */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  background-image: url("../images/hero/hero-banner.webp");

  background-size: cover;

  background-position: center;

  overflow: hidden;
}

.hero__overlay {
  position: absolute;

  inset: 0;

  background: rgba(3, 48, 107, 0.72);
}

.hero .container {
  position: relative;

  z-index: 2;
}

.hero__dealer {
  display: inline-block;

  color: #ffc107;

  font-weight: 700;

  letter-spacing: 2px;

  font-size: 0.8rem;

  margin-bottom: 18px;
}

.hero__title {
  color: #ffffff;

  font-size: 3.6rem;

  font-weight: 800;

  line-height: 1.15;

  margin-bottom: 24px;
}

.hero__description {
  color: rgba(255, 255, 255, 0.9);

  font-size: 1rem;

  line-height: 1.8;

  max-width: 580px;

  margin-bottom: 28px;
}

.hero__badges {
  display: flex;

  gap: 24px;

  flex-wrap: wrap;

  margin-bottom: 36px;
}

.hero__badges span {
  color: #ffffff;

  font-weight: 500;
}

.hero__badges i {
  color: #ffc107;

  margin-right: 8px;
}

.hero__buttons {
  display: flex;

  gap: 16px;

  flex-wrap: wrap;
}

.hero__btn-primary {
  background: #ffc107;

  color: #111;

  padding: 14px 30px;

  font-weight: 700;

  border-radius: 10px;
}

.hero__btn-primary:hover {
  background: #ffca2c;
}

.hero__btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.45);

  color: #ffffff;

  padding: 14px 30px;

  border-radius: 10px;

  font-weight: 600;
}

.hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);

  color: #ffffff;
}

/* ==========================================================
   HERO DEALER
========================================================== */

.hero__dealer {
  display: flex;

  align-items: center;

  gap: 28px;

  margin-bottom: 30px;

  flex-wrap: wrap;
}

.hero__dealer-label {
  color: #ffc107;

  font-size: 0.82rem;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.hero__dealer-brands {
  display: flex;

  align-items: center;

  gap: 22px;
}

.hero__dealer-logo {
  width: auto;

  display: block;

  object-fit: contain;
}

.hero__dealer-logo--hangcha {
  height: 64px;
  width: auto;
}

.hero__dealer-logo--heli {
  height: 64px;
  width: auto;
}
/* ==========================================================
   SECTION TITLE
========================================================== */

.section-title {
  text-align: center;

  margin-bottom: 60px;
}

.section-title span {
  color: #d6a328;

  font-size: 0.8rem;

  font-weight: 700;

  letter-spacing: 2px;
}

.section-title h2 {
  color: #03306b;

  font-size: 2.5rem;

  font-weight: 700;

  margin: 12px 0 18px;
}

.section-title p {
  max-width: 680px;

  margin: auto;

  color: #666;
}

/* ==========================================================
   PRODUCT CATEGORY
========================================================== */

.categories {
  padding: 100px 0;

  background: #f8f9fb;
}

.category-card {
  height: 100%;

  background: #fff;

  border-radius: 16px;

  overflow: hidden;

  border: 1px solid #edf1f5;

  transition: 0.35s;
}

.category-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.category-card__image {
  padding: 30px;

  text-align: center;
}

.category-card__image img {
  max-width: 100%;

  height: 170px;

  object-fit: contain;
}

.category-card__body {
  padding: 24px;
}

.category-card__body h3 {
  color: #03306b;

  font-size: 1.3rem;

  font-weight: 700;
}

.category-card__body p {
  color: #666;

  margin-bottom: 18px;
}

.category-card__body small {
  display: block;

  color: #999;

  margin-bottom: 10px;
}

.category-card__brands {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 22px;
}

.category-card__brand-logo {
  height: 38px;

  width: auto;

  object-fit: contain;

  transition: 0.25s ease;
}

.category-card__brand-logo:hover {
  transform: scale(1.05);
}

.category-card__link {
  text-decoration: none;

  color: #03306b;

  font-weight: 700;
}

/* ==========================================================
   SERVICES
========================================================== */

.services-home {
  padding: 100px 0;

  background: #ffffff;
}

.service-card {
  height: 100%;

  background: #fff;

  border: 1px solid #edf1f5;

  border-radius: 16px;

  padding: 40px 28px;

  text-align: center;

  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.service-card__icon {
  width: 72px;

  height: 72px;

  margin: auto auto 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #eef4fc;
}

.service-card__icon i {
  font-size: 30px;

  color: #03306b;
}

.service-card h3 {
  font-size: 1.3rem;

  color: #03306b;

  font-weight: 700;

  margin-bottom: 16px;
}

.service-card p {
  color: #666;

  line-height: 1.8;

  margin: 0;
}

/* ==========================================================
   INDUSTRIES
========================================================== */

.industries {
  padding: 100px 0;

  background: #f8f9fb;
}

.industry-card {
  position: relative;

  overflow: hidden;

  border-radius: 16px;

  height: 340px;
}

.industry-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.4s;
}

.industry-card:hover img {
  transform: scale(1.08);
}

.industry-card__overlay {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 30px;

  background: linear-gradient(
    to top,
    rgba(3, 48, 107, 0.92),
    rgba(3, 48, 107, 0.15)
  );
}

.industry-card__overlay h3 {
  color: #fff;

  font-size: 1.5rem;

  font-weight: 700;

  margin-bottom: 10px;
}

.industry-card__overlay p {
  color: rgba(255, 255, 255, 0.9);

  margin: 0;

  line-height: 1.6;
}

/* ==========================================================
   WHY CHOOSE US
========================================================== */

.advantages {
  padding: 100px 0;

  background: #ffffff;
}

.advantage-card {
  height: 100%;

  padding: 36px 28px;

  border: 1px solid #edf1f5;

  border-radius: 16px;

  text-align: center;

  transition: 0.35s;

  background: #fff;
}

.advantage-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.advantage-card__icon {
  width: 74px;

  height: 74px;

  margin: auto auto 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #03306b;
}

.advantage-card__icon i {
  color: #fff;

  font-size: 30px;
}

.advantage-card h3 {
  color: #03306b;

  font-size: 1.25rem;

  font-weight: 700;

  margin-bottom: 16px;
}

.advantage-card p {
  color: #666;

  line-height: 1.8;

  margin: 0;
}

/* ==========================================================
   SITE FOOTER
   Premium global footer without PRE-FOOTER CTA
========================================================== */

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 0 0 24px;

  background: linear-gradient(180deg, #031c3e 0%, #021a38 48%, #01152f 100%);

  color: rgba(255, 255, 255, 0.72);
}

/* ==========================================================
   PREMIUM TOP ACCENT
========================================================== */

.site-footer::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(253, 185, 19, 0.22) 18%,
    rgba(253, 185, 19, 0.9) 50%,
    rgba(253, 185, 19, 0.22) 82%,
    transparent 100%
  );

  z-index: 2;
}

/* ==========================================================
   DECORATIVE VISUAL LAYER
========================================================== */

.site-footer__visual {
  position: absolute;
  inset: 0;

  z-index: -1;

  pointer-events: none;

  background:
    radial-gradient(circle at 8% 8%, rgba(51, 112, 194, 0.2), transparent 27%),
    radial-gradient(
      circle at 92% 22%,
      rgba(253, 185, 19, 0.1),
      transparent 22%
    ),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);

  background-size:
    auto,
    auto,
    44px 44px,
    44px 44px;

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.36)
  );

  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.36)
  );
}

/* ==========================================================
   FOOTER MAIN
========================================================== */

.site-footer__main {
  position: relative;

  padding: 76px 0 32px;
}

.site-footer__grid {
  display: grid;

  grid-template-columns:
    minmax(280px, 1.15fr)
    minmax(420px, 1.5fr)
    minmax(300px, 1fr);

  align-items: start;

  gap: clamp(36px, 4vw, 70px);
}

/* ==========================================================
   BRAND COLUMN
========================================================== */

.site-footer__brand {
  min-width: 0;
}

.site-footer__logo-link {
  display: inline-flex;

  align-items: center;
}

.site-footer__logo {
  display: block;

  width: min(210px, 100%);

  height: auto;

  margin-bottom: 22px;
}

.site-footer__tagline {
  margin: 0 0 14px;

  color: var(--color-white);

  font-size: 13px;
  font-weight: 800;

  line-height: 1.55;

  letter-spacing: 0.015em;
}

.site-footer__description {
  max-width: 410px;

  margin: 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 12px;

  line-height: 1.85;
}

/* ==========================================================
   AUTHORIZED DEALER
========================================================== */

.site-footer__dealer {
  margin-top: 28px;
}

.site-footer__dealer-label {
  display: block;

  margin-bottom: 10px;

  color: rgba(255, 255, 255, 0.38);

  font-size: 9px;
  font-weight: 800;

  line-height: 1.3;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.site-footer__dealer-links {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;
}

.site-footer__dealer-links a {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  min-height: 38px;

  padding: 8px 13px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.045);

  color: rgba(255, 255, 255, 0.86);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.055em;

  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast);
}

.site-footer__dealer-links a i {
  color: var(--color-accent);

  font-size: 10px;
}

.site-footer__dealer-links a:hover {
  transform: translateY(-2px);

  border-color: rgba(253, 185, 19, 0.36);

  background: rgba(253, 185, 19, 0.08);

  color: var(--color-white);
}

/* ==========================================================
   NAVIGATION HUB
========================================================== */

.site-footer__navigation {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 28px;

  min-width: 0;
}

.site-footer__column {
  min-width: 0;
}

/* ==========================================================
   NAVIGATION HEADINGS
========================================================== */

.site-footer__heading {
  position: relative;

  margin: 0 0 22px;

  padding-bottom: 13px;

  color: var(--color-white);

  font-size: 11px;
  font-weight: 800;

  line-height: 1.35;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}

.site-footer__heading::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 26px;
  height: 2px;

  border-radius: 999px;

  background: var(--color-accent);
}

/* ==========================================================
   NAVIGATION LIST
========================================================== */

.site-footer__menu {
  list-style: none;

  padding: 0;

  margin: 0;
}

.site-footer__menu li {
  margin-bottom: 10px;
}

.site-footer__menu li:last-child {
  margin-bottom: 0;
}

.site-footer__menu a {
  position: relative;

  display: inline-flex;

  align-items: center;

  color: rgba(255, 255, 255, 0.56);

  font-size: 11px;

  line-height: 1.6;

  transition:
    transform var(--transition-fast),
    color var(--transition-fast);
}

/* Hover accent line */

.site-footer__menu a::before {
  content: "";

  width: 0;
  height: 1px;

  margin-right: 0;

  background: var(--color-accent);

  opacity: 0;

  transition:
    width var(--transition-fast),
    margin-right var(--transition-fast),
    opacity var(--transition-fast);
}

.site-footer__menu a:hover {
  transform: translateX(2px);

  color: var(--color-white);
}

.site-footer__menu a:hover::before {
  width: 12px;

  margin-right: 7px;

  opacity: 1;
}

/* Solutions has more menu items */

.site-footer__menu--solutions li {
  margin-bottom: 7px;
}

/* ==========================================================
   CONTACT CARD
========================================================== */

.site-footer__contact-card {
  min-width: 0;

  padding: 26px;

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: 20px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.028)
  );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 50px rgba(0, 0, 0, 0.14);

  backdrop-filter: blur(10px);
}

/* ==========================================================
   CONTACT CARD HEADING
========================================================== */

.site-footer__contact-head {
  margin-bottom: 22px;
}

.site-footer__contact-kicker {
  display: block;

  margin-bottom: 7px;

  color: var(--color-accent);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.site-footer__contact-title {
  margin: 0;

  color: var(--color-white);

  font-size: clamp(1.05rem, 1.4vw, 1.3rem);

  font-weight: 800;

  line-height: 1.3;
}

.site-footer__contact-head p {
  margin: 10px 0 0;

  color: rgba(255, 255, 255, 0.5);

  font-size: 11px;

  line-height: 1.7;
}

/* ==========================================================
   CONTACT INFORMATION
========================================================== */

.site-footer__contact {
  display: flex;

  flex-direction: column;

  gap: 10px;

  margin: 0;

  font-style: normal;
}

.site-footer__contact-item {
  display: grid;

  grid-template-columns:
    34px
    minmax(0, 1fr);

  align-items: flex-start;

  gap: 11px;

  min-width: 0;

  padding: 10px;

  border-radius: 12px;

  color: rgba(255, 255, 255, 0.6);

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
}

.site-footer__contact a.site-footer__contact-item:hover {
  background: rgba(255, 255, 255, 0.055);

  color: var(--color-white);
}

/* ==========================================================
   CONTACT ICON
========================================================== */

.site-footer__contact-icon {
  display: grid;

  place-items: center;

  width: 34px;
  height: 34px;

  border: 1px solid rgba(253, 185, 19, 0.2);

  border-radius: 10px;

  background: rgba(253, 185, 19, 0.075);

  color: var(--color-accent);

  font-size: 12px;
}

/* ==========================================================
   CONTACT COPY
========================================================== */

.site-footer__contact-copy {
  min-width: 0;

  color: inherit;

  font-size: 10px;

  line-height: 1.65;

  overflow-wrap: anywhere;
}

.site-footer__contact-copy strong {
  display: block;

  color: rgba(255, 255, 255, 0.8);

  font-size: 10px;
  font-weight: 700;
}

.site-footer__contact-label {
  display: block;

  margin-bottom: 3px;

  color: rgba(255, 255, 255, 0.34);

  font-size: 8px;
  font-weight: 800;

  line-height: 1.35;

  letter-spacing: 0.11em;

  text-transform: uppercase;
}

/* ==========================================================
   WHATSAPP CONTACT ACTION

   Compact action inside contact panel.
   Bukan PRE-FOOTER CTA.
========================================================== */

.site-footer__whatsapp {
  display: grid;

  grid-template-columns:
    auto
    1fr
    auto;

  align-items: center;

  gap: 10px;

  min-height: 46px;

  margin-top: 18px;

  padding: 11px 14px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.055);

  color: var(--color-white);

  font-size: 11px;
  font-weight: 700;

  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast);
}

.site-footer__whatsapp i:first-child {
  color: #65d488;

  font-size: 15px;
}

.site-footer__whatsapp i:last-child {
  color: rgba(255, 255, 255, 0.5);

  font-size: 11px;
}

.site-footer__whatsapp:hover {
  transform: translateY(-2px);

  border-color: rgba(101, 212, 136, 0.28);

  background: rgba(101, 212, 136, 0.08);

  color: var(--color-white);
}

/* ==========================================================
   FOOTER BOTTOM
========================================================== */

.site-footer__bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;

  padding-top: 23px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copyright,
.site-footer__descriptor {
  margin: 0;

  color: rgba(255, 255, 255, 0.36);

  font-size: 9px;

  line-height: 1.6;
}

.site-footer__descriptor {
  text-align: right;

  letter-spacing: 0.02em;
}

.site-footer__descriptor span {
  margin: 0 5px;

  color: rgba(253, 185, 19, 0.6);
}

/* ==========================================================
   FOOTER RESPONSIVE
   LARGE TABLET / SMALL DESKTOP
========================================================== */

@media (max-width: 1199.98px) {
  .site-footer__grid {
    grid-template-columns:
      minmax(260px, 0.9fr)
      minmax(420px, 1.25fr);

    gap: 46px;
  }

  .site-footer__contact-card {
    grid-column: 1 / -1;
  }

  .site-footer__contact {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__whatsapp {
    max-width: 320px;
  }
}

/* ==========================================================
   FOOTER RESPONSIVE
   TABLET
========================================================== */

@media (max-width: 991.98px) {
  .site-footer__main {
    padding-top: 64px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .site-footer__brand,
  .site-footer__navigation,
  .site-footer__contact-card {
    grid-column: auto;
  }

  .site-footer__navigation {
    gap: 34px;
  }
}

/* ==========================================================
   FOOTER RESPONSIVE
   MOBILE
========================================================== */

@media (max-width: 767.98px) {
  .site-footer__main {
    padding: 56px 0 28px;
  }

  .site-footer__navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 34px 24px;
  }

  .site-footer__column:last-child {
    grid-column: 1 / -1;
  }

  /*
   * Solutions dibuat 2 kolom pada mobile besar
   * agar footer tidak terlalu panjang.
   */
  .site-footer__menu--solutions {
    columns: 2;

    column-gap: 24px;
  }

  .site-footer__menu--solutions li {
    break-inside: avoid;
  }

  .site-footer__contact {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;

    flex-direction: column;

    gap: 8px;
  }

  .site-footer__descriptor {
    text-align: left;
  }
}

/* ==========================================================
   FOOTER RESPONSIVE
   SMALL MOBILE
========================================================== */

@media (max-width: 575.98px) {
  .site-footer {
    padding-bottom: 20px;
  }

  .site-footer__main {
    padding-top: 48px;
  }

  .site-footer__logo {
    width: 178px;
  }

  .site-footer__description {
    max-width: 100%;
  }

  .site-footer__navigation {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .site-footer__column:last-child {
    grid-column: auto;
  }

  /*
   * Kembali menjadi single column
   * pada layar sangat kecil.
   */
  .site-footer__menu--solutions {
    columns: 1;
  }

  .site-footer__contact-card {
    padding: 21px;

    border-radius: 17px;
  }

  .site-footer__whatsapp {
    max-width: none;
  }
}

/* ==========================================================
   FLOATING WHATSAPP
========================================================== */

.floating-whatsapp {
  position: fixed;

  right: 30px;

  bottom: 30px;

  width: 60px;

  height: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #03306b;

  color: #ffffff;

  font-size: 30px;

  text-decoration: none;

  box-shadow: 0 12px 30px rgba(3, 48, 107, 0.35);

  z-index: 9999;

  transition: 0.3s;
}

.floating-whatsapp:hover {
  color: #ffffff;

  background: #022754;

  transform: translateY(-6px);

  box-shadow: 0 18px 35px rgba(3, 48, 107, 0.45);
}

/* ==========================================================
   MOBILE OFFCANVAS MENU
========================================================== */

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Main Links */

.mobile-menu__link,
.mobile-menu__toggle {
  width: 100%;

  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 14px;

  border: 0;
  border-radius: 10px;

  background: transparent;

  color: var(--color-primary);

  font-size: 16px;
  font-weight: 600;

  text-align: left;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
}

/* Button Reset */

.mobile-menu__toggle {
  cursor: pointer;
}

/* Hover */

.mobile-menu__link:hover,
.mobile-menu__toggle:hover {
  background: rgba(3, 48, 107, 0.06);

  color: var(--color-primary);
}

/* Active */

.mobile-menu__link.active,
.mobile-menu__toggle.active {
  background: rgba(3, 48, 107, 0.08);

  color: var(--color-primary);

  font-weight: 700;
}

/* Chevron */

.mobile-menu__chevron {
  font-size: 14px;

  transition: transform var(--transition-fast);
}

/* Rotate Chevron When Open */

.mobile-menu__toggle[aria-expanded="true"] .mobile-menu__chevron {
  transform: rotate(180deg);
}

/* Submenu */

.mobile-menu__submenu {
  padding: 4px 0 8px 14px;
}

/* Submenu Links */

.mobile-menu__sublink {
  position: relative;

  display: block;

  padding: 10px 14px 10px 24px;

  border-radius: 8px;

  color: var(--color-text-muted);

  font-size: 14px;
  font-weight: 500;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
}

/* Submenu Indicator */

.mobile-menu__sublink::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 8px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--color-accent);

  transform: translateY(-50%);
}

/* Submenu Hover */

.mobile-menu__sublink:hover {
  background: rgba(3, 48, 107, 0.05);

  color: var(--color-primary);
}
