:root {
    --primary-gold: #d4af37;
    --primary-hover: #b8962e;
    --dark-bg: #1a1a1a;
    --light-bg: #fdfaf5;
    --text-color: #333;
    --border-color: #e0e0e0;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
    background-color: #fff; 
--fall-distance: 120vh;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: transparent; 
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden !important; 
    width: 100%;
}

a { text-decoration: none; color: inherit; transition: all var(--transition-speed) ease; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%; 
}

.btn {
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1rem;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}
.btn:hover::after { left: 100%; }

.btn-primary {
    background-color: var(--primary-gold);
    color: #fff;
    border: 2px solid var(--primary-gold);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}
.btn-outline:hover {
    background-color: var(--primary-gold);
    color: #fff;
    transform: translateY(-2px);
}

.btn-primary-mobile {
    background-color: var(--primary-gold);
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
}

.mobile-only { display: none; }

.navbar {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo {
    max-height: 50px;
    width: auto;
    display: block;
    transition: transform var(--transition-speed);
}
.main-logo:hover { transform: scale(1.03); }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: #555;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:not(.btn)::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width var(--transition-speed) ease;
}
.nav-links a:not(.btn):hover, .nav-links a:not(.btn).active { color: var(--primary-gold); }
.nav-links a:not(.btn):hover::before, .nav-links a:not(.btn).active::before { width: 100%; left: 0; }

.menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--primary-gold); z-index: 1001; }

.hero {
    padding: 60px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
    overflow: hidden;
    position: relative; 
z-index: 1;
perspective: 1000px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #000;
    font-weight: 800;
    position: relative; z-index: 2; 
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative; z-index: 2; 
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    position: relative; z-index: 2; 
}

.hero-img-grouped {
    
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
    width: 100%;
    max-width: 570px; 
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #000;
    font-weight: 700;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
    margin: 10px auto 0;
    border-radius: 2px;
}
.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-section {
    padding: 80px 0;
    background: #fff;
}

.calculator-card {
    max-width: 750px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
border-top: 5px solid var(--primary-gold);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.calculator-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.calculator-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
}

.calc-tabs {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    border-bottom: 2px solid #f5f5f5;
}
.calc-tabs button {
    background: none; border: none;
    font-size: 1.3rem; font-weight: 700;
    cursor: pointer; padding-bottom: 10px;
    font-family: 'Cairo', sans-serif; color: #aaa;
    transition: all 0.3s ease; position: relative;
}
.calc-tabs button::after {
    content: ''; position: absolute; bottom: -2px; right: 0;
    width: 0; height: 3px; background: var(--primary-gold);
    transition: width 0.3s ease;
}
.calc-tabs button.active { color: var(--primary-gold); }
.calc-tabs button.active::after { width: 100%; left: 0; }

.calc-inputs { display: flex; align-items: center; gap: 20px; }
.input-group { flex: 1; }
.input-group label {
    display: block; font-weight: 700; margin-bottom: 10px;
    font-size: 0.95rem; color: #333;
}
.input-group input {
    width: 100%; padding: 15px;
    border: 2px solid #eee; border-radius: 12px;
    font-family: 'Cairo', sans-serif; font-size: 1rem;
    background-color: #fcfcfc; transition: all var(--transition-speed);
}
.input-group input:focus {
    border-color: var(--primary-gold); outline: none;
    background-color: #fff; box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.exchange-icon {
    color: var(--primary-gold); font-size: 1.3rem;
    margin-top: 30px; background: #fff9e6;
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: all 0.5s ease;
    border: 2px solid transparent;
}
.exchange-icon:hover {
    transform: rotate(180deg); border-color: var(--primary-gold); background: #fff;
}

.features {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
}
.features::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23d4af37" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
}

.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px; position: relative; z-index: 1;
}
.feature-card {
    background: #fff; padding: 30px 19px;
    border-radius: 15px; border: 1px solid rgba(0,0,0,0.05);
    text-align: center; transition: all var(--transition-speed) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-10px); border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}
