/* ============================
   BAKSYA LANDING PAGE STYLES
   ============================ */

:root {
  /* Colors */
  --baksya-green: #2D5A3D;
  --baksya-green-dark: #1E3F2B;
  --baksya-green-light: #3A7A52;
  --baksya-lime: #C0FA31;
  --baksya-lime-alt: #B8E600;
  --baksya-gray-bg: #F5F5F5;
  --baksya-gray-light: #E8E8E8;
  --baksya-text: #1A1A1A;
  --baksya-text-muted: #666666;
  --baksya-white: #FFFFFF;

  /* Layout - Page Gutter (horizontal padding for sections) */
  --baksya-gutter-desktop: 110px;
  --baksya-gutter-tablet: 40px;
  --baksya-gutter-mobile: 20px;

  /* Layout - Container */
  --baksya-max-container: 1320px;
}

/* ============================
   GLOBAL
   ============================ */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--baksya-text);
  overflow-x: hidden;
  background: #FAFAFA;
}

.baksya-section,
#baksya-hero,
#baksya-about,
#baksya-armada-premium,
#baksya-layanan,
#baksya-armada,
#baksya-kota,
#baksya-mitra,
#baksya-berita,
#baksya-cta,
.baksya-navbar,
.peta-baksya-section,
.news-section,
.baksya-footer {
  padding-left: var(--baksya-gutter-desktop);
  padding-right: var(--baksya-gutter-desktop);
}

/* Vertical padding for sections */
.baksya-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Container inside sections */
#baksya-hero .container,
#baksya-about .container,
#baksya-armada-premium .container,
#baksya-armada .container,
#baksya-kota .container,
#baksya-berita .container,
#baksya-cta .container,
.baksya-navbar .container,
.baksya-footer .container,
.news-section .container
.baksya-container {
  width: 100%;
  max-width: var(--baksya-max-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* ============================
   RESPONSIVE LAYOUT
   ============================ */
@media (max-width: 991px) {
  .baksya-section,
  #baksya-hero,
  #baksya-about,
  #baksya-armada-premium,
  #baksya-layanan,
  #baksya-armada,
  #baksya-kota,
  #baksya-mitra,
  #baksya-berita,
  #baksya-cta,
  .baksya-navbar,
  .news-section,
  .peta-baksya-section,
  .baksya-footer {
    padding-left: var(--baksya-gutter-tablet);
    padding-right: var(--baksya-gutter-tablet);
  }
  .baksya-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #baksya-hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .baksya-hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .baksya-hero-desc {
    font-size: 1.1rem;
  }
  .baksya-hero-bg {
    object-position: 60% center;
  }
}

@media (max-width: 575px) {
  .baksya-section,
  #baksya-hero,
  #baksya-about,
  #baksya-armada-premium,
  #baksya-layanan,
  #baksya-armada,
  #baksya-kota,
  #baksya-mitra,
  #baksya-berita,
  #baksya-cta,
  .baksya-navbar,
  .peta-baksya-section,
  .news-section,
  .baksya-footer {
    padding-left: var(--baksya-gutter-mobile);
    padding-right: var(--baksya-gutter-mobile);
  }
  .baksya-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #baksya-hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .baksya-hero-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .baksya-hero-desc {
    font-size: 0.95rem;
  }
  .baksya-hero-bg {
    object-position: 70% center;
  }
}

.peta-baksya-section {
  min-height: 700px;
  height: 100%;
}

/* Responsive untuk layar besar */
@media (min-width: 1800px) {
  .peta-baksya-section {
    min-height: 900px;
  }
}

@media (min-width: 2200px) {
  .peta-baksya-section {
    min-height: 1000px;
  }
}

.baksya-section-title {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: var(--baksya-text);
}

.baksya-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.baksya-section-subtitle {
  font-size: 1rem;
  color: var(--baksya-text-muted);
  line-height: 1.7;
  text-align: end;
}

.baksya-badge {
  display: inline-block;
  background: white;
  color: #548956;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0 0 20px 20px;
}

.baksya-badge-armada {
  display: inline-block;
  background: #5489561A;
  color: #548956;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 12px;
}

.baksya-btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--baksya-lime);
  color: var(--baksya-green-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.baksya-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #548956;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
}

.baksya-btn-lime:hover {
  background: var(--baksya-lime-alt);
  color: var(--baksya-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(193, 255, 0, 0.3);
}

.baksya-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9.62px;
  background: transparent;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 8px 20px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 159px;
  height: 36px;
}

.baksya-btn-outline:hover {
  background: var(--baksya-green);
  color: var(--baksya-white);
}

