/* -------------------------------------------------------
   STYLE-EN.CSS
   Emerald Elite Theme + Ledger Stax Promo
   Version: English (LTR)
   -------------------------------------------------------
*/

/* --- 1. CORE CONFIGURATION & VARIABLES --- */
:root {
    /* -- Emerald Elite Palette (From your HTML) -- */
    --emerald-deep: #013220;  /* Darkest Green */
    --emerald-rich: #024A32;  /* Rich Green */
    --emerald-vibrant: #0A4D2E; 
    --gold-prestige: #D4AF37; /* Metallic Gold */
    --gold-light: #F3E5AB;
    --text-light: #f0f0f0;
    --glass-border: rgba(212, 175, 55, 0.3);

    /* -- Ledger Stax Specific Variables -- */
    --stax-bg-dark: #013220;
    --stax-bg-light: #024A32;
    --stax-gold: #D4AF37;
    --stax-text-primary: #E5E7EB;
}

/* --- 2. GLOBAL SETTINGS --- */
body {
    background-color: var(--emerald-deep);
    /* Elegant Emerald Gradient Background */
    background-image: linear-gradient(180deg, #024A32 0%, #013220 100%);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    /* ENFORCING ENGLISH DIRECTION */
    direction: ltr;
    text-align: left;
}

/* Typography */
h1, h2, h3, h4, .font-heading {
    font-family: 'Tajawal', sans-serif; /* Unique elite feel */
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #013220; }
::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 5px; }

/* --- 3. ANIMATIONS & TEXT EFFECTS --- */
.gold-text {
    background: linear-gradient(to right, #D4AF37, #F3E5AB, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.fade-in-section {
    animation: fadeIn 1s ease-out forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 4. MAIN CONTAINER ARCHITECTURE (The "Lit" Cards) --- */
.stax-wrapper {
    background: linear-gradient(145deg, rgba(10, 77, 46, 0.6), rgba(1, 50, 32, 0.8));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

@media (min-width: 1024px) {
    .stax-wrapper { grid-template-columns: 1fr 1fr; }
    .stax-wrapper.full-width { grid-template-columns: 1fr; }
    /* For English, "reverse" simply swaps the order visually */
    .stax-wrapper.reverse .stax-visual { order: 2; }
    .stax-wrapper.reverse .stax-text { order: 1; }
}

.stax-wrapper:hover {
    border-color: var(--gold-prestige);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

/* Visual Side (Images/Icons) */
.stax-visual {
    background: radial-gradient(circle at center, rgba(2, 74, 50, 0.5) 0%, rgba(1, 50, 32, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    min-height: 320px;
}

/* Content Side (Text) */
.stax-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left; /* Enforce Left Align for English */
}

.stax-text h2 { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; line-height: 1.1; }
.stax-text h3 { font-size: 1.25rem; font-weight: 600; color: var(--gold-prestige); margin-bottom: 1.5rem; }
.stax-text p { color: #e5e7eb; line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.05rem; }

/* --- 5. LISTS & BUTTONS --- */
.elite-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: #e5e7eb;
}

.btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #013220;
    font-weight: 800;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid var(--gold-light);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold-prestige);
    color: var(--gold-prestige);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
    border-color: #fff;
}

/* --- 6. LINK CARDS (Social Grid) --- */
.link-card {
    background: rgba(2, 74, 50, 0.4);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.link-card:hover {
    background: rgba(2, 74, 50, 0.8);
    border-color: var(--gold-prestige);
    transform: translateY(-3px);
}

/* --- 7. NAVIGATION & UTILITIES --- */
.nav-glass {
    background: rgba(1, 50, 32, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

/* --- 8. BACKGROUND EFFECTS --- */
#background-effects {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; pointer-events: none;
}
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}
@keyframes float { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(20px, -20px); } }

/* =======================================================
   9. LEDGER STAX PROMO SECTION (English/LTR Specific)
   =======================================================
*/
.stax-promo-section {
    font-family: 'Inter', sans-serif;
    /* LTR Gradient Angle */
    background: linear-gradient(140deg, var(--emerald-vibrant) 0%, var(--emerald-rich) 100%); 
    color: var(--text-light);
    padding: 40px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 16px;
    border: 2px solid var(--gold-prestige);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2); 
    overflow: hidden;
}

.stax-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row; /* Standard LTR */
}

/* Video/Image Column */
.stax-image-area {
    flex: 1;
}

.stax-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Content Column */
.stax-content {
    flex: 1.5;
    text-align: left; /* Force English Alignment */
}

.stax-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
}

.stax-gold-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold-prestige);
    margin-top: 5px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.stax-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-align: left;
}

/* Elite Gold Button for Stax */
.stax-cta-button {
    display: inline-block;
    background-color: var(--gold-prestige);
    color: var(--emerald-deep);
    padding: 14px 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--gold-prestige);
    transition: all 0.3s ease-in-out;
}

.stax-cta-button:hover {
    background-color: transparent;
    color: var(--gold-prestige);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Responsive for Stax Section */
@media (max-width: 768px) {
    .stax-container {
        flex-direction: column;
    }
    
    .stax-content {
        text-align: center;
    }
    
    .stax-content p {
        text-align: center;
    }
}