.feature-card .icon {
    font-size: 2.5rem; color: var(--primary-gold);
    margin-bottom: 20px; background: #fff9e6;
    width: 80px; height: 80px; line-height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    margin-left: auto; margin-right: auto; transition: all 0.5s ease;
}
.feature-card:hover .icon {
    border-radius: 50%; transform: rotateY(180deg);
    background: var(--primary-gold); color: #fff;
}
.feature-card h3 { margin-bottom: 12px; font-size: 1.0rem; color: #222; font-weight: 700; }
.feature-card p { font-size: 0.95rem; color: #666;max-width: 600px; 
        margin-left: 2px;
    margin-right: 2px; text-align: justify; line-height: 1.6; }

.cta-strip {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8962e 100%);
    padding: 70px 0;
    text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-strip::after {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg); animation: shine 4s infinite linear;
}
@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 800; color: #000; }
.cta-strip p {
    margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto;
    font-size: 1.1rem; color: #333; font-weight: 600;
}
.store-buttons { display: flex; justify-content: center; gap: 20px; }
.store-btn {
    background: #1a1a1a; color: #fff; border: none;
    padding: 12px 30px; border-radius: 10px; font-size: 1.1rem;
    display: flex; align-items: center; gap: 12px; cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: 'Cairo', sans-serif; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.store-btn:hover {
    background: #333; transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.steps { padding: 80px 0; background: #fff; }
.steps-layout-center {
    display: flex; justify-content: center; align-items: center;
    margin-top: 30px; perspective: 1000px;
}
.steps-full-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    border-radius: 0; 
    box-shadow: none; 
    transition: all 0.8s ease;
}
.steps-layout-center:hover .steps-full-img {
    transform: rotateX(2deg) rotateY(-2deg);
    box-shadow: none;
}

.testimonials { padding: 80px 0; background-color: #fafafa; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testi-card {
    background: #fff; padding: 30px;
    border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid transparent; transition: all var(--transition-speed) ease;
    position: relative;
}
.testi-card:hover {
    transform: translateY(-5px); border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.stars {
    color: var(--primary-gold); margin-bottom: 15px;
    font-size: 0.95rem; letter-spacing: 2px;
}
.testi-card p {
    font-style: italic; color: #555; margin-bottom: 25px;
    font-size: 1rem; min-height: 60px;
}
.user-info {
    display: flex; align-items: center; gap: 15px;
    border-top: 1px solid #f5f5f5; padding-top: 20px;
}
.avatar {
    width: 50px; height: 50px; background: #333;
    color: var(--primary-gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
    border: 2px solid var(--primary-gold); transition: var(--transition-speed);
}
.testi-card:hover .avatar { background: var(--primary-gold); color: #fff; }

footer {
    background-color: #151000; color: #ccc;
    padding: 70px 0 25px; font-size: 0.95rem;
}
.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px; margin-bottom: 50px;
}
.footer-logo {
    max-height: 70px; width: auto; margin-bottom: 25px;
    transition: transform var(--transition-speed);
}
.footer-logo:hover { transform: scale(1.03); }
.footer-col h4 {
    color: var(--primary-gold); margin-bottom: 25px;
    font-size: 1.3rem; position: relative; display: inline-block;
    font-weight: 700;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: -8px; right: 0;
    width: 40px; height: 2px; background: var(--primary-gold);
}
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a {
    color: #bbb; transition: all 0.3s ease; display: inline-block;
}
.footer-col ul li a:hover {
    color: var(--primary-gold); padding-right: 8px; transform: translateX(-3px);
}
.footer-col p { margin-bottom: 15px; color: #aaa; line-height: 1.7; }
.social-icons { margin-top: 25px; display: flex; gap: 12px; }
.social-icons a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.08);
    color: #fff; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255,255,255,0.1); font-size: 1.1rem;
}
.social-icons a:hover {
    background: var(--primary-gold); border-color: var(--primary-gold);
    transform: translateY(-3px) rotate(360deg);
}
.copyright {
    text-align: center; border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px; font-size: 0.9rem; color: #888;
}

.reveal {
    opacity: 0; transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.3s; }
.delay-300 { transition-delay: 0.45s; }
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .calculator-card { padding: 35px; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px; 
    }
    
    .menu-toggle { display: block; }
    .header-btn { display: none; }
    .mobile-only { display: block; }
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 100vw; 
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: right 0.4s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        z-index: 999; 
    }
    
    .nav-links.active {
        right: 0;
    }

    [dir="ltr"] .nav-links {
        right: auto;
        left: -100%;
        transition: left 0.4s ease;
    }

    [dir="ltr"] .nav-links.active {
        left: 0;
        right: auto;
    }

    .nav-links li {
        margin-bottom: 25px;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
    }

        
    .hero { padding: 50px 0 70px; }
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .calc-inputs { flex-direction: column; gap: 15px; }
    .exchange-icon { transform: rotate(90deg); margin: 10px 0; }
    .store-buttons { flex-direction: column; align-items: center; gap: 15px; }
    .store-btn { width: 100%; max-width: 300px; justify-content: center; }
    .calculator-card { padding: 30px 20px; }
    .footer-grid { gap: 40px; }
    
    img {
        max-width: 100%;
        height: auto;
    }
}
.policy-page, .faq-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    min-height: 80vh;
}

