/* ========== DESKTOP OPTIMIZATION (100% zoom) ========== */

/* Hero section */
.hero-title.display-4{
  font-size: 2.8rem !important; /* Bootstrap default 3.5rem */
  line-height: 1.15;
}

.hero-sub.lead{
  font-size: 1.15rem !important; /* Bootstrap default 1.25rem */
  line-height: 1.5;
}

.kicker{
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
}

/* Hero card */
.hero-card{
  padding: 2rem 2.5rem !important;
}

/* Hero stats */
.hero-stat{
  padding: 1rem !important;
}

.hero-stat .fw-bold{
  font-size: 1rem;
}

/* Section titles */
.section-title,
.produk-title,
.keunggulan-title{
  font-size: 2rem;
}

.section-lead,
.produk-sub,
.keunggulan-subtitle{
  font-size: 1rem;
}

/* Product cards */
.product-card,
.produk-card{
  padding: 1.5rem !important;
}

.product-card .h4,
.produk-name{
  font-size: 1.25rem;
}

.price,
.produk-price{
  font-size: 1.75rem !important;
}

/* Feature cards */
.feature-card{
  padding: 1.75rem;
}

.feature-title{
  font-size: 1.15rem;
}

.feature-description{
  font-size: 0.95rem;
}

/* Buttons */
.btn{
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
}

.btn.btn-aka{
  font-size: 0.95rem;
}

/* Navbar */
.navbar-aka{
  padding: 0.75rem 0;
}

.navbar-brand{
  font-size: 1.1rem;
}

.nav-link{
  font-size: 0.95rem;
}

/* Sections spacing */
section{
  padding: 3.5rem 0;
}

.py-5{
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Container max-width supaya tidak terlalu lebar di layar besar */
@media (min-width: 1400px){
  .container{
    max-width: 1280px !important; /* Default Bootstrap 1320px */
  }
}

@media (min-width: 1600px){
  .container{
    max-width: 1400px !important;
  }
}


:root{
  --aka-blue:#0B63DC;
  --aka-blue-2:#0A3AA6;
  --aka-cyan:#06B6D4;
  --aka-ink:#081225;
  --aka-slate:#64748b;
}

*{box-sizing:border-box;}
body{
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--aka-ink);
  overflow-x:hidden;
}

/* ======= NAVBAR (inspired: clean, centered, CTA) ======= */
.navbar-aka{
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  padding: 18px 0;
  z-index: 1030;
}

