/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Simple Color Palette */
    --primary: #2c5f2d;
    --primary-light: #4a8a4c;
    --accent: #7c6a46;

    /* Neutral Colors */
    --bg: #ffffff;
    --bg-secondary: #f8f9fa;
    --text: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border: #e2e8f0;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --radius: 6px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

/* Hero Section */
.hero {
    background: var(--primary);
    color: white;
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
}

.hero-overlay {
    display: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-decoration {
    display: none;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

/* Section Styles */
section {
    margin-bottom: var(--spacing-xl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.section-decoration {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
}

/* Content Cards */
.content-card {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.content-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.info-box {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: #fff9e6;
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
}

.info-box strong {
    color: var(--accent);
}

/* Signs Grid */
.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.sign-card {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.sign-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.sign-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text);
}

.sign-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Protection Grid */
.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.protection-card {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.protection-number {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.protection-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text);
}

.protection-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Quran Section */
.quran-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.quran-card {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.quran-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border);
}

.quran-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.quran-number {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
}

.quran-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Reading Method */
.reading-method {
    margin-top: var(--spacing-lg);
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.reading-method h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
}

.method-list {
    list-style: none;
    counter-reset: method-counter;
}

.method-list li {
    counter-increment: method-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

.method-list li::before {
    content: counter(method-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Prayers Section */
.prayers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.prayer-card {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}

.prayer-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.prayer-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}

.prayer-note {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
    text-align: center;
}

.prayer-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.prayer-note strong {
    color: var(--accent);
}

/* Action Steps */
.action-steps {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.action-step {
    display: flex;
    gap: var(--spacing-md);
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    margin-bottom: var(--spacing-xl);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.faq-item {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: var(--spacing-lg) var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.footer-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .hero {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .signs-grid,
    .protection-grid,
    .quran-grid,
    .prayers-grid {
        grid-template-columns: 1fr;
    }

    .action-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-number {
        margin-bottom: var(--spacing-sm);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-light);
    color: white;
}