:root { 
  --info-background-color: #ef8a17; /* Background color for the entire website, including individual sections */
  --default-color: #0a0f14; /* Default color used for the majority of the text content across the entire website */
  --info-color: #ef8a17; /* Color for headings, subheadings and title throughout the website */
  --info-accent-color: #ef8a17; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}



.info {
    /* max-width: 1100px; */
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #2b2b2b; /* Dark Grey Background */
    /* color: #e0e0e0; */
    /* font-family: 'Roboto', sans-serif; */
    /* line-height: 1.6; */
    overflow-x: hidden;
}
.info-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.info-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(120deg, var(--info-color), var(--info-accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* position: relative; */
}

.info-title .info-title-shape {
  width: 200px;
  height: 20px;
  margin: 0 auto;
  color: var(--info-accent-color);
  opacity: 0.5;
}

.info-title .info-title-shape svg {
  width: 100%;
  height: 100%;
}

/* Timeline info */
.timeline {
    position: relative;
    padding: 20px 0;
}

/* Garis Tengah Vertikal (Dotted Line) */
.timeline-line {
    position: absolute;
    width: 2px;
    background-image: linear-gradient(to bottom, #888 33%, rgba(255,255,255,0) 0%);
    background-position: right;
    background-size: 2px 10px;
    background-repeat: repeat-y;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Timeline Item (Wrapper) */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 30px;
    opacity: 0; /* Untuk animasi JS nanti */
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Posisi Kiri dan Kanan */
.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

/* Styling Konten Teks */
.timeline-content {
    background: rgba(255, 255, 255, 0.05); /* Sedikit background agar teks jelas */
    padding: 20px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.timeline-content .subtitle {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
    font-style: italic;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #ccc;
}

/* Nomor Besar Berwarna Oranye */
.info-number {
    font-size: 4rem;
    font-weight: 900;
    color: #f5a623;
    line-height: 1;
    margin-bottom: 15px;
    position: absolute;
    top: -40px;
}

.left .info-number {
    right: 20px;
}

.right .info-number {
    left: 20px;
}

/* Lingkaran Icon di Tengah */
.icon-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #444;
    border: 2px solid #888;
    border-radius: 50%;
    top: 30px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Posisi Icon berdasarkan Kiri/Kanan */
.left .icon-circle {
    right: -25px; /* Setengah dari width (50px) */
}

.right .icon-circle {
    left: -25px;
}

/* Warna khusus untuk icon terakhir (Success) */
.icon-circle.final {
    border-color: #f5a623;
    color: #f5a623;
}

/* Class aktif untuk animasi scroll */
.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE MOBILE (< 768px) --- */
@media screen and (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    /* Garis pindah ke kiri */
    .timeline-line {
        left: 30px; 
    }

    /* Item timeline memenuhi lebar layar */
    .timeline-item {
        width: 100%;
        padding-left: 80px; /* Memberi ruang untuk garis di kiri */
        padding-right: 20px;
    }

    /* Reset posisi kiri/kanan menjadi rata kiri semua */
    .timeline-item.left, 
    .timeline-item.right {
        left: 0;
        text-align: left;
    }

    /* Posisi Icon selalu di kiri (di atas garis) */
    .left .icon-circle, 
    .right .icon-circle {
        left: 5px; /* Menyesuaikan dengan garis di 30px */
        right: auto;
    }

    /* Posisi Nomor di Mobile */
    .info-number {
        position: relative;
        top: 0;
        margin-bottom: 5px;
        display: block;
    }
    
    .left .info-number, .right .info-number {
        right: auto;
        left: auto;
    }
}