.navbar-aka.navbar--hero{
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.navbar-aka.navbar--solid{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(2,6,23,.10);
  border-bottom: 1px solid rgba(15,23,42,.08);
  padding: 10px 0;
}

.navbar-aka .navbar-brand{
  letter-spacing: .2px;
}

.navbar-aka.navbar--hero .navbar-brand,
.navbar-aka.navbar--hero .nav-link{
  color: rgba(255,255,255,.92) !important;
}

.navbar-aka.navbar--solid .navbar-brand,
.navbar-aka.navbar--solid .nav-link{
  color: var(--aka-ink) !important;
}

/* Jarak brand ke menu */
.navbar-aka .navbar-brand{
  margin-right: 24px;
}

/* Pastikan area collapse memakan sisa ruang supaya ms-auto bekerja */
.navbar-aka .navbar-collapse{
  flex-grow: 1;
}

/* Lebarkan klik area menu (lebih “biznet”) */
.navbar-aka .aka-link{
  padding-left: 18px !important;
  padding-right: 18px !important;
}


.nav-link{
  font-weight: 600;
  opacity: .95;
}

.nav-link:hover{opacity:1;}

.btn-aka{
  background: linear-gradient(135deg, var(--aka-cyan), var(--aka-blue));
  color:#fff;
  border:none;
  box-shadow: 0 10px 26px rgba(11,99,220,.25);
}

.btn-aka:hover{filter: brightness(.98); color:#fff; transform: translateY(-1px);}

/* ======= HERO ======= */
.hero{
  position: relative;
  min-height: 92vh;
  height: 92vh;              /* penting: supaya child height:100% bisa valid */
  color:#fff;
}

/* tinggi Swiper stack */
.hero .heroSwiper,
.hero .heroSwiper .swiper-wrapper,
.hero .heroSwiper .swiper-slide{
  height: 92vh;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: url('../img/wave.svg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  opacity: .95;
  pointer-events:none;
  z-index: 0;
}

.hero .heroSwiper{
  position: relative;
  z-index: 1;
}

.hero .container{ position:relative; z-index:2; }

.kicker{
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  padding:.45rem .75rem;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight:700;
  font-size:.9rem;
}

.hero-title{
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1.05;
}

.hero-sub{
  color: rgba(255,255,255,.85);
  max-width: 52ch;
}

.hero-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.hero-stat{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
}

/* Slide layout */
.hero-slide{
  position: relative;
  min-height: 92vh;
  height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
    rgba(10,20,40,0.75),
    rgba(0,0,0,0.45)
  );
}

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

/* ======= RESPONSIVE ======= */
@media (max-width: 575.98px){
  
  .hero-slide{
    min-height: 100svh;
    height: 100svh;
    align-items: flex-start;
  }


  .hero-content{
    width: 100%;
    padding-top: 4.25rem;
    padding-bottom: 2rem;
  }

  /* === FONT (override bootstrap) ===
     Pakai CSS variable per slide, tapi targetnya harus include .display-4 dan .lead */
  .hero .hero-title.display-4{
    font-size: var(--m-title, 1.75rem) !important;
    line-height: 1.12 !important;
    margin-bottom: .6rem !important;
  }

  .hero .hero-sub.lead{
    font-size: var(--m-sub, .90rem) !important;
    line-height: 1.45 !important;
    margin-bottom: .9rem !important;
  }

  .hero .kicker{
    font-size: .75rem !important;
    padding: .3rem .55rem !important;
    margin-bottom: .6rem !important;
  }

  .hero .btn{
    padding: .5rem .9rem !important;
    font-size: .9rem !important;
  }

  .hero-card{ padding: 1.15rem !important; }
  .hero-stat{ padding: .65rem !important; }
  .hero .hero-stat .fw-bold{ font-size: .95rem !important; }
  .hero .hero-stat .small{ font-size: .75rem !important; }

  .hero .row.g-3{ --bs-gutter-x: .75rem; --bs-gutter-y: .75rem; }
  .hero .row.g-4{ --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
  .hero .mt-4{ margin-top: 1rem !important; }
}



/* ===== Promo Slider (no crop) ===== */
.promo-wrap{ background:#fff; }

.promo-card{
  display:block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(2,6,23,.10);
  border: 1px solid rgba(15,23,42,.06);
  background: #fff; /* biar area kosongnya putih kalau contain */
}

/* Hilangkan height fix, pakai ratio banner */
.promo-card img{
  width: 100%;
  aspect-ratio: 21 / 9;   /* banner style */
  height: auto;
  object-fit: contain;     /* penting: tidak terpotong */
  display: block;
}

.promo-card--blur{
  position: relative;
  display:block;
  border-radius: 18px;
  overflow: hidden;
  background: #0b1220;
}

.promo-card--blur{
  box-shadow:
    0 2px 6px rgba(2, 6, 23, 0.08),
    0 18px 45px rgba(2, 6, 23, 0.12);
}

.promo-card--blur .promo-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;        /* untuk background saja */
  filter: blur(18px);
  transform: scale(1.08);
  opacity: .55;
}

.promo-card--blur .promo-img{
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: contain;      /* gambar utama tetap utuh */
  display:block;
}


/* Pagination */
.promoSwiper .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  opacity: .35;
}
.promoSwiper .swiper-pagination-bullet-active{ opacity: 1; }

/* Responsive: banner sedikit lebih tinggi di mobile */
@media (max-width: 991.98px){
  .promo-card img{ aspect-ratio: 16 / 9; }
}

/* ===== Produk / Paket (dark section) ===== */
.produk-wrap{
  background: radial-gradient(1200px 500px at 50% 0%, rgba(11,99,220,.20), rgba(2,6,23,0) 60%),
              linear-gradient(180deg, #0b1220 0%, #070c16 100%);
  color: #e5eefc;
}

.produk-title{
  font-weight: 800;
  letter-spacing: .2px;
}

.produk-sub{
  color: rgba(229,238,252,.75);
}

/* Card */
.produk-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.produk-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0,0,0,.32);
  border-color: rgba(56,189,248,.35);
}

.produk-name{ font-weight: 700; }

.produk-badge{
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(56,189,248,.15);
  border: 1px solid rgba(56,189,248,.35);
  color: #cfefff;
}

.produk-badge--light{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}

.produk-price{
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 4px;
}

.produk-price span{
  font-size: 1rem;
  font-weight: 600;
  color: rgba(229,238,252,.70);
}

.produk-sep{
  border-color: rgba(148,163,184,.20);
  margin: 16px 0;
}

.produk-list{
  padding-left: 18px;
  color: rgba(229,238,252,.85);
  margin-bottom: 18px;
}

.produk-note{
  font-size: .9rem;
  color: rgba(229,238,252,.60);
}

/* Highlight card (tengah) */
.produk-card--highlight{
  background: linear-gradient(135deg, rgba(56,189,248,.35), rgba(11,99,220,.55));
  border-color: rgba(255,255,255,.22);
}


/* ======= FLOATING PRODUCT STRIP (overlap) ======= */
.overlap-strip{
  position: relative;
  z-index: 5;
  margin-top: -92px;
}

.strip-wrap{
  background:#fff;
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(2,6,23,.12);
  border: 1px solid rgba(15,23,42,.06);
}

.product-card{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.07);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

.product-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(2,6,23,.12);
}

