/* Quran Feature Highlight Section */
.quran-highlight {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3e 100%);
    position: relative;
    overflow: hidden;
}

.quran-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4aa' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: slide 20s linear infinite;
}

@keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(60px); }
}

.quran-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Quran Image */
.quran-image {
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.quran-showcase {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 40px 80px rgba(0, 212, 170, 0.2);
    position: relative;
    z-index: 2;
}

.quran-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3), transparent 70%);
    filter: blur(40px);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.5;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Quran Content */
.quran-content {
    color: white;
}

.quran-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(90deg, #00d4aa, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quran-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Quran Features List */
.quran-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.quran-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.quran-feature-item:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateX(5px);
}

[dir="rtl"] .quran-feature-item:hover {
    transform: translateX(-5px);
}

.quran-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00d4aa, #00a884);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.quran-feature-item span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* RTL Support */
[dir="rtl"] .quran-wrapper {
    direction: rtl;
}

[dir="rtl"] .quran-features {
    direction: rtl;
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
    .quran-highlight {
        background: linear-gradient(135deg, #0a0f1b 0%, #151d2e 100%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quran-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .quran-image {
        order: 2;
    }

    .quran-content {
        order: 1;
    }

    .quran-showcase {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .quran-title {
        font-size: 2rem;
    }

    .quran-description {
        font-size: 1rem;
    }

    .quran-features {
        grid-template-columns: 1fr;
    }

    .quran-showcase {
        max-width: 300px;
    }
}

/* Animation on Scroll */
.quran-highlight {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}