/* Kad Utama & Tema Warna Korporat Islamik */
.islamic-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    margin: 15px 0;
}

.islamic-card {
    background: linear-gradient(135deg, #0d3b2e 0%, #061c16 100%);
    border: 1px solid #d4af37; /* Warna Emas Korporat */
    border-radius: 12px;
    padding: 24px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    color: #ffffff;
}

/* Kesan Hover HD */
.islamic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

/* Corak Motif Geometri Islamik Hiasan (Latar Belakang Halus) */
.islamic-card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Header & Tajuk Tempat */
.islamic-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.islamic-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f3e5ab; /* Emas Lembut */
    margin: 0;
}

/* Badge Jarak */
.islamic-card-distance {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Keterangan */
.islamic-card-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
}