.price-kicker{color: var(--aka-slate); font-weight: 700; font-size: .9rem;}
.price{font-weight: 900; letter-spacing: -.02em;}

.badge-aka{
  background: rgba(6,182,212,.12);
  color: #0891b2;
  border: 1px solid rgba(6,182,212,.18);
  font-weight: 800;
}

/* ======= SECTIONS ======= */
.section-title{font-weight: 900; letter-spacing: -.02em;}
.section-lead{color: var(--aka-slate);}

.feature{
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}

.icon-pill{
  width: 56px; height: 56px;
  border-radius: 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(6,182,212,.18), rgba(11,99,220,.18));
  border: 1px solid rgba(11,99,220,.14);
}

/* ======= COVERAGE FORM ======= */
.coverage{
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.coverage-form{
  border-radius: 22px;
  background:#fff;
  border: 1px solid rgba(15,23,42,.07);
  box-shadow: 0 22px 60px rgba(2,6,23,.08);
}

.coverage-wrap{
  background:
    radial-gradient(900px 380px at 15% 0%, rgba(11,99,220,.10), rgba(255,255,255,0) 60%),
    radial-gradient(900px 380px at 85% 10%, rgba(56,189,248,.10), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

/* Judul */
.coverage-wrap h2,
.coverage-wrap .section-title{
  letter-spacing: -0.02em;
}

/* Card kiri (benefit kecil) dan card form kanan */
.coverage-wrap .coverage-card,
.coverage-wrap .coverage-form{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 55px rgba(2,6,23,.08);
}

/* Kalau Anda belum punya class coverage-card / coverage-form, ini tetap bantu
   karena banyak layout memakai .bg-white + .rounded-4 + .shadow */
.coverage-wrap .bg-white.rounded-4.shadow,
.coverage-wrap .bg-white.rounded-4.shadow-sm,
.coverage-wrap .bg-white.rounded-4.shadow-lg{
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 55px rgba(2,6,23,.08) !important;
}

/* Form controls lebih rapi */
.coverage-wrap .form-control,
.coverage-wrap select,
.coverage-wrap .custom-select{
  height: calc(2.8rem + 2px);
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: none;
}

.coverage-wrap .form-control:focus,
.coverage-wrap select:focus,
.coverage-wrap .custom-select:focus{
  border-color: rgba(11,99,220,.55);
  box-shadow: 0 0 0 .2rem rgba(11,99,220,.12);
}

/* CTA button lebih “niat” */
.coverage-wrap .btn-primary,
.coverage-wrap .btn-cek{
  border: none;
  border-radius: 12px;
  padding: .75rem 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #06b6d4, #0b63dc);
  box-shadow: 0 12px 28px rgba(11,99,220,.22);
}

.coverage-wrap .btn-primary:hover,
.coverage-wrap .btn-cek:hover{
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.coverage-mini{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:16px;
  box-shadow:0 14px 40px rgba(2,6,23,.06);
}

.coverage-ico{
  width:44px; height:44px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(11,99,220,.10);
  color:#0b63dc;
  margin-bottom:10px;
  font-size:18px;
}

.coverage-form{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  box-shadow:0 18px 55px rgba(2,6,23,.08);
}

/* Coverage Result Box */
.coverage-result {
  display: none;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coverage-result--success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: 2px solid #059669;
}

.coverage-result--warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border: 2px solid #d97706;
}

.coverage-result__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1rem;
}

.coverage-result__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.coverage-result__message {
  margin-bottom: 1rem;
  opacity: 0.95;
}

.coverage-result__address {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.btn-wa {
  background: white;
  color: #10b981;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: none;
}

.coverage-result--success .btn-wa {
  color: #10b981;
}

.coverage-result--warning .btn-wa {
  color: #f59e0b;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  color: inherit;
}

.btn-wa i {
  font-size: 1.25rem;
}


.coverage-form{ overflow: visible; }
.choices{ width: 100%; }
.choices__list--dropdown{ z-index: 9999; }

/* Rapikan spacing mobile */
@media (max-width: 991.98px){
  .coverage-wrap{ padding-top: 2.5rem; padding-bottom: 2.5rem; }
}


.form-select, .form-control{border-radius: 14px;}

/* Enhanced Keunggulan Section */
.keunggulan-wrap {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.keunggulan-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.keunggulan-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.keunggulan-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--aka-cyan), var(--aka-blue));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.keunggulan-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--aka-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.keunggulan-subtitle {
  font-size: 1.125rem;
  color: var(--aka-slate);
  line-height: 1.6;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 2rem;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--aka-cyan), var(--aka-blue));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.15);
  border-color: var(--aka-cyan);
}

