/* =========================================================
   JADUAL SECTION
========================================================= */
.jadual-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b0c38b;
    padding: 20px;
}

/* Overlay */
.jadual-overlay {
    position: absolute;
    inset: 0;
    background: rgba(182, 183, 136, 0.65);
    z-index: 1;
}

/* =========================================================
   CONTAINER
========================================================= */
.jadual-container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    width: 90%;
    max-width: 1100px;
    padding: 45px 40px 30px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   ICON CIRCLE
========================================================= */
.jadual-icon-circle {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: #c9dfc9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    transition: all 0.4s ease;
}

/* Icon */
.jadual-icon-circle i {
    font-size: 32px;
    color: #2f2f2f;
    transition: all 0.4s ease;
}

/* HOVER EFFECT */
.jadual-icon-circle:hover {
    transform: translateX(-50%) translateY(-6px) scale(1.05);
    background: #c9dfc9;
}

.jadual-icon-circle:hover i {
    color: #ffffff;
    transform: rotate(-10deg) scale(1.1);
}

/* =========================================================
   HEADER
========================================================= */
.jadual-header {
    text-align: center;
    margin-bottom: 25px;
}

.jadual-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.jadual-header p {
    font-size: 1rem;
    color: #555;
}

/* =========================================================
   GRID
========================================================= */
.jadual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* =========================================================
   CARD
========================================================= */
.jadual-card {
    background: #ffffff;
    padding: 20px 25px;
    border-left: 5px solid #b6b788;
}

.jadual-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2f2f2f;
}

.jadual-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.jadual-card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #444;
}

.jadual-card .note {
    font-size: 0.8rem;
    color: #777;
}

/* =========================================================
   BUTTON
========================================================= */
.jadual-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    border: 2px solid #2f2f2f;
    color: #2f2f2f;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jadual-btn:hover {
    background: #a5cd48;
    color: #fff;
    border-color: #a5cd48;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 768px) {
    .jadual-section {
        min-height: auto;
        padding: 40px 15px;
    }

    .jadual-grid {
        grid-template-columns: 1fr;
    }

    .jadual-header h2 {
        font-size: 1.6rem;
    }

    .jadual-icon-circle {
        width: 70px;
        height: 70px;
        top: -35px;
    }

    .jadual-icon-circle i {
        font-size: 24px;
    }
}