.baksya-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--baksya-green);
  color: var(--baksya-white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.baksya-btn-green:hover {
  background: var(--baksya-green-dark);
  color: var(--baksya-white);
  transform: translateY(-2px);
}

/* ============================
   HEADER / NAVBAR
   ============================ */
.baksya-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 30, 30, 0.35);
  padding-top: 20px;
  padding-bottom: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.baksya-navbar.scrolled {
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.baksya-navbar .navbar-brand img {
  height: 36px;
}

.baksya-navbar .nav-link {
  color: var(--baksya-white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: color 0.3s ease;
}

.baksya-navbar.scrolled .nav-link {
  color: var(--baksya-text);
}

.baksya-navbar .nav-link:hover,
.baksya-navbar .nav-link.active {
  color: var(--baksya-lime);
}

.baksya-navbar.scrolled .nav-link:hover,
.baksya-navbar.scrolled .nav-link.active {
  color: var(--baksya-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.baksya-navbar .btn-wa {
  background: var(--baksya-lime);
  color: var(--baksya-green-dark);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.baksya-navbar .btn-wa:hover {
  background: var(--baksya-lime-alt);
  transform: translateY(-1px);
}

.baksya-navbar .navbar-toggler {
  border: none;
  color: var(--baksya-white);
  font-size: 1.4rem;
}

.baksya-navbar.scrolled .navbar-toggler {
  color: var(--baksya-text);
}

/* ============================
   HERO SECTION
   ============================ */
#baksya-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.baksya-hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 0;
}

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

.hero-content{
  max-width: 707px;
}

.baksya-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: 0;
  color: #F5F5F5;
  margin-bottom: 20px;
}

.baksya-hero-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  color: #F5F5F5;
  margin-bottom: 32px;
  max-width: 380px;
}

.baksya-hero-car {
  position: absolute;
  right: -5%;
  bottom: 10%;
  width: 55%;
  z-index: 1;
}

.baksya-hero-car img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .baksya-hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .baksya-hero-desc {
    font-size: 1rem;
  }
  .hero-content {
    min-width: 300px;
    max-width: 500px;
  }
  #baksya-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .baksya-hero-bg {
    object-fit: cover;
    object-position: 65% center;
  }
  .baksya-hero-car {
    display: none;
  }
  #baksyaMobileMenu .navbar-brand img {
    height: 28px;
  }
  #baksyaMobileMenu {
    width: 75% !important;
  }
}

/* ============================
   ABOUT SECTION
   ============================ */
#baksya-about {
  background: var(--baksya-white);
}

.baksya-about-wrapper {
  display: flex;
  gap: 70px;
}

.baksya-about-logo {
  flex-shrink: 0;
}

.baksya-about-logo img {
  max-width: 400px;
  width: 100%;
  height: 64;
}

.baksya-about-divider {
  background: #D2D2D2;
  width: 1px;
  flex-shrink: 0;
}

.baksya-about-text {
  max-width: 650px;
  width: 100%;
}

.baksya-about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 100%;
  letter-spacing: 0;
  color: #1F1F1F;
  margin-bottom: 16px;
}

.baksya-about-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  color: #777777;
  margin-bottom: 24px;
}

.baksya-btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 316px;
  height: 40px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #54895699;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  color: #548956;
  text-decoration: none;
  transition: all 0.3s ease;
}

.baksya-btn-download:hover {
  background: rgba(84, 137, 86, 0.1);
}

@media (max-width: 1024px) {
  .baksya-about-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .baksya-about-divider {
    width: 100%;
    height: 2px;
  }
  .baksya-about-logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .baksya-about-text {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .baksya-about-logo img {
    height: 48px;
  }
  .baksya-about-wrapper {
    gap: 20px;
  }
  .baksya-about-text h2 {
    font-size: 1.5rem;
  }
  .baksya-about-text p {
    font-size: 0.95rem;
  }
  .baksya-btn-download {
    width: 280px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* ============================
   ARMADA PREMIUM SECTION
   ============================ */
#baksya-armada-premium {
  text-align: center;
}

.baksya-armada-premium-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #548956;
}

.baksya-armada-premium-images {
  display: flex;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto 0;
}

.baksya-armada-premium-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#baksya-armada-premium h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #1F1F1F;
}

#baksya-armada-premium p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  color: #777777;
  max-width: 610px;
}

@media (max-width: 767px) {
  .baksya-armada-premium-images {
    flex-direction: column;
    border-radius: 16px;
  }
  .baksya-armada-premium-images .armada-img {
    height: 180px;
  }
}

/* ============================
   LAYANAN SECTION
   ============================ */
