:root {
    --brand-dark: #0a0a0a;
    --brand-gold: #c9a84c;
    --brand-white: #f5f0eb;
    --brand-gray: #888;
  }

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

  body {
    font-family: 'Cinzel', sans-serif;
    /* background: var(--brand-dark); */
    color: var(--brand-white);
    overflow-x: hidden;
    padding-top: 0;
  }

  html {
    scroll-behavior: smooth;
  }
  
  #heroCarousel, #about, #ecosystem, #community, #contact {
    scroll-margin-top: 80px;
  }

  /* ─── NAVBAR ─────────────────────────────────── */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
    background: transparent;
    transition: background 0.3s ease;
  }

  .navbar-toggler{
    border:none !important;
  }

  .navbar-brand {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--brand-white) !important;
    letter-spacing: 0.04em;
  }

  .navbar-brand img {
      max-width:120px;
      height:auto;
  }

  .nav-link {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--brand-white) !important;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem !important;
    transition: color 0.25s;
  }
  .nav-link:hover { color: var(--brand-gold) !important; }

  .btn-join {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--brand-white);
    border-radius: 20px;
    padding: 0.45rem 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
  }
  .btn-join:hover {
    background: var(--brand-white);
    color: var(--brand-dark);
  }

  .search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 0.35rem 1rem;
    gap: 0.4rem;
  }
  .search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--brand-white);
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    width: 100px;
  }
  .search-box input::placeholder { color: rgba(255,255,255,0.6); }
  .search-box i { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

  /* ─── HERO SLIDER ─────────────────────────────── */
  #heroCarousel { position: relative; height: 100vh; overflow: hidden; }

  .carousel-inner, .carousel-item { height: 100vh; }

  .slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;        /* ← penting agar gambar full cover */
    object-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
  }
  .carousel-item.active .slide-bg { transform: scale(1); }  

  /* gradient overlay */
  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(127deg, rgba(0, 0, 0, 0.82) 0%, rgb(0 0 0 / 70%) 50%, rgba(0, 0, 0, 0.15) 100%);
  }

  /* Slide 1 */
  .slide-1 .slide-bg {
    background-image:
      linear-gradient(135deg, #1a0a00 0%, #3d1f00 40%, #1a0800 100%);
  }
  /* decorative circles (replaces photo) */
  .slide-1 .slide-bg::after {
    content: '';
    position: absolute;
    right: -5%; top: 50%;
    transform: translateY(-50%);
    width: 55vw; height: 55vw;
    max-width: 700px; max-height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
    box-shadow: 0 0 0 1px rgba(201,168,76,0.12), 0 0 0 60px rgba(201,168,76,0.05);
  }

  /* Slide 2 */
  .slide-2 .slide-bg {
    background-image:
      linear-gradient(135deg, #0a1a0a 0%, #0f2d10 40%, #05120a 100%);
  }
  .slide-2 .slide-bg::after {
    content: '';
    position: absolute;
    right: 5%; top: 50%;
    transform: translateY(-50%);
    width: 45vw; height: 45vw;
    max-width: 600px; max-height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76,201,120,0.14) 0%, transparent 70%);
  }

  /* Slide 3 */
  .slide-3 .slide-bg {
    background-image:
      linear-gradient(135deg, #0a0a1a 0%, #1a1040 40%, #080814 100%);
  }
  .slide-3 .slide-bg::after {
    content: '';
    position: absolute;
    right: 5%; top: 50%;
    transform: translateY(-50%);
    width: 50vw; height: 50vw;
    max-width: 650px; max-height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120,76,201,0.18) 0%, transparent 70%);
  }

  /* ─── SLIDE CONTENT ───────────────────────────── */
  .slide-content {
    position: absolute;
    bottom: 0; left: 0; right: 0; top: 0;
    display: flex;
    align-items: center;
  }

  .hero-label {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--brand-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .hero-label img{
    max-width:200px;
    height:auto;
  }

  .hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--brand-white);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
  }

  .hero-title strong {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--brand-white);
    display: block;
  }

  .hero-subtitle {
    font-family: 'Cinzel', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.7;
  }

  .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-hero-primary {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: #ffffff;
    color: #171717;
    border: 1.5px solid var(--brand-white);
    padding: 0.75rem 1.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-hero-primary:hover {
    border-color: var(--brand-white);
    background: rgba(255,255,255,0.08);
    color: var(--brand-white);
  }

  .btn-hero-secondary {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: #ffffff;
    color: #171717;
    border: 1.5px solid rgba(255,255,255,0.45);
    padding: 0.75rem 1.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-hero-secondary:hover {
    border-color: var(--brand-white);
    background: rgba(255,255,255,0.08);
    color: var(--brand-white);
  }

  /* ─── CAROUSEL CONTROLS ───────────────────────── */
  .carousel-control-next {
    right: 2rem; width: auto;
    opacity: 1;
  }
  .carousel-control-prev {
    left: 2rem; width: auto;
    opacity: 1;
  }

  .ctrl-btn {
    width: 52px; height: 52px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-white);
    font-size: 1.3rem;
    transition: all 0.3s;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
  }
  .ctrl-btn:hover {
    border-color: var(--brand-white);
    background: rgba(255,255,255,0.15);
  }

  /* ─── CAROUSEL INDICATORS ─────────────────────── */
  .carousel-indicators {
    bottom: 2.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: center;
    padding-left: 0;
    gap: 0.5rem;
  }
  .carousel-indicators [data-bs-target] {
    width: 40px; height: 3px;
    border-radius: 0;
    background: rgba(255,255,255,0.4);
    border: none;
    transition: all 0.4s;
    opacity: 1;
  }
  .carousel-indicators .active {
    background: var(--brand-white);
    width: 60px;
  }

  /* ─── CAROUSEL ANIMATIONS ─────────────────────── */
  .carousel-item .hero-label,
  .carousel-item .hero-title,
  .carousel-item .hero-subtitle,
  .carousel-item .hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .carousel-item.active .hero-label  { opacity: 1; transform: none; transition-delay: 0.2s; }
  .carousel-item.active .hero-title  { opacity: 1; transform: none; transition-delay: 0.4s; }
  .carousel-item.active .hero-subtitle { opacity: 1; transform: none; transition-delay: 0.55s; }
  .carousel-item.active .hero-buttons  { opacity: 1; transform: none; transition-delay: 0.7s; }

  /* ─── NAVBAR TOGGLER ──────────────────────────── */
  .navbar-toggler { border-color: rgba(255,255,255,0.4); }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: rgba(0,0,0,0.9);
    padding: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .section-caption{
    padding-left:50px;
  }
  
  #about{
    color:black;
    background:white;
    padding:5rem 8rem 3rem 3rem;
    font-family: Bell MT;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: justify;
  }

  #about .area{
    background:#D9D9D9;
    padding:60px 60px 20px 60px;
    border-radius:20px;
  }

  #about img{
    /* max-width: 420px; */
  }

  /* ─── MISSION SECTION ────────────────────────── */
  .mission-section {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* 4 image columns side by side */
  .mission-images {
    position: absolute;
    inset: 0;
    display: flex;
  }

  .mission-img-col {
    flex: 1;
    position: relative;
    overflow: hidden;
  }

  /* thin divider between columns */
  .mission-img-col + .mission-img-col {
    border-left: 2px solid rgba(255,255,255,0.15);
  }

  /* real img inside col */
  .mission-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* placeholder */
  .mission-img-placeholder {
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.2);
    font-size: 0.72rem;
    font-family: 'Cinzel', sans-serif;
  }
  .mission-img-placeholder i { font-size: 2.5rem; }

  /* dark overlay over all 4 images */
  .mission-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
  }

  /* centered text */
  .mission-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 780px;
  }

  .mission-text p {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.8rem, 1.4vw, 1.05rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    margin: 0;
  }

  /* ─── ECOSYSTEM SECTION ──────────────────────── */
  .ecosystem-section {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
  }
  .ecosystem-label {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #1a1410;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .ecosystem-desc {
    font-family: 'Cinzel', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    max-width: 540px;
    text-transform: none;
    margin: 0 auto 3rem;
  }

  /* Brand grid */
  .ecosystem-brands {
    display: flex;
    align-items: stretch;
    justify-content: center;
    border-top: 1px solid #ddd;
  }
  .brand-item {
    flex: 1;
    padding: 2rem 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items:center;
    gap: 1.2rem;
    border-right: 1px solid #ddd;
  }
  .brand-item:last-child { border-right: none; }

  .brand-logo {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    color: #1a1410;
    line-height: 1;
    text-align: left;
  }
  /* Each brand has slightly different size feel */
  .brand-logo.logo-laili  { font-size: clamp(1.8rem, 3vw, 2.6rem); }
  .brand-logo.logo-layali { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
  .brand-logo.logo-laudya { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
  .brand-logo.logo-syalmi { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }

  .brand-logo .sub {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #555;
    margin-top: 0.1em;
  }

  .btn-see-more {
    font-family: 'Cinzel', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white !important;
    background: #777777;
    border: 1.5px solid #bbb;
    border-radius: 20px;
    padding:0.2rem 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.25s;
  }
  .btn-see-more:hover {
    background: #1a1410;
    color: #fff;
    border-color: #1a1410;
  }
  .btn-see-more i { font-size: 0.65rem; }
  .brand-item img{
    max-width:120px;
    height:auto;
  }

  /* ─── HIERARCHY SECTION ──────────────────────── */
  .hierarchy-section {
    background: #fff;
    padding: 4rem 2rem 0 2rem;
  }
  .hierarchy-inner {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  /* Left title */
  .hierarchy-left {
    flex: 0 0 250px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end; 
  }
  .hierarchy-title {
    font-family: Bell MT;
    font-size: 14px;
    font-weight: 900;
    color: #1a1410;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid #1a1410;
    padding-bottom: 0.6rem;
    margin-bottom: 0;
  }
  /* Center image */
  .hierarchy-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hierarchy-center img {
    max-width:600px;
    height: auto;
    display: block;
  }
  /* Placeholder pyramid when no image */
  .hierarchy-pyramid-placeholder {
    width: 340px;
    max-width: 100%;
    aspect-ratio: 1 / 0.85;
    background: linear-gradient(to bottom, #111 0%, #444 100%);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Right description */
  .hierarchy-right {
    flex: 0 0 200px;
  }
  .hierarchy-desc {
    text-align:right;
    text-transform: none;
    font-family: Bell MT;
    font-size: 14px;
    color: #3a3228;
    line-height: 1.75;
  }

  /* ─── IMPACT SECTION ────────────────────────── */
.impact-section {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    text-align: center;
  }
  
  /* Background image */
  .impact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  /* Overlay gelap */
  .impact-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
  }
  
  .impact-content {
    position: relative;
    z-index: 1;
  }
  
  .impact-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 3rem;
  }
  
  .impact-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
  }
  
  .impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 140px;
  }
  
  /* Lingkaran ikon */
  .impact-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.8rem;
  }
  
  .impact-number {
    font-family: 'Bell MT', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #fff;
    line-height: 1;
  }
  
  .impact-label {
    font-family: 'Bell MT', serif;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
    text-align: center;
  }

  /* ─── FASILITAS SECTION ─────────────────────── */
