/* ========== VARIABLES ========== */
:root {
    --bg-primary: #060d1f;
    --bg-secondary: #0a1628;
    --bg-card: rgba(15, 32, 65, 0.6);
    --bg-card-hover: rgba(20, 45, 85, 0.7);
    --cyan: #00d4ff;
    --cyan-dark: #0094b3;
    --cyan-glow: rgba(0, 212, 255, 0.15);
    --cyan-glow-strong: rgba(0, 212, 255, 0.3);
    --blue: #3b82f6;
    --green: #22c55e;
    --green-dark: #16a34a;
    --orange: #f59e0b;
    --red: #ef4444;
    --text-primary: #f0f6ff;
    --text-secondary: #8899b5;
    --text-muted: #4a5e7a;
    --border: rgba(0, 212, 255, 0.1);
    --border-hover: rgba(0, 212, 255, 0.25);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --font-ar: 'Tajawal', sans-serif;
    --font-en: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-ar);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

html[dir="ltr"] body {
    font-family: var(--font-en);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== PARTICLES ========== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--cyan);
    opacity: 0.08;
    animation: float linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.08; }
    90% { opacity: 0.08; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(6, 13, 31, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 15px var(--cyan-glow);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(0, 212, 255, 0.05);
    color: var(--cyan);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-en);
}

.lang-toggle:hover {
    background: var(--cyan-glow);
    border-color: var(--border-hover);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(6, 13, 31, 0.98);
    backdrop-filter: blur(20px);
    padding: 90px 24px 30px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--cyan);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(0, 212, 255, 0.05);
    color: var(--cyan);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    font-size: 12px;
}

.hero-title {
    font-size: clamp(60px, 12vw, 120px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.1s both;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.3s both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.5s both;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 22px;
    color: var(--cyan);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -40px;
    width: 100%;
    height: 40px;
    background: var(--cyan);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -40px; }
    100% { top: 40px; }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    color: var(--bg-primary);
    box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px var(--cyan-glow-strong);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--cyan);
    background: var(--cyan-glow);
    color: var(--cyan);
}

.btn-success {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: white;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

.btn-success:hover:not(:disabled) {
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.disabled-btn {
    opacity: 0.35;
    pointer-events: none;
    cursor: not-allowed;
}

/* ========== SECTIONS ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(0, 212, 255, 0.05);
    color: var(--cyan);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-desc {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ========== FEATURES ========== */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--cyan-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--cyan);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--cyan-glow-strong);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.how-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.how-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: var(--transition);
}

.how-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.how-card:hover::before {
    opacity: 1;
}

.how-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cyan-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--cyan);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.how-card:hover .how-icon {
    background: var(--cyan-glow-strong);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.how-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== INSTALL / TUTORIAL ========== */
.install {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.tutorial-container {
    max-width: 800px;
    margin: 0 auto;
}

.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tutorial-step {
    display: flex;
    gap: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tutorial-step.step-visible {
    opacity: 1;
    transform: translateY(0);
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}

.step-marker .step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cyan-glow);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-en);
    border: 2px solid rgba(0, 212, 255, 0.2);
    flex-shrink: 0;
    transition: var(--transition);
}

.step-marker .step-num.success-num {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    border-color: rgba(34, 197, 94, 0.3);
    font-size: 22px;
}

.step-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
    margin: 8px 0;
    min-height: 20px;
}

.last-step .step-line {
    display: none;
}

.step-body {
    display: flex;
    gap: 20px;
    padding-bottom: 40px;
    flex: 1;
}

.last-step .step-body {
    padding-bottom: 0;
}

.step-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--cyan-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--cyan);
    flex-shrink: 0;
    transition: var(--transition);
}

.step-icon-box.download-highlight {
    background: linear-gradient(135deg, var(--cyan-glow), rgba(59, 130, 246, 0.15));
    box-shadow: 0 0 20px var(--cyan-glow);
}

.step-icon-box.success-box {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
}

.step-details {
    flex: 1;
}

.step-details h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-details p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.step-path {
    margin-bottom: 12px;
}

.step-path code {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 14px;
    color: var(--cyan);
    font-family: var(--font-en);
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] .step-path code {
    font-family: var(--font-ar);
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] .step-path code {
    font-family: var(--font-en);
}

.step-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-xs);
    font-size: 14px;
    color: var(--orange);
}

.step-tip i {
    font-size: 16px;
    flex-shrink: 0;
}