.baksya-layanan-box {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.baksya-layanan-header {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(86.86deg, #1E4727 14.85%, #548956 166.93%);
  border-radius: 80px 80px 0 0 ;
}

.baksya-layanan-header .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.baksya-layanan-header::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.baksya-layanan-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.baksya-layanan-tabs-wrapper {
  position: relative;
  max-width: 1100px;
  margin:  0 auto;
}

.baksya-layanan-tabs-dropdown {
  display: none;
}

.baksya-layanan-dropdown-toggle {
  display: none;
  width: 100%;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  justify-content: space-between;
  align-items: center;
}

.baksya-layanan-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--baksya-white);
}

.baksya-layanan-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: var(--baksya-white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 100;
  overflow: hidden;
}

.baksya-layanan-dropdown-menu.show {
  display: block;
}

.baksya-layanan-dropdown-menu .baksya-layanan-tab {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: var(--baksya-green);
  border: none;
  border-radius: 0;
  text-align: left;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin-bottom: 0;
}

.baksya-layanan-dropdown-menu .baksya-layanan-tab:hover {
  background: rgba(84, 137, 86, 0.1);
}

.baksya-layanan-dropdown-menu .baksya-layanan-tab.active {
  background: var(--baksya-lime);
  color: #1E4727;
}

.baksya-layanan-tabs {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 100px;
  border: 1px solid #FFFFFF57;
}

.baksya-layanan-tab {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.baksya-layanan-tab.active {
  background: var(--baksya-lime);
  color: #1E4727;
  border-color: var(--baksya-lime);
}

.baksya-layanan-tab:hover:not(.active) {
  color: var(--baksya-white);
  background: rgba(255, 255, 255, 0.15);
}

.baksya-layanan-content {
  padding: 50px 40px;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}

.baksya-layanan-content-wrapper {
  background: #5489561F !important;
  border-radius: 0 0 80px 80px;
  width: 100%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.baksya-layanan-detail {
  display: none;
}

.baksya-layanan-detail.active {
  display: flex;
}

.baksya-layanan-detail-left h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--baksya-green);
}

.baksya-layanan-detail-left p {
  color: var(--baksya-green);
  line-height: 1.7;
}

.baksya-step {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.baksya-step-number {
  position: relative;
  flex-shrink: 0;
}

.baksya-step-number span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--baksya-lime);
  color: var(--baksya-green-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.baksya-step-number::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 54px;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--baksya-green);
}

.baksya-step:last-child .baksya-step-number::after {
  display: none;
}

.baksya-step-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--baksya-green);
}

.baksya-step-text p {
  color: var(--baksya-green);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 1023.9px) {
  .baksya-layanan-detail-left p {
    margin-bottom: 20px;
  }

  .baksya-layanan-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .baksya-layanan-header .container h2 {
    font-size: 28px;
  }

  .baksya-layanan-content {
    padding: 40px 20px;
  }

  .baksya-layanan-header {
    border-radius: 40px 40px 0 0;
  }

  .baksya-layanan-content-wrapper {
    border-radius:  0 0 40px 40px;
  }
}

.baksya-armada-tabs {
  display: flex;
  border: 1px solid #54895680;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 40px;
  width: 100%;
  height: 73px;
  gap: 11px;
  padding: 10px;
  background: #F5F5F50D;
  max-width: 100%;
}

.baksya-armada-tab {
  flex: 1;
  padding: 10px 28px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: #333333;
  border-radius: 100px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.baksya-armada-tab.active {
  background: #548956;
  color: white;
  border-radius: 100px;
}

.baksya-armada-tabs-container {
  position: relative;
  width: 100%;
}

.baksya-armada-tabs-dropdown {
  display: none;
  position: relative;
}

.baksya-armada-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  background: #548956;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.baksya-armada-dropdown-toggle:hover {
  background: #3d6a40;
}

.baksya-armada-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.baksya-armada-tabs-dropdown.open .baksya-armada-dropdown-menu,
.baksya-armada-vehicle-dropdown.open .baksya-armada-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.baksya-armada-dropdown-item {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.baksya-armada-dropdown-item:last-child {
  border-bottom: none;
}

.baksya-armada-dropdown-item:hover {
  background: #f8f9fa;
  padding-left: 24px;
}

.baksya-armada-dropdown-item.active {
  background: var(--baksya-lime);
  color: var(--baksya-green-dark);
  font-weight: 600;
}

.baksya-armada-vehicle-dropdown {
  display: none;
  width: 100%;
  margin-top: 16px;
  position: relative;
}

.baksya-armada-vehicle-dropdown .baksya-armada-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  background: #548956;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.baksya-armada-vehicle-dropdown .baksya-armada-dropdown-toggle:hover {
  background: #3d6a40;
}