.feature-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(59, 130, 246, 0.1));
  color: var(--aka-blue);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--aka-cyan), var(--aka-blue));
  color: white;
  box-shadow: 0 8px 16px rgba(14, 165, 233, 0.3);
}

.feature-icon i {
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--aka-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-description {
  color: var(--aka-slate);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.trust-banner {
  background: linear-gradient(135deg, var(--aka-blue), var(--aka-cyan));
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.trust-content {
  position: relative;
  z-index: 1;
}

.trust-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.trust-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.trust-count {
  font-size: 3rem;
  font-weight: 900;
  margin: 0.5rem 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-description {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .keunggulan-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .trust-banner {
    padding: 2rem 1.5rem;
  }
  
  .trust-count {
    font-size: 2.5rem;
  }
}

/* Enhanced Kontak Section */
.kontak-wrap {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.kontak-info-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
}

.kontak-info-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.kontak-info-item:hover {
  transform: translateX(8px);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(59, 130, 246, 0.1));
}

.kontak-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--aka-cyan), var(--aka-blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.kontak-info-text {
  flex: 1;
}

.kontak-info-label {
  font-weight: 700;
  color: var(--aka-dark);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.kontak-info-value {
  color: var(--aka-slate);
  margin: 0;
  font-size: 0.9rem;
}

.kontak-form-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  height: 100%; /* ✅ Full height untuk sejajar */
  display: flex;
  flex-direction: column;
}

.kontak-form-card .form-label {
  font-weight: 600;
  color: var(--aka-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.kontak-form-card .form-control,
.kontak-form-card .form-control:focus {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.kontak-form-card .form-control:focus {
  border-color: var(--aka-cyan);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.kontak-form-card textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-kontak {
  background: linear-gradient(135deg, var(--aka-cyan), var(--aka-blue));
  color: white;
  border: none;
  padding: 0.875rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-submit-kontak:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
  color: white;
}

.btn-submit-kontak:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-top: 1rem;
  display: none;
  animation: slideIn 0.3s ease;
}

.form-alert.show {
  display: block;
}

.form-alert-success {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-alert-error {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aka-cyan), var(--aka-blue), var(--aka-cyan));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand-section {
  flex: 1;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 0;
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 0;
}

.footer-dev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.9;
  font-size: 0.9rem;
}

.footer-dev i {
  color: #ef4444;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.1); }
  20% { transform: scale(0.9); }
}

.footer-dev a {
  color: var(--aka-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-dev a:hover {
  color: white;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .kontak-form-card {
    padding: 1.5rem;
  }
}


/* ===== NAVBAR IMPROVEMENT ===== */
.navbar-aka{
  padding: 12px 0;                 /* lebih slim */
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

/* hero state: transparan + blur */
.navbar-aka.navbar--hero{
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

/* scrolled state: solid */
.navbar-aka.navbar--solid{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(2,6,23,.10);
  border-bottom: 1px solid rgba(15,23,42,.08);
  padding: 8px 0;
}

/* brand */
.navbar-aka .navbar-brand{
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* link typography */
.aka-link{
  position: relative;
  font-weight: 700;
  padding: 10px 12px !important;
  border-radius: 999px;
}

/* hero text colors */
.navbar-aka.navbar--hero .navbar-brand,
.navbar-aka.navbar--hero .aka-link{
  color: rgba(255,255,255,.92) !important;
}

/* solid text colors */
.navbar-aka.navbar--solid .navbar-brand,
.navbar-aka.navbar--solid .aka-link{
  color: var(--aka-ink) !important;
}

/* underline indicator (hover + active) */
.aka-link::after{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
  background: rgba(255,255,255,.85);
}

.navbar-aka.navbar--solid .aka-link::after{
  background: linear-gradient(135deg, var(--aka-cyan), var(--aka-blue));
}

.aka-link:hover::after,
.aka-link.is-active::after{
  transform: scaleX(1);
}

/* active pill (lebih kelihatan) */
.navbar-aka.navbar--solid .aka-link.is-active{
  background: rgba(11,99,220,.06);
}

/* CTA button polish */
.aka-cta{
  box-shadow: 0 10px 26px rgba(11,99,220,.22);
}

/* toggler style biar gak “default” */
.aka-toggler{
  border: 0 !important;
  padding: 8px 10px;
  border-radius: 12px;
}

.navbar-aka.navbar--hero .aka-toggler{
  background: rgba(255,255,255,.12);
}

.navbar-aka.navbar--solid .aka-toggler{
  background: rgba(2,6,23,.04);
}

/* offcanvas menu biar modern */
.offcanvas{
  border-left: 1px solid rgba(15,23,42,.08);
}

/* Custom Hamburger Menu */
.navbar-toggler.aka-toggler{
  border: none;
  padding: 0.5rem;
  position: relative;
  width: 40px;
  height: 40px;
}

.navbar-toggler.aka-toggler:focus{
  box-shadow: none;
}

/* Hide default Bootstrap icon */
.navbar-toggler.aka-toggler .navbar-toggler-icon{
  display: none;
}

.custom-burger{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.custom-burger span{
  display: block;
  height: 3px;
  background: black;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Variasi panjang garis */
.custom-burger span:nth-child(1){
  width: 100%; /* garis paling panjang */
}

.custom-burger span:nth-child(2){
  width: 80%; /* garis tengah */
  margin-left: auto;
}

.custom-burger span:nth-child(3){
  width: 60%; /* garis paling pendek */
  margin-left: auto;
}

/* Di mobile dengan behavior yang sama (blur di hero, solid di scroll) */
@media (max-width: 991.98px){
  /* Hero state: blur background */
  .navbar-aka.navbar--hero{
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15,23,42,.1);
  }
  
  /* Solid state saat scroll */
  .navbar-aka.navbar--solid{
    background: rgba(255,255,255,.98);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(15,23,42,.12);
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
  }
  
  /* Text dan icon selalu dark di mobile (untuk readability) */
  .navbar-aka .navbar-brand,
  .navbar-aka .aka-link{
    color: var(--aka-ink) !important;
  }
  
  /* Burger selalu dark */
  .navbar-aka .custom-burger span{
    background: var(--aka-ink);
  }
  
  .aka-link::after{ 
    background: linear-gradient(135deg, var(--aka-cyan), var(--aka-blue)); 
  }
}


/* Animasi jadi X saat diklik */
.navbar-toggler.aka-toggler.active .custom-burger span:nth-child(1){
  transform: rotate(45deg) translate(5px, 6px);
  width: 100%;
}

.navbar-toggler.aka-toggler.active .custom-burger span:nth-child(2){
  opacity: 0;
}

.navbar-toggler.aka-toggler.active .custom-burger span:nth-child(3){
  transform: rotate(-45deg) translate(5px, -6px);
  width: 100%;
}

/* Mobile portrait: blur di hero, solid saat scroll */
@media (max-width: 575.98px){
  /* Hero state: blur background */
  .navbar-aka.navbar--hero{
      background: rgba(255,255,255,.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  }
  
  /* Solid state saat scroll */
  .navbar-aka.navbar--solid{
    background: rgba(255,255,255,.98);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(15,23,42,.12);
    box-shadow: 0 1px 6px rgba(0,0,0,.05);
  }
  
  /* Navbar slim di mobile kecil */
  .navbar-aka{
    padding: 10px 0 !important;
    min-height: 56px;
  }
  
  /* Container rapat */
  .navbar-aka .container{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    gap: 12px;
  }
  
  /* Brand lebih kecil */
  .navbar-aka .navbar-brand{
    font-size: 0.8rem !important;
    max-width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Hamburger */
  .navbar-toggler.aka-toggler{
    width: 38px;
    height: 38px;
    padding: 8px;
    margin-left: 0 !important;
    flex-shrink: 0;
  }
  
  .custom-burger{
    width: 22px;
    height: 16px;
  }
  
  .custom-burger span{
    height: 2.5px;
  }
  
  /* Text dan icon selalu dark */
  .navbar-aka .navbar-brand,
  .navbar-aka .aka-link{
    color: var(--aka-ink) !important;
  }
  
  .navbar-aka .custom-burger span{
    background: var(--aka-ink);
  }
}


/* Hero section */

.hero-slide{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Gradient gelap dari kiri-atas ke kanan-bawah */
  background: linear-gradient(135deg, 
    rgba(10, 20, 40, 0.75),    /* biru gelap 75% opacity */
    rgba(0, 0, 0, 0.45)        /* hitam 50% opacity */
  );
}

.hero-content{
  position: relative;
  z-index: 2;
  color: white;
}


