/* Muslim Funeral Page Styles */
.funeral-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.funeral-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.funeral-hero p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}

/* Rite Cards */
.rite-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -2px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}

.rite-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}

.rite-img-wrapper {
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.rite-img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.rite-card:hover .rite-img-wrapper img {
    transform: scale(1.05);
}

.rite-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

/* Custom Lists */
.custom-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 1rem;
    line-height: 1.5;
}

.custom-list li:last-child {
    margin-bottom: 0;
}

.custom-list li::before {
    content: "\F26A"; /* Bootstrap Icons check-circle-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: #10b981;
    font-size: 1.1rem;
}

.custom-list.list-primary li::before {
    color: #3b82f6;
}

/* Info Section Card */
.info-section-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
}

.info-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
}

.info-col-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.info-col-title i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

/* CTA Buttons */
.cta-btn-wrapper {
    margin-top: 2.5rem;
    text-align: center;
}

.funeral-cta-btn {
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.funeral-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.funeral-cta-btn i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}
