/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin: 10px 0;
}

.section-header p {
    color: #bbb;
    max-width: 600px;
    margin: auto;
}

/* ===== GRID ===== */
.praktik-grid {
    margin-top: 30px;
}

/* ===== CARD PREMIUM ===== */
.praktik-card {
    position: relative;
    padding: 30px;
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    transition: all 0.4s ease;

    overflow: hidden;
}

/* ICON */
.praktik-card .icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: #b11226;
}

/* TITLE */
.praktik-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* TEXT */
.praktik-card p {
    color: #ccc;
    line-height: 1.6;
}

/* HOVER EFFECT */
.praktik-card:hover {
    transform: translateY(-10px);
    border-color: rgba(177, 18, 38, 0.4);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(177, 18, 38, 0.2);
}

/* GLOW LINE */
.praktik-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #b11226;
    transition: 0.4s;
}

.praktik-card:hover::before {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .praktik-card {
        padding: 25px;
    }
}