.policy-header {
    background: var(--primary-gold);
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    font-weight: 600;
}
.policy-header .btn-primary {
    background-color: #fff;
    color: var(--primary-gold);
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.policy-header .btn-primary:hover {
    background-color: #eee;
}

.policy-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-content p, .policy-content ul {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}
.policy-content ul {
    margin-right: 20px;
}
.policy-content ul li {
    margin-bottom: 10px;
    list-style: disc;
}
.mt-4 { margin-top: 30px !important; }

.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.faq-tab {
    background: #eee;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #777;
    font-weight: 600;
}
.faq-tab.active, .faq-tab:hover {
    background: var(--primary-gold);
    color: #fff;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.faq-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 50px;
}
.faq-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}
.faq-search-input:focus {
    border-color: var(--primary-gold);
}
.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

/* Accordion Style */
.faq-accordion-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.accordion-header {
    width: 100%;
    background: #fff;
    color: #333;
    padding: 20px 25px;
    border: none;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    border-bottom: 1px solid #f0f0f0;
}

.accordion-header i {
    font-size: 0.9rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.accordion-body {
    background: #fff;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.accordion-body p {
    padding: 15px 0 20px 0;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .policy-page, .faq-section { padding: 50px 0; }
    .policy-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .policy-header p { margin-bottom: 15px; }
    .policy-header .btn-primary { width: 100%; }
    .policy-content { padding: 25px; }
    .policy-content h2 { font-size: 1.5rem; }
    .accordion-header { font-size: 1rem; padding: 15px 20px; }
    .faq-tabs { justify-content: flex-start; }
    .faq-tab { font-size: 0.9rem; padding: 8px 15px; }
}

.about-hero {
    background-color: var(--light-bg);
    padding: 100px 0;
    display: flex;
    align-items: center;
}
.about-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.about-hero-content {
    max-width: 550px;
    flex: 1;
}
.about-hero-content h1 {
    font-size: 3rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 800;
}
.about-hero-content .subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}
.about-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-img.mobile-hero-img {
    max-width: 80%;
    background: transparent; 
    box-shadow: none; 
}
.why-gold .safe-img.mobile-safe-img {
    max-width: 90%; 
    background: transparent;
    box-shadow: none;
}


/* Vision and Mission */
.vision-mission {
    padding: 80px 0;
    text-align: center;
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.mission-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 5px solid var(--primary-gold);
}
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.mission-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}
.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}
.mission-card ul {
    text-align: right;
    margin-right: 0;
    padding-right: 0;
}
.mission-card ul li {
    list-style: none;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}
.mission-card ul li i {
    font-size: 1rem;
    margin-left: 10px;
    margin-top: 4px;
}

/* Why Gold Section */
.why-gold {
    padding: 80px 0;
    background-color: #f8f8f8;
}
.why-gold .container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.why-gold .content-left {
    flex: 1;
}
.why-gold .content-right {
    flex: 1;
    max-width: 550px;
}
.why-gold h2 {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 700;
}
.why-gold p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}
.safe-img {
    max-width: 100%;
    height: auto;
}
.why-list p {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 15px;
}
.why-list i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-left: 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    text-align: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.team-member {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--light-bg);
}
.team-member h4 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 5px;
}
.team-member span {
    color: var(--primary-gold);
    font-weight: 600;
    display: block;
}

