/* ===== CSS VARIABLES (Design Tokens) - Matching Main App ===== */
:root {
    --islamic-green-dark: #0d7377;
    --islamic-green: #1a9d7a;
    --islamic-green-light: #2dd4bf;
    --islamic-teal: #14b8a6;
    --islamic-gold: #d4af37;
    --islamic-gold-light: #f4d03f;
    --islamic-cream: #fef9e7;
    --islamic-beige: #f5e6d3;
    --islamic-white: #ffffff;
    --islamic-gray: #5d6d7e;
    --islamic-gray-light: #aab7b8;
    --islamic-error: #e74c3c;
    --islamic-success: #27ae60;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--islamic-green-dark);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdfa 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--islamic-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--islamic-green-dark);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--islamic-green-dark);
}

.nav-link {
    color: var(--islamic-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--islamic-green);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdfa 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--islamic-green-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 600;
    color: var(--islamic-green);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--islamic-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.play-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--islamic-green) 0%, var(--islamic-teal) 100%);
    color: var(--islamic-white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(26, 157, 122, 0.3);
    transition: all 0.3s;
}

.play-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 157, 122, 0.4);
}

.play-store-btn:active {
    transform: translateY(0);
}

.play-store-btn.large {
    padding: 18px 40px;
    font-size: 18px;
}

.play-store-btn svg {
    width: 24px;
    height: 24px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: contain;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background: var(--islamic-white);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--islamic-green-dark);
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--islamic-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(26, 157, 122, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 157, 122, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--islamic-green-dark);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: var(--islamic-gray);
    line-height: 1.7;
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots {
    padding: 100px 0;
    background: var(--islamic-white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--islamic-gray);
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-item {
    background: var(--islamic-white);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(26, 157, 122, 0.1);
    transition: all 0.3s;
    overflow: hidden;
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 157, 122, 0.2);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdfa 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--islamic-green) 0%, var(--islamic-teal) 100%);
    color: var(--islamic-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(26, 157, 122, 0.3);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--islamic-green-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: var(--islamic-gray);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--islamic-green-dark) 0%, var(--islamic-green) 100%);
    color: var(--islamic-white);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--islamic-white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--islamic-white);
    padding: 40px 0;
    border-top: 2px solid rgba(26, 157, 122, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--islamic-green-dark);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: var(--islamic-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--islamic-green);
}

.footer-copyright {
    font-size: 14px;
    color: var(--islamic-gray-light);
    text-align: center;
}

/* ===== PRIVACY PAGE STYLES ===== */
.privacy-page {
    padding: 60px 0 100px;
    background: var(--islamic-white);
    min-height: calc(100vh - 200px);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--islamic-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.privacy-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--islamic-green-dark);
    margin-bottom: 12px;
}

.privacy-updated {
    font-size: 14px;
    color: var(--islamic-gray-light);
    margin-bottom: 40px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--islamic-green-dark);
    margin-bottom: 16px;
    margin-top: 32px;
}

.privacy-section h2:first-child {
    margin-top: 0;
}

.privacy-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--islamic-green);
    margin-bottom: 12px;
    margin-top: 24px;
}

.privacy-section p {
    font-size: 16px;
    color: var(--islamic-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.privacy-section li {
    font-size: 16px;
    color: var(--islamic-gray);
    line-height: 1.7;
    margin-bottom: 8px;
}

.privacy-section a {
    color: var(--islamic-green);
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-banner {
        max-width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 18px;
    }

    .privacy-content {
        padding: 24px;
    }

    .privacy-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .play-store-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .features,
    .how-it-works,
    .cta {
        padding: 60px 0;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