.baksya-armada-vehicle-dropdown .baksya-armada-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.baksya-armada-vehicle-dropdown.open .baksya-armada-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.baksya-armada-list-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.baksya-armada-panels {
  width: 100%;
}

.baksya-armada-panel {
  display: none;
  width: 100%;
}

.baksya-armada-panel.active {
  display: flex;
  width: 100%;
  gap: 30px;
  align-items: stretch;
}

.baksya-armada-list {
  min-width: 295px;
  width: max-content;
  background: linear-gradient(169.45deg, #548956 -74.04%, #14421E 97.62%);
  border-radius: 48px;
  padding: 32px 28px;
  gap: 12px;
  box-shadow: 8px 0px 24px 0px #00000033;
  color: var(--baksya-white);
  position: relative;
}

.baksya-armada-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/baksya/bg-armada-list.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 48px;
  opacity: 0.3;
}

.baksya-armada-list-title {
  font-size: 0.85rem;
  margin-bottom: 12px;
  padding-bottom: 10px;
  color: white;
  border-bottom: 1px solid #B6DEC7;
}

.baksya-armada-list-item {
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.baksya-armada-list-item:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(2px);
}

.baksya-armada-list-item.active {
  background: var(--baksya-lime);
  color: var(--baksya-green-dark);
  font-weight: 600;
  border-color: var(--baksya-lime);
  box-shadow: 0 2px 8px rgba(192, 250, 49, 0.3);
}

.baksya-armada-list-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.baksya-armada-list-item:hover::before {
  left: 100%;
}

.baksya-armada-display {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.baksya-armada-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 20px;
  border-radius: 24px;
  position: relative;
}

.baksya-armada-card {
  display: flex;
  gap: 30px;
  width: 100%;
  box-shadow: 0px 4px 25px 0px #0000001A;
  background: url('../img/baksya/bg-card-armada.png');
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  border-radius: 48px;
  padding: 32px;
  height: 500px;
}

.baksya-armada-car-image {
  width: 450px;
  height: 225px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--baksya-text-muted);
  object-fit: contain;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.baksya-armada-car-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.baksya-armada-info {
  text-align: left;
  min-width: 200px;
}

.baksya-armada-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (max-width: 1499px) {
  .baksya-layanan-tabs-dropdown {
    display: block;
  }
  
  .baksya-layanan-dropdown-toggle {
    display: flex;
  }
  
  .baksya-layanan-tabs {
    display: none;
  }
}

@media (max-width: 1279.9px) {
  /* Hide desktop tabs, show mobile dropdown */
  .baksya-armada-tabs {
    display: none;
  }
  
  .baksya-armada-tabs-dropdown {
    display: block;
  }
  
  /* Hide desktop vehicle list, show mobile dropdown */
  .baksya-armada-list {
    display: none;
  }
  
  .baksya-armada-vehicle-dropdown {
    display: block;
    position: relative;
    z-index: 100;
  }
  
  /* Ensure dropdown menu appears above other content */
  .baksya-armada-vehicle-dropdown .baksya-armada-dropdown-menu {
    z-index: 1001;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
  }
  
  /* Adjust card layout for mobile */
  .baksya-armada-panel.active {
    flex-direction: column;
    gap: 20px;
  }
  
  .baksya-armada-card {
    flex-direction: column;
    padding: 24px;
  }
  
  .baksya-armada-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .baksya-armada-car-image {
    width: 100%;
    max-width: 350px;
    height: 200px;
    margin-bottom: 20px;
  }
  
  .baksya-armada-info {
    text-align: center;
    min-width: auto;
    width: 100%;
  }
  
  .baksya-armada-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 991px) {
  .baksya-armada-panel.active {
    flex-direction: column;
  }
  .baksya-armada-list {
    min-width: auto;
  }
  .baksya-armada-tabs {
    flex-direction: column;
    border-radius: 16px;
  }
  .baksya-armada-tab.active {
    border-radius: 16px;
  }
}

/* ============================
   KOTA SECTION
   ============================ */
#baksya-kota {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #365F3D;
  position: relative;
}

.baksya-kota-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
}

.baksya-kota-map {
  max-width: 600px;
  width: 100%;
}

.baksya-kota-map-placeholder {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
}

#baksya-kota h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
}

#baksya-kota p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: justify;
  color: white;
}

.baksya-kota-list {
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 300px;
}

.baksya-kota-list li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.baksya-kota-list li::before {
  content: '•';
  color: var(--baksya-lime);
  font-weight: bold;
  font-size: 1.2rem;
}