/* Media Queries for About Page */
@media (max-width: 992px) {
    .about-hero .container, .why-gold .container {
        flex-direction: column;
        text-align: center;
    }
    .about-hero-content {
        order: 2;
    }
    .about-hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    .why-gold .content-right {
        order: 1;
    }
    .why-gold .content-left {
        order: 2;
        margin-top: 30px;
    }
    .why-list p {
        text-align: justify;
max-width: 500px; 
        margin-left: 10px;
    margin-right: 10px;
    }
}
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .why-gold h2 {
        font-size: 1.8rem;
    }
}
.team-member .team-logo {
    width: 80px;
    height: 80px;
    padding: 10px;
    border: 4px solid var(--primary-gold);
}
html[lang="en"] body {
    direction: ltr;
    text-align: left;
}

.lang-btn {
    
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    transition: 0.3s;
}
.lang-btn:hover {
    
    color: #fff !important;
}

.header-btn {
    margin-right: 20px; 
}
html[lang="en"] .header-btn {
    margin-right: 0;
    margin-left: 20px;
}
.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; 
}
.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-bg);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}
.store-btn:hover {
    transform: translateY(-3px);
    background: #333;
}
.store-btn i { font-size: 1.5rem; }
.store-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

html[lang="en"] .store-btn div {
    align-items: flex-start;
}
html[lang="ar"] .store-btn div {
    align-items: flex-end;
}

.store-btn span { font-size: 0.7rem; }
.store-btn strong { font-size: 1rem; }
/* Calculator Section */
.calculator-section {
    padding: 0px 0;
    background: var(--light-bg);
}
.calculator-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; 
    gap: 20px;
    align-items: center;
}
.input-group {
    width: 100%;
}
.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}
.input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: inherit;
}
.exchange-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
}
.note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}
.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.pay-icon {
    font-size: 2rem;
    color: #fff;
    margin-right: 5px;
}
.pay-badge {
    background: rgba(255,255,255,0.15);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #fff;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.1);
}
html[lang="en"] .pay-icon {
    margin-right: 0;
    margin-left: 5px;
}
.payment-strip {
    padding: 60px 0;
    text-align: center;
    background: var(--light-bg);
}
.payment-methods-inner {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}
.payment-strip .pay-icon {
    color: var(--primary-gold); 
    font-size: 3rem;
    transition: 0.3s;
}
.payment-strip .pay-badge {
    background: var(--primary-gold);
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.bank-transfers {
    margin-top: 20px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
}
.bank-transfers i {
    margin-left: 8px;
    color: var(--primary-gold);
}

.payment-strip .pay-icon:hover {
     transform: translateY(-4px);
    color: var(--primary-hover);
    opacity: 0.9;
}
.payment-strip .pay-badge {
       transition: all 0.3s ease; 
}

.payment-strip .pay-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: var(--primary-hover);
}
#contact-footer .footer-col > div > p {
    transition: all 0.3s ease;
    cursor: default;
}
#contact-footer .footer-col > div > p:hover {
    color: var(--primary-gold);
    transform: translateX(-5px);
}
#contact-footer .footer-col > div > p:hover i {
       color: var(--primary-hover) !important; 
}
#contact-footer .footer-col a:hover {
    color: var(--primary-hover) !important;
    text-decoration: underline;
}

[dir="ltr"] .footer-col {
    text-align: left !important;
}

[dir="ltr"] .footer-col h4 {
       width: 100% !important;
    position: relative !important; 
}

[dir="ltr"] .footer-col h4::after {
        margin: 0 !important;
    
        position: absolute !important; 
    
        left: 0 !important; 
    right: auto !important; 
    
    /* bottom: -5px !important; */
}

[dir="ltr"] .social-icons {
    text-align: left !important;
}
.about-hero-content.subtitle,
.policy-content.reveal h2, 
.policy-content.reveal p, 
.policy-content.reveal ul li,
 .policy-header p{ 
    opacity: 0; 
    transform: translateY(20px); 
     transition: opacity 0.40s ease-out, transform 0.80s ease-out;
}

