/* 
   Umrah 2026 Landing Page Styles - DMKV Bremerhaven
   Designed for High Conversion, Mobile Optimization, & Premium Aesthetic
*/

:root {
    --primary-emerald: #0b3c26;
    --primary-dark: #051a10;
    --primary-light: #155e3d;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b89528;
    --accent-gold-light: #fef9e7;
    --accent-gold-glow: rgba(212, 175, 55, 0.35);
    --bg-slate: #f8fafc;
    --bg-card: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --border-color: #e2e8f0;
    --border-gold: rgba(212, 175, 55, 0.4);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 35px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.4);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base setup & typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-slate);
    color: var(--text-dark);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

body[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Language Switcher Bar */
.top-header {
    background-color: rgba(5, 26, 16, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-gold);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.brand-logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.brand-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.25);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 6px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.lang-btn.active {
    background: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(5, 26, 16, 0.85) 0%, rgba(11, 60, 38, 0.75) 100%), url('umrah_hero_bg.jpg') center/cover no-repeat;
    color: var(--text-light);
    padding: 90px 0 110px 0;
    text-align: center;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, var(--bg-slate), transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero-title span {
    color: var(--accent-gold);
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #e2e8f0;
    max-width: 820px;
    margin: 0 auto 36px auto;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle strong {
    color: var(--accent-gold);
    font-size: 1.2em;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.15);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px dashed var(--accent-gold);
}

/* Primary CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8860b 100%);
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 800;
    padding: 18px 42px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow), 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 2px solid #fff5cc;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.7), 0 12px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffd700 0%, var(--accent-gold) 100%);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

.cta-icon {
    font-size: 1.4rem;
}

/* Countdown Bar */
.countdown-box {
    margin-top: 45px;
    background: rgba(5, 26, 16, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 16px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.countdown-title {
    font-size: 0.95rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.countdown-timer {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
}

.timer-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.timer-label {
    font-size: 0.75rem;
    color: #cbd5e1;
    margin-top: 4px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    color: var(--primary-emerald);
    background: rgba(11, 60, 38, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    border: 1px solid rgba(11, 60, 38, 0.15);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--primary-dark);
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Section 2: Features Grid */
.features-section {
    padding: 90px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--bg-slate);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-gold));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.4);
    background: #ffffff;
}

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

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-emerald), var(--primary-dark));
    color: var(--accent-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(11, 60, 38, 0.15);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Section 3: Pricing Breakdown */
.pricing-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--bg-slate) 0%, #f1f5f9 100%);
}

.pricing-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gold);
    overflow: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-emerald) 100%);
    color: #ffffff;
    padding: 36px 30px;
    text-align: center;
    position: relative;
}

.pricing-header-tag {
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 10px;
}

.pricing-main-price {
    font-size: clamp(3rem, 6vw, 4.2rem);
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    margin: 15px 0 5px 0;
}

.pricing-main-price span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e2e8f0;
}

.pricing-main-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.pricing-body {
    padding: 36px 30px;
}

.pricing-list-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-slate);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border-right: 4px solid var(--primary-emerald);
}

body[dir="ltr"] .pricing-features-list li {
    border-right: none;
    border-left: 4px solid var(--primary-emerald);
}

.pricing-features-list li i {
    color: var(--primary-emerald);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Additional Costs Table / Cards */
.additional-costs-box {
    background: var(--accent-gold-light);
    border: 1px dashed var(--accent-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 36px;
}

.additional-costs-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #856404;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cost-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.cost-item {
    background: #ffffff;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cost-item-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cost-item-val {
    font-weight: 800;
    color: var(--primary-emerald);
    font-size: 1.1rem;
}

.pricing-cta-wrapper {
    text-align: center;
}

.pricing-cta-btn {
    background: var(--primary-emerald);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(11, 60, 38, 0.25);
    border: none;
    cursor: pointer;
}

.pricing-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 60, 38, 0.35);
}

/* Section 4: Trust & Legal Disclaimer Box */
.trust-section {
    padding: 60px 0;
    background: #ffffff;
}

.trust-box {
    background: linear-gradient(135deg, #f8fafc 0%, #edf4f0 100%);
    border: 2px solid var(--primary-emerald);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.trust-badge-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-emerald);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(11, 60, 38, 0.2);
}

.trust-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.trust-content p {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.7;
}

/* Section 5: FAQ Accordion */
.faq-section {
    padding: 90px 0;
    background: var(--bg-slate);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary-emerald);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-emerald);
    transition: var(--transition);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    background: var(--primary-emerald);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
    background: #fafafa;
}

.faq-answer-inner {
    padding: 0 24px 22px 24px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
}

/* Section 6: Footer CTA & Reminder */
.footer-cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #08291a 100%), url('madinah_bg.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.footer-cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.footer-urgency-badge {
    display: inline-block;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.footer-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-cta-desc {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-options {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    border: none;
}

.whatsapp-btn:hover {
    background: #1eb954;
    color: #ffffff;
}

/* Footer Bottom */
.main-footer {
    background: #020d08;
    color: #94a3b8;
    padding: 30px 0;
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: #94a3b8;
    transition: var(--transition);
}

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

/* Sticky Mobile CTA Bar */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 26, 16, 0.96);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
    border-top: 1px solid var(--accent-gold);
}

.sticky-mobile-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }

    .trust-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .top-header {
        padding: 8px 0;
    }
    
    .lang-switcher {
        overflow-x: auto;
        max-width: 180px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 11px;
    }
}