.fasilitas-section {
    background: #fff;
    padding: 4rem 4rem;
  }
  
  .fasilitas-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 900;
    color: #1a1410;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
  }
  
  .fasilitas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 1.2rem;
    justify-content: center;
  }
  
  .fasilitas-item {
    flex: 0 0 calc(20% - 1rem);   /* 5 kolom di desktop */
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 10px;
  }
  
  .fasilitas-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }
  
  /* Placeholder sementara */
  .fasilitas-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 2rem;
  }
  
  .fasilitas-caption {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    color: #2a2218;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 2px solid #404040;
    padding-bottom: 0.5rem;
    margin-top: 0.2rem;
  }
  
  /* ─── TESTIMONIAL SECTION ───────────────────── */
.testimonial-section {
    display: flex;
    min-height: 320px;
    overflow: hidden;
    margin-bottom: 8rem;
    background: #fff;
  }
  
  /* Kiri — diam */
  .testimonial-left {
    flex: 0 0 450px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
  }
  .testimonial-left-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
  }
  
  /* Kanan — slider area */
  .testimonial-slider-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
  }
  
  /* Setiap slide = 2 panel (tengah + kanan) */
  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .testimonial-slide {
    display: flex;
    flex: 0 0 100%;
    width: 100%;
  }
  
  /* Panel tengah — abu gelap */
  .t-panel-dark {
    flex: 1;
    background: #303030;
    padding:3rem 5rem 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* Panel kanan — abu terang */
  .t-panel-light {
    flex: 1;
    background: #D9D9D9;
    padding: 3rem 5rem 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .t-quote {
    font-family: 'Bell MT', sans-serif;
    font-size: 18px;
    line-height: 1.75;
    font-style: italic;
  }
  .t-panel-dark .t-quote { color: rgba(255,255,255,0.88); }
  .t-panel-light .t-quote { color: #2a2218; }
  
  .t-person {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  .t-person-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #555;
  }
  .t-person-avatar-placeholder {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #666;
    display: flex; align-items: center; justify-content: center;
    color: #aaa; font-size: 1.4rem;
    flex-shrink: 0;
  }
  .t-person-info { flex: 1; }
  .t-person-name {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
  }
  .t-panel-dark .t-person-name { color: #fff; }
  .t-panel-light .t-person-name { color: #1a1410; }
  
  .t-person-role {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    line-height: 1.4;
  }
  .t-panel-dark .t-person-role { color: rgba(255,255,255,0.6); }
  .t-panel-light .t-person-role { color: #666; }
  
  .t-quote-icon {
    font-size: 2rem;
    line-height: 1;
    align-self: flex-end;
  }
  .t-panel-dark .t-quote-icon { color: rgba(255,255,255,0.2); }
  .t-panel-light .t-quote-icon { color: rgba(0,0,0,0.15); }
  
  /* Navigasi panah */
  .t-prev, .t-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .t-prev:hover, .t-next:hover { opacity: 1; }
  .t-prev { left: 0.5rem; color: #fff; }
  .t-next { right: 0.5rem; color: #555; }
  
  /* Dots */
  .t-dots {
    position: absolute;
    bottom: 0.8rem;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    z-index: 10;
  }
  .t-dot {
    width: 28px; height: 3px;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
  }
  .t-dot.active {
    background: #fff;
    width: 42px;
  }

  /* ─── FOOTER ────────────────────────────────── */
.site-footer {
    background: #0f0f0f;
    padding: 3.5rem 3rem 0;
    color: #fff;
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }
  
  /* Kiri: logo + desc */
  .footer-brand-col { max-width: 380px; }
  
  .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
    text-decoration: none;
    font-style: italic;
  }
  .footer-logo img { max-width: 160px; height: auto; }
  
  .footer-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    max-width: 320px;
  }
  
  /* Sosmed icons */
  .footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .footer-socials a {
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    transition: color 0.25s;
  }
  .footer-socials a:hover { color: var(--brand-gold); }
  
  /* Nav kolom */
  .footer-nav {
    display: flex;
    gap: 3rem;
  }
  
  .footer-nav-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .footer-nav-col ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-nav-col ul li a {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.25s;
  }
  .footer-nav-col ul li a:hover { color: #fff; }
  
  /* Bottom bar */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 1.2rem 0;
    margin-top: 0.5rem;
  }
  
  .footer-copyright {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }





  /* ─── RESPONSIVE ─────────────────────────────── */
  @media (max-width: 991px) {
    .search-box { display: none; }
    .btn-join { display: none; }
    .carousel-indicators { padding-left: 1.2rem; }
    .section-caption{
        padding-left:10px;
    }
    .fasilitas-item { flex: 0 0 calc(33.33% - 1rem); }
    .footer-top { flex-wrap: wrap; }
    .footer-nav { gap: 2rem; flex-wrap: wrap; }
    .footer-socials { margin-top: 1rem; }
  }

  @media (max-width: 767px) {
    .hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .carousel-control-prev{ display: none; }
    /* .carousel-control-next */
    .section-caption{
        padding-left:10px;
    }
    .hero-label img {   
        max-width: 120px;
    }
    .btn-hero-primary{
        font-size: 0.5rem;
        padding: 0.5rem 1rem;
    }
    .btn-hero-secondary{
        font-size: 0.5rem;
        padding: 0.5rem 1rem;
    }
    .navbar{
        padding:1.2rem 1rem;
    }
    .carousel-control-next{
        bottom: 50px;
        right:1rem;
    }
    .mission-section { height: auto; min-height: 400px; }
      .mission-images { position: relative; height: 400px; }
      .mission-text {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        padding: 0 1rem;
      }
    .mission-text p { font-size: 0.75rem; letter-spacing: 0.08em; }
    .ecosystem-brands { flex-wrap: wrap; border-top: none; }
    .brand-item {
    flex: 0 0 50%;
    border-right: none;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    }
    .brand-item:nth-child(2n) { border-right: none; }
    .hierarchy-section { padding: 2.5rem 1rem; }
    .hierarchy-left, .hierarchy-right { flex: 0 0 140px; }
    .hierarchy-title { font-size: 0.72rem; }
    .hierarchy-desc  { 
        text-align: center;
        font-size: 12px;
        max-width: 280px;
        justify-self: center;
     }
    .impact-grid { gap: 2rem; }
    .impact-icon { width: 90px; height: 90px; font-size: 2rem; }
    .impact-number { font-size: 1.5rem; }
    .fasilitas-item { flex: 0 0 calc(50% - 0.6rem); }  /* 2 kolom */
    .fasilitas-section { padding: 2.5rem 1rem; }
    .testimonial-section { flex-direction: column; }
    .testimonial-left { flex: none; padding: 2rem; }
    .t-panel-light { display: none; } /* 1 panel di mobile */
    .t-panel-dark { flex: 0 0 100%; }
    .site-footer { padding: 2.5rem 1.5rem 0; }
    .footer-nav { gap: 1.5rem; }
    .footer-nav-col h4 { font-size: 0.72rem; }

    #about {
        padding: 5rem 1rem;
      }
    
      #about .area {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
      }
    
      /* Balik urutan: gambar di atas, teks di bawah */
      #about .row {
        flex-direction: column-reverse;
      }
    
      /* Kolom teks full width */
      #about .col-md-8 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
      }
    
      /* Kolom gambar full width, center */
      #about .col-md-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
      }
    
      /* Gambar full width dengan rounded */
      #about img {
        max-width: 100%;
        width: 100%;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
        margin-top: -80px;
        margin-bottom:-30px;
      }

      .mission-section {
        height: auto;
        min-height: auto;
      }
    
      .mission-images {
        width: 100%;
        position: relative;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 kolom */
        grid-template-rows: 1fr 1fr;    /* 2 baris */
      }
    
      .mission-img-col {
        height: 220px;
        border-left: none !important;
        border-bottom: 2px solid rgba(255,255,255,0.15);
      }
    
      /* Overlay tetap menutupi semua */
      .mission-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
      }
    
      /* Teks di tengah-tengah grid */
      .mission-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        padding: 0 1rem;
        z-index: 2;
      }
    
      .mission-text p {
        font-size: 0.7rem;
        letter-spacing: 0.06em;
        line-height: 1.7;
      }

      .ecosystem-label{
        font-size:15px;
      }

      .ecosystem-desc{
        font-size: 13px;
        text-transform: none;
      }

      .ecosystem-brands {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid #ddd;
      }
    
      .brand-item {
        flex: none;
        border-right: 1px solid #ddd !important;
        border-top: 1px solid #ddd;
        align-items: center;
        padding: 1.8rem 1rem;
      }
    
      .brand-item:nth-child(2n) {
        border-right: none !important;
      }
    
      .brand-item:nth-child(1),
      .brand-item:nth-child(2) {
        border-top: none;
      }
    
      /* Hierarchy mobile — vertikal */
      .hierarchy-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
      }
    
      .hierarchy-left {
        flex: none;
        width: 100%;
        justify-content: center;
      }
    
      .hierarchy-title {
        text-align: center;
        font-size: 18px;
        border-bottom: 2px solid #1a1410;
      }
    
      .hierarchy-center {
        width: 100%;
      }
    
      .hierarchy-center img {
        max-width: 100%;
        width: 100%;
      }
    
      .hierarchy-right {
        flex: none;
        width: 100%;
      }

      .impact-section {
        padding: 3rem 1.5rem;
      }
    
      .impact-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.8rem;
        padding: 0 0.5rem;
      }
    
      .impact-item {
        flex-direction: row;        /* ikon kiri, teks kanan */
        align-items: center;
        gap: 1.2rem;
        min-width: unset;
        width: 100%;
      }
    
      .impact-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        flex-shrink: 0;
      }
    
      .impact-text-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
      }
    
      .impact-number {
        font-size: 1.8rem;
        text-align: left;
      }
    
      .impact-label {
        text-align: left;
      }

      .fasilitas-grid{
        justify-content: left;
      }

      .testimonial-section {
        flex-direction: column;
      }
    
      /* Judul di atas, full width, center */
      .testimonial-left {
        flex: none;
        width: 100%;
        padding: 2.5rem 1.5rem;
        background: #1a1a1a;
        justify-content: center;
        align-items: center;
        text-align: center;
      }
    
      .testimonial-left-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
        text-align: center;
        line-height: 1.3;
      }
    
      /* Slider area full width */
      .testimonial-slider-wrap {
        width: 100%;
        min-height: 280px;
      }
    
      /* Kedua panel tetap tampil side by side */
      .testimonial-slide {
        display: flex;
        flex-direction: row;
      }
    
      .t-panel-dark,
      .t-panel-light {
        flex: 1;
        display: flex !important; /* override display:none sebelumnya */
        padding: 1.5rem 1rem 2.5rem;
      }
    
      .t-quote {
        font-size: 0.72rem;
        line-height: 1.6;
      }
    
      .t-person {
        margin-top: 1rem;
        gap: 0.5rem;
      }
    
      .t-person-avatar,
      .t-person-avatar-placeholder {
        width: 36px;
        height: 36px;
        font-size: 1rem;
      }
    
      .t-person-name {
        font-size: 0.72rem;
      }
    
      .t-person-role {
        font-size: 0.6rem;
      }
    
      .t-quote-icon {
        font-size: 1.5rem;
      }
    
      /* Panah navigasi */
      .t-prev {
        left: 0;
        color: #fff;
        font-size: 1.1rem;
        z-index: 10;
      }
    
      .t-next {
        right: 0;
        color: #888;
        font-size: 1.1rem;
        z-index: 10;
      }
    
      /* Dots */
      .t-dots {
        bottom: 0.5rem;
      }
    
      .t-dot {
        width: 20px;
        height: 2px;
      }
    
      .t-dot.active {
        width: 32px;
      }

      .footer-top {
        flex-direction: column;
        gap: 1.5rem;
      }
    
      /* Logo + desc + sosmed susun vertikal */
      .footer-brand-col {
        width: 100%;
        max-width: 100%;
      }
    
      /* Sosmed pindah ke bawah desc, kiri */
      .footer-socials {
        margin-top: 1.5rem;
        justify-content: flex-start;
        order: 0; /* ikut flow normal */
      }
    
      /* Paksa sosmed masuk ke dalam brand col di mobile */
      .footer-brand-col {
        display: flex;
        flex-direction: column;
      }
    
      /* Nav jadi 2 kolom grid */
      .footer-nav {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
      }
    
      .footer-nav-col h4 {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
      }
    
      .footer-nav-col ul li a {
        font-size: 0.85rem;
      }
    
      /* Sembunyikan sosmed dari posisi kanan */
      .footer-socials-right {
        display: none;
      }
    
      /* Copyright dll masing-masing baris */
      .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        padding: 1.2rem 0;
      }
    
      .footer-copyright {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.45);
      }
      
  }