.policy-content.reveal .visible {
    opacity: 1;
    transform: translateY(0);
}

.about-hero-content .subtitle {
    text-align: justify;
max-width: 500px; 
        margin-left: 10px;
    margin-right: 10px;
}
.policy-content.reveal .visible,
.policy-header p.visible 
{
    opacity: 1 !important; 
    transform: translateY(0) !important;
}


.policy-header p {
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.40s ease-out, transform 0.80s ease-out;
}

.flag-icon {
    width: 22px;
    height: 16px; 
    object-fit: cover; 
      box-shadow: 0 1px 3px rgba(0,0,0,0.1); 
    vertical-align: middle;
}


.lang-btn {
    padding: 0;
    margin-left: 15px; 
}

.loader-logo {
    width: 120px;  
    height: auto;
    z-index: 9999999;
    animation: pulse 1.3s infinite alternate; 
    position: absolute !important; 
    top: 50% !important;           
    left: 50% !important;          
    margin: 0 !important;
    max-width: none !important;
}



#preloader {

    position: fixed !important; 
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;        
    bottom: 0 !important;       
    width: 100vw !important;   
    height: 100vh !important;  
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0s 0.5s;
       background-color: rgba(253, 250, 245, 0.98) !important;
    z-index: 99999999 !important;
}

.loader-ring {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    z-index: 99999999;
    display: block; 
    width: 140px; 
    height: 140px;
    border: 5px solid rgba(212, 175, 55, 0.2); 
    border-radius: 50%;
    border-top-color: var(--primary-gold); 
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); } 
    100% { transform: translate(-50%, -50%) rotate(360deg); } 
}

@keyframes pulse {
      0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.2); }
}

#scrollToTopBtn {
    display: none; 
    position: fixed;
    bottom: 30px;
    right: 30px; 
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-gold);
    color: white;
    cursor: pointer;
    padding: 14px;
    border-radius: 34%;
    font-size: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    opacity: 0.5;
}

#scrollToTopBtn:hover {
    background-color: var(--primary-hover);
    opacity: 1;
    transform: scale(1.1) translateY(-2px);
}

html[dir="rtl"] #scrollToTopBtn {
    left: 30px; 
    right: auto;
}

[dir="ltr"] .accordion-header {
       text-align: left !important;
        direction: ltr;
}

[dir="ltr"] .accordion-body p {
    text-align: left !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    pointer-events: none;
}

#coins-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    
    z-index: 0; 
    
    pointer-events: none;

    perspective: 1000px;
}

.falling-coin {
    position: absolute;
    top: -100px; 
    transform-style: preserve-3d;
    
    z-index: -1; 

    animation: fall linear infinite; 
    
    opacity: 0.02;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 
                0 0 30px rgba(255, 215, 0, 0.4); 

    background-image: url('gold.png');
    background-size: cover;
    border-radius: 50%; 
    will-change: transform, opacity; 
}

@keyframes fall {
    0% {
    
        transform: translate(0, 0) rotateX(0deg) rotateY(0deg); 
        opacity: 0.03;
    }
    
    50% {

        transform: translate(0, calc(var(--fall-distance) / 2)) rotateX(360deg) rotateY(360deg);
        opacity: 0.07; 
    }
    
    100% {

        transform: translate(0, var(--fall-distance)) rotateX(720deg) rotateY(720deg);
        opacity: 0.03;
    }
}

[dir="ltr"] .why-list p i {
    margin-right: 18px; 
    margin-left: 0; 
}

[dir="rtl"] .why-list p i {
    margin-left: 18px; 
    margin-right: 0;
}
.contact-highlight {
    border: 2px solid var(--primary-gold) !important;
    background-color: #fdfaf5 !important;
    box-shadow: 0 0 2px rgba(212, 175, 55, 0.7) !important;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
}
#contact-info-container {
    padding: 15px;
    border: 4px solid transparent;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
}
.contact-highlight a,
.contact-highlight p {
    color: var(--text-color) !important;
}
.contact-highlight p:hover {
    color: var(--primary-hover) !important;
}