/* ===================================
   Ramadan Promo Section (Light Theme)
   =================================== */
.ramadan-promo {
    padding: 100px 0;
    background: #ffffff;
    /* White background as requested */
    color: #1a1a2e;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eee;
}

/* Subtle pattern for texture */
.ramadan-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#D4A853 0.5px, transparent 0.5px), radial-gradient(#D4A853 0.5px, #ffffff 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
    pointer-events: none;
}

.ramadan-title-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ramadan-heading {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a2e;
    /* Dark heading */
    position: relative;
    display: block;
    /* Changed from inline-block to block to force new line */
}

.ramadan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card Styles - White Theme */
.ramadan-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ramadan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.15);
}

.ramadan-icon {
    font-size: 45px;
    margin-bottom: 20px;
    display: inline-block;
    /* Emoji filter for better separation */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.ramadan-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.ramadan-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.coming-soon-badge {
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(212, 168, 83, 0.3);
}

/* Countdown Timer Styles - Light Theme */
.ramadan-countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    margin-top: 0;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 15px 25px;
    min-width: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(212, 168, 83, 0.15);
}

.time-value {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.time-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .ramadan-countdown {
        gap: 10px;
    }

    .time-unit {
        padding: 10px 12px;
        min-width: 70px;
    }

    .time-value {
        font-size: 24px;
    }

    .time-label {
        font-size: 10px;
    }
}

/* Make the card clickable */
a.ramadan-card {
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
}

a.ramadan-card:hover h3 {
    color: var(--primary);
}