/* ============================================
   About Section + Motto
   ============================================ */
.about-section {
    padding: var(--section-padding);
    background: var(--gov-white);
}

/* Motto Interactive Expansion - Minimalist Style */
.motto-container {
    padding: 5rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.motto-interactive {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: baseline !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important; /* Allow wrapping to prevent cutting off on mobile */
}

.motto-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    background: none !important; /* Explicitly remove any background */
    background-color: transparent !important;
    padding: 0 0.5rem !important;
    border: none !important; /* Explicitly remove any border */
    border-radius: 0 !important; /* Remove old pill shape */
    box-shadow: none !important; /* Remove old shadows */
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.motto-item .letter {
    font-family: var(--font-heading) !important;
    font-size: 5rem !important; /* Larger on desktop */
    font-weight: 900 !important;
    color: var(--gov-navy) !important; /* Blue color */
    line-height: 1 !important;
}

.motto-item .suffix {
    display: block !important;
    max-width: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--gov-navy) !important;
    text-transform: lowercase;
}

.motto-item:hover .suffix {
    max-width: 450px !important;
    opacity: 1 !important;
    margin-left: 8px !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .motto-interactive {
        gap: 1rem !important;
    }
    .motto-item .letter {
        font-size: 3.5rem !important;
    }
    .motto-item .suffix {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 768px) {
    .motto-interactive {
        gap: 0.75rem !important;
    }
    .motto-item .letter {
        font-size: 2.8rem !important;
    }
    .motto-item .suffix {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {
    .motto-interactive {
        gap: 0.5rem !important;
    }
    .motto-item .letter {
        font-size: 2.2rem !important;
    }
    .motto-item .suffix {
        font-size: 1.1rem !important;
    }
}

/* Responsif untuk Motto */
@media (max-width: 992px) {
    .motto-interactive {
        flex-wrap: wrap; /* Allow wrapping on tablet/mobile */
        gap: 0.8rem;
    }
    .motto-item .letter {
        font-size: 2rem;
    }
    .motto-item .suffix {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .motto-item {
        padding: 0.6rem 1.2rem;
    }
    .motto-item .letter {
        font-size: 1.6rem;
    }
}

/* Feature cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--gov-light);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid var(--gov-border);
    border-left: 4px solid var(--gov-gold);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--gov-navy);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.bg-navy  { background: var(--gov-navy); color: var(--gov-gold); }
.bg-gold  { background: var(--gov-gold); color: var(--gov-navy); }
.bg-red   { background: var(--gov-red);  color: var(--gov-white); }

/* HELP119 section */
.help119-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(7, 27, 58, 0.03) 0%, rgba(7, 27, 58, 0.07) 100%);
}

.help119-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.help119-eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(7, 27, 58, 0.12);
    border-radius: 999px;
    color: var(--gov-navy);
    background: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.help119-copy h2 {
    margin-bottom: 1rem;
}

.help119-copy p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 62ch;
}

.help119-points {
    display: grid;
    gap: 1rem;
}

.help119-point {
    background: var(--gov-white);
    border: 1px solid var(--gov-border);
    border-left: 4px solid var(--gov-navy);
    border-radius: 10px;
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow-sm);
}

.help119-point h3 {
    margin-bottom: 0.5rem;
    color: var(--gov-navy);
}

.help119-point p {
    margin: 0;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .help119-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .help119-section {
        padding: 4rem 0;
    }
}