.baksya-kota-divider {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.baksya-kota-divider img {
  width: 100%;
  min-height: 100px;
  height: 100%;
}

/* ============================
   MITRA SECTION
   ============================ */

#baksya-mitra h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #548956;
  margin-bottom: 20px;
}

.baksya-mitra-swiper {
  overflow: hidden;
  margin-left: -24px;
  margin-right: -24px;
}

.baksya-mitra-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
}

.baksya-mitra-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.baksya-mitra-logo {
  width: max-content;
  height: 70px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.baksya-mitra-logo img {
  max-width: max-content;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ============================
   BERITA SECTION
   ============================ */
.baksya-berita-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  width: 100%;
}

.baksya-berita-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 10px 24px;
  gap: 8px;
  border-radius: 12px;
  background: rgba(84, 137, 86, 0.1);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #548956;
}

.baksya-berita-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  min-width: 64px;
  padding: 0 24px;
  border-radius: 100px;
  background: #365F3D;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

.baksya-berita-btn:hover {
  background: #2D5A3D;
  color: #FFFFFF;
}

.baksya-berita-btn::after {
  content: '→';
  font-size: 16px;
}

#baksya-berita .baksya-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0;
  color: #1C252E;
  margin-bottom: 40px;
}

.baksya-berita-card {
  background: var(--baksya-white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.baksya-berita-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.baksya-berita-card-img {
  height: 200px;
  background: var(--baksya-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--baksya-text-muted);
  font-size: 0.85rem;
  overflow: hidden;
}

.baksya-berita-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.baksya-berita-card-body {
  padding: 20px;
}

.baksya-berita-date {
  font-size: 0.8rem;
  color: var(--baksya-green);
  margin-bottom: 8px;
}

.baksya-berita-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.baksya-berita-card-body p {
  font-size: 0.85rem;
  color: var(--baksya-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.baksya-berita-link {
  color: var(--baksya-text);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.baksya-berita-link:hover {
  color: var(--baksya-green);
}

/* ============================
   CTA SECTION
   ============================ */
.baksya-cta-box {
  position: relative;
  background: url('../img/baksya/bg-cta.png') center/cover no-repeat;
  background-color: #1E4727;
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  width: 100%;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.baksya-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  z-index: 0;
}

.baksya-cta-box > * {
  position: relative;
  z-index: 1;
}

.baksya-cta-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.baksya-cta-box p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #FFFFFF;
  max-width: 600px;
  margin: 0 auto 24px;
}

.baksya-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9.62px;
  width: 159px;
  height: 36px;
  padding: 8px 20px;
  border-radius: 10px;
  background: #C0FA31;
  border: none;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: #365F3D;
  transition: all 0.3s ease;
}

.baksya-cta-btn:hover {
  background: #B8E600;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .baksya-cta-box {
    min-height: 250px;
    padding: 50px 40px;
  }
  .baksya-cta-box h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .baksya-cta-box p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .baksya-cta-box {
    min-height: 220px;
    padding: 40px 24px;
    border-radius: 20px;
  }
  .baksya-cta-box h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .baksya-cta-box p {
    font-size: 14px;
    line-height: 140%;
  }
  .baksya-cta-btn {
    width: 140px;
    height: 34px;
    font-size: 14px;
    padding: 6px 16px;
  }
}

/* ============================
   FOOTER
   ============================ */
.baksya-footer {
  padding-top: 30px;
  padding-bottom: 30px;
}

.baksya-footer-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.baksya-footer-brand img {
  max-width: 400px;
  width: 100%;
  height: 64px;
}

.baksya-footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.baksya-footer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.baksya-footer-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--baksya-green);
}

.baksya-footer-item p {
  margin: 0;
  color: var(--baksya-text-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.baksya-footer-copyright {
  border-top: 1px solid #606060;
  padding: 20px 0;
  text-align: center;
}

.baksya-footer-copyright span {
  color: var(--baksya-text-muted);
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .baksya-footer-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .baksya-footer-brand img {
    height: 48px;
  }
  .baksya-footer-wrapper {
    gap: 24px;
  }
  .baksya-footer-item {
    gap: 8px;
  }
  .baksya-footer-item p {
    font-size: 0.85rem;
  }
  .baksya-footer-copyright span {
    font-size: 0.75rem;
  }
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.baksya-layanan-detail {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.baksya-layanan-detail.active {
    display: flex;
    opacity: 1;
}

.baksya-layanan-tab {
    cursor: pointer;
    transition: all 0.3s ease;
}

.baksya-layanan-tab.active {
    font-weight: bold;
}