.download-buttons-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.download-buttons-inline .btn {
    padding: 12px 20px;
    font-size: 14px;
}

.download-buttons-inline .btn small {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
}

/* APK Download Card */
.apk-download-section {
    max-width: 800px;
    margin: 48px auto 0;
}

.apk-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.apk-card:hover {
    border-color: var(--border-hover);
}

.apk-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(61, 220, 132, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--green);
    flex-shrink: 0;
}

.apk-info {
    flex: 1;
}

.apk-info h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.apk-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.apk-card .btn {
    flex-shrink: 0;
}

/* ========== PC PROTECTION ========== */
.pc-protection {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.pc-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
}

.pc-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.pc-card-content {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.pc-card-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), var(--cyan-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--blue);
}

.pc-card-text {
    max-width: 550px;
}

.pc-card-text h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pc-card-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.pc-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: start;
}

.pc-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.pc-feature-item i {
    color: var(--green);
    font-size: 16px;
    flex-shrink: 0;
}

.pc-card-download {
    width: 100%;
    max-width: 300px;
}

.pc-card-download .btn {
    width: 100%;
    justify-content: center;
}

/* ========== FAQ ========== */
.faq {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: var(--cyan);
    background: var(--cyan-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: inherit;
}

.faq-question i {
    color: var(--cyan);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ========== ISLAMIC SECTION ========== */
.islamic {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.islamic-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.islamic-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.islamic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.islamic-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.islamic-icon {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 16px;
}

.islamic-card .verse {
    font-size: 22px;
    font-weight: 700;
    line-height: 2;
    color: #d4af37;
    margin-bottom: 12px;
    font-family: var(--font-ar);
}

html[dir="ltr"] .islamic-card .verse {
    font-family: var(--font-ar);
    direction: rtl;
}

.islamic-card .source {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.islamic-card .explanation {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.islamic-motivation {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius);
}

.islamic-motivation p {
    font-size: 19px;
    line-height: 2;
    color: var(--text-secondary);
}

.islamic-motivation strong {
    color: #d4af37;
}

/* ========== SUPPORT SECTION ========== */
.support {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.support-hadith {
    text-align: center;
    max-width: 600px;
    margin: -20px auto 48px;
    font-size: 18px;
    color: #d4af37;
    line-height: 2;
    font-weight: 600;
}

.support-hadith span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 4px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.support-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.support-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.support-card-icon.vodafone {
    background: rgba(230, 0, 0, 0.1);
    color: #e60000;
}

.support-card-icon.paypal {
    background: rgba(0, 112, 186, 0.1);
    color: #0070ba;
}

.support-card-icon.share {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.support-card-icon.dua {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.support-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.support-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.support-card .support-detail {
    font-size: 16px;
    font-weight: 700;
    color: var(--cyan);
    direction: ltr;
    font-family: var(--font-en);
}

.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.whatsapp { background: #25d366; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.copy { background: var(--text-muted); }

.dua-text {
    font-size: 20px;
    color: #d4af37;
    font-weight: 700;
    line-height: 2;
    font-family: var(--font-ar);
}

/* ========== FOOTER ========== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .features-grid,
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    .features-grid,
    .how-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        min-height: 48px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .islamic-cards {
        grid-template-columns: 1fr;
    }

    .islamic-card .verse {
        font-size: 19px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .islamic-motivation p {
        font-size: 17px;
    }

    /* Tutorial responsive */
    .tutorial-step {
        gap: 16px;
    }

    .step-marker {
        min-width: 40px;
    }

    .step-marker .step-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-body {
        flex-direction: column;
        gap: 12px;
    }

    .step-icon-box {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .step-details h3 {
        font-size: 18px;
    }

    .download-buttons-inline {
        flex-direction: column;
    }

    .download-buttons-inline .btn {
        width: 100%;
        justify-content: center;
    }

    /* APK card responsive */
    .apk-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .apk-card .btn {
        width: 100%;
        justify-content: center;
    }

    /* PC card responsive */
    .pc-card-content {
        padding: 28px 24px;
    }

    .pc-card-text h3 {
        font-size: 20px;
    }

    .pc-card-download {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .feature-card,
    .how-card {
        padding: 24px 20px;
    }

    .step-path code {
        font-size: 12px;
        padding: 6px 12px;
    }

    .pc-card-content {
        padding: 20px 16px;
    }
}
