:root {
    --primary-bg-color: #0a101f;
    --primary-bg-color-rgb: 10, 16, 31; /* مقادیر واقعی رنگ اصلی شما */
    --card-bg-color-rgb: 40, 50, 70;    /* مقادیر واقعی رنگ کارت شما */
    --primary-text-color: #e0e0e0;
    --secondary-text-color: #cbd5e1;
    --highlight-color: #818cf8; /* این از قبل وجود دارد */
    --highlight-color-rgb: 129, 140, 248; /* RGB معادل #818cf8 */
    --highlight-hover-color: #a7a7ff;
    --header-bg-color: rgba(20, 28, 45, 0.25);
    --section-bg-color: rgba(30, 40, 55, 0.25);
    --card-bg-color: rgba(40, 50, 70, 0.2);
    --card-bg-color-transparent: rgba(40, 50, 70, 0.15);
    --border-color-soft: rgba(255, 255, 255, 0.1);
    --border-color-medium: rgba(55, 65, 81, 0.5);
    --link-active-border-color: #6366f1;
    --font-primary: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-fa: 'Vazirmatn', Tahoma, Arial, sans-serif;
    --font-ar: 'Noto Sans Arabic', Tahoma, Arial, sans-serif;
    --font-tr: 'Roboto', 'Open Sans', 'Lato', sans-serif;
}

body, html {
    font-family: 'Vazirmatn', var(--font-primary), sans-serif !important;
    font-weight: 400;
}

body {
    background-color: #0a101f; /* فقط رنگ پس‌زمینه باقی می‌ماند */
    color: var(--primary-text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    zoom: 0.9; /* <<-- این خط تمام سایت را ۳۰٪ کوچک می‌کند */
}

/* Info Strip for Education Link */
.info-strip-container {
    padding: 15px 25px 5px 25px; 
}

/* === UPDATED Info Strip Style === */
.info-strip {
    display: flex;
    flex-direction: column; /* برای قرارگیری متن‌ها زیر هم */
    justify-content: center;
    align-items: center;
    gap: 5px; /* فاصله بین دو خط متن */
    background: linear-gradient(145deg, #6a7eff, #4f5de2); /* رنگ هماهنگ با دکمه اصلی */
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px; /* گردی هماهنگ با دکمه اصلی */
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 20px rgba(79, 93, 226, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.info-strip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 93, 226, 0.4);
}

.info-strip .main-text {
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-strip .sub-text {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.85;
}

.info-strip .main-text i {
    font-size: 0.8rem;
}

[dir="rtl"] .info-strip .main-text i {
    transform: scaleX(-1);
}
/* === NEW: Attention-Grabbing Callout Design === */
.info-strip-container {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #ffc400, #ff8c00); /* گرادیانت طلایی-نارنجی جذاب */
    color: #1a1a2e; /* رنگ متن تیره برای کنتراست بالا */
    padding: 18px 30px;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255, 196, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 650px;
    width: auto;
    transition: all 0.3s ease;
    animation: pulse-glow 2.5s infinite ease-in-out;
}

/* Utility class to prevent FOUC (Flash of Untranslated Content) */
.fouc-hidden {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.fouc-visible {
    opacity: 1;
}
html[dir="rtl"] .info-strip {
    text-align: right;
}
html[dir="ltr"] .info-strip {
    text-align: left;
}

.info-strip:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 196, 0, 0.45);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 8px 30px rgba(255, 196, 0, 0.3); }
    50% { box-shadow: 0 10px 50px rgba(255, 165, 0, 0.4); }
    100% { box-shadow: 0 8px 30px rgba(255, 196, 0, 0.3); }
}

.info-strip .icon-part {
    font-size: 2.8rem;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.info-strip .text-part {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-strip .main-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.info-strip .sub-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4a6e;
}

/* Hide the old arrow icon */
.info-strip .main-text i {
    display: none;
}
/* ====================================================== */
/* === Code for Blurry and Darkened Background Effect === */
/* ====================================================== */
body::before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('images/logo2.webp');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.3);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-align: left;
}
html[dir="rtl"] .container {
    text-align: right;
}

/* Loading Overlay Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--highlight-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


header {
    background-color: var(--header-bg-color);
    -webkit-backdrop-filter: blur(12px); /* Added for Safari/iOS support */
    -webkit-backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: #f0f0f0;
    padding: 15px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo-area img {
    height: 50px;
    width: auto;
    vertical-align: middle;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s, filter 0.3s;
    opacity: 0.9;
    filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.6));
}
header .logo-area img:hover {
    transform: scale(1.1) rotate(-3deg);
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.8));
}
header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 32px;
}
header nav ul li a {
    color: #becada;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
    font-size: 1.05em;
    padding-bottom: 8px;
    border-bottom: 3px solid transparent;
    letter-spacing: 0.5px;
}
header nav ul li a:hover,
header nav ul li a.active {
    color: #ffffff;
    border-bottom-color: var(--link-active-border-color);
}

.language-switcher {
    position: relative;
}
.language-switcher .current-lang {
    background-color: rgba(55, 65, 81, 0.85);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
}
.language-switcher .current-lang:hover {
    background-color: rgba(31, 41, 55, 0.95);
}
.language-switcher .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1e293b;
    min-width: 160px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.5);
    z-index: 1001;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    right: 0;
    margin-top: 0; /* سمی‌کالن در اینجا اضافه شد */
    border: 1px solid rgba(100, 116, 139, 0.4);
}
.language-switcher:hover .dropdown-content,
.language-switcher .current-lang:focus + .dropdown-content, 
.language-switcher .dropdown-content:hover {
    display: block;
}

.language-switcher .dropdown-content a.lang-option { /* target specific class if using data-lang */
    color: var(--secondary-text-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9em;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.language-switcher .dropdown-content a.lang-option:hover {
    background-color: #4f46e5;
    color: #ffffff;
}

main {
    flex-grow: 1;
    padding-top: 15px; 
    padding-bottom: 48px;
}

.page-section {
    padding: 40px 20px;
    background-color: var(--section-bg-color);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    color: #e5e7eb;
    margin: 0 auto 35px auto;
    max-width: 1150px;
    width: 92%;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.22),
                inset 0 0 1px 1px rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-section:last-of-type {
    margin-bottom: 0;
}

.page-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 239, 0.7), transparent);
    opacity: 0.8;
    filter: blur(3px);
}

.page-section .container {
    text-align: left;
    position: relative;
    z-index: 1;
}
html[dir="rtl"] .page-section .container {
    text-align: right;
}

.page-section h1, .page-section h2 {
    font-size: 2.2em; 
    margin-bottom: 25px; 
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}
.page-section h3 {
    font-size: 1.8em; 
    margin-top: 0;
    margin-bottom: 25px; 
    color: var(--highlight-color);
    font-weight: 600;
    text-align: center;
}
.page-section p,
.page-section li,
.page-section li div {
    color: var(--secondary-text-color);
    font-size: 1.05em; 
    margin-bottom: 1.1em; 
    line-height: 1.6; /* مقدار جدید */
}
.page-section li div p {
    margin-bottom: 0;
}

.page-section ul {
    list-style: none;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}
.page-section ul li {
    padding-left: 35px; 
    position: relative;
    margin-bottom: 0.9em; 
    text-align: left;
}
html[dir="rtl"] .page-section ul li {
    padding-right: 35px;
    padding-left: 0;
    text-align: right;
}

.page-section ul li i.fas {
    color: var(--link-active-border-color);
    position: absolute;
    left: 0;
    top: 6px; 
    font-size: 1.15em; 
}
html[dir="rtl"] .page-section ul li i.fas {
    right: 0;
    left: auto;
}
.page-section ul li::before {
    content: none;
}

.page-section strong, .page-section b {
    color: #f3f4f6;
    font-weight: 600;
}
.page-section a {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.page-section a:hover {
    text-decoration: underline;
    color: var(--highlight-hover-color);
}

.hero {
    color: white;
    padding: 10px 16px 48px 16px; 
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    background: none;
    border-radius: 0;
    margin-bottom: 0; 
    text-align: center;
}
.hero h2 { 
    font-size: 2.9em;
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 800;
    line-height: 1.0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
}
.hero p {
    font-size: 1.3em; 
    color:#e0e7ff;
    opacity: 0.9;
    max-width: 750px; 
    margin-left:auto;
    margin-right:auto;
    margin-bottom: 35px; 
}
.hero .cta-button {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 12px 35px;
    font-size: 1.05em;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3), 0 0 0 1.5px rgba(79, 70, 229, 0.2);
    letter-spacing: 0.5px;
    text-decoration: none;
}
.hero .cta-button:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 7px 20px rgba(79, 70, 229, 0.4), 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.hero .accuracy-note {
    font-size: 1.05em; 
    color:#a5b4fc;
    opacity: 0.9;
    margin-top: 25px; 
}

/* ... (سایر استایل‌های شما) ... */

.new-offerings {
    /* border-top: 1px solid var(--border-color-soft); */
    /* border-bottom: 1px solid var(--border-color-soft); */
    margin-top: 30px;
    margin-bottom: 50px;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 30px 0 40px 0;
    color: #e5e7eb;
    text-align: center;
    position: relative;
    overflow: visible;
}

.new-offerings .container {
    max-width: 1100px; 
    margin: 0 auto;
    padding: 30px 15px; 
    text-align: left; /* برای محتوای داخل کانتینر */
}
html[dir="rtl"] .new-offerings .container {
    text-align: right; /* برای زبان‌های راست به چپ */
}

/* --- کد جدید برای تنظیم دقیق کارت‌های پیشنهادات --- */

/* گرید اصلی */
.new-offerings .offering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); /* wider cards */
    gap: 25px;
    align-items: stretch; /* این دستور اصلی برای هم‌قد کردن کارت‌هاست */
    justify-content: center;
}

/* در صفحه‌های بزرگ، همیشه چهار ستون */
@media (min-width: 1200px) {
    .new-offerings .offering-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* تنظیمات داخلی هر کارت */
.new-offerings .offering-item > a {
    display: flex;
    flex-direction: column;
    height: 100%; /* باعث می‌شود محتوا کل ارتفاع کارت را پر کند */
    text-decoration: none;
    color: inherit;
}

/* تنظیمات متن توضیحات */
.new-offerings .offering-item p,
.new-offerings .offering-item div[data-lang-key] {
    flex-grow: 1; /* این باعث می‌شود متن فضای خالی را پر کرده و دکمه به پایین هل داده شود */
}

/* اطمینان از اینکه عنوان و دکمه رشد نکنند */
.new-offerings .offering-item h3,
.new-offerings .offering-item .cta-button-secondary,
.new-offerings .offering-item .cta-button-special {
    flex-shrink: 0;
}

.new-offerings .offering-item {
    background-color: var(--card-bg-color-transparent); 
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 30px 25px; /* کمی افزایش پدینگ داخلی کارت‌ها */
    border-radius: 16px; /* کمی گردی بیشتر */
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3); 
    border: 1px solid var(--border-color-soft);
    display: flex; 
    flex-direction: column; 
    align-items: center; /* مرکز چین کردن افقی محتوا */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 210px; /* half the previous height */
    max-width: 520px; /* allow cards to be wider */
    min-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Force all new-offerings cards to be the same height as prop-firm-teaser --- */
.new-offerings .offering-grid {
    align-items: stretch;
}

.new-offerings .offering-item {
    min-height: 210px; /* Adjust this value to match the prop-firm-teaser card's height visually */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
}

.new-offerings .offering-item > a,
.new-offerings .offering-item > div {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.new-offerings .offering-item h3,
.new-offerings .offering-item p,
.new-offerings .offering-item div[data-lang-key],
.new-offerings .offering-item .cta-button-secondary,
.new-offerings .offering-item .cta-button-special {
    width: 100%;
}

.new-offerings .offering-item .cta-button-secondary,
.new-offerings .offering-item .cta-button-special {
    margin-top: auto;
}

@media (max-width: 992px) {
    .new-offerings .offering-item {
        min-height: 170px;
        min-width: 220px;
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .new-offerings .offering-grid {
        grid-template-columns: 1fr;
    }
    .new-offerings .offering-item {
        min-height: 120px;
        min-width: 0;
        max-width: 100%;
    }
}

/* این استایل برای زمانی است که کل کارت یک لینک باشد */
.new-offerings .offering-item > a { 
    display: flex;
    flex-direction: column;
    height: 100%; 
}


.new-offerings .offering-item:hover {
    transform: translateY(-8px) scale(1.03); 
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.new-offerings .offering-icon {
    font-size: 3.2em; 
    color: var(--highlight-color);
    margin-bottom: 22px; 
    line-height: 1;
}

.new-offerings .offering-item h3 {
    font-size: 1.7em; 
    color: #f3f4f6;
    margin-top: 0;
    margin-bottom: 15px; 
    font-weight: 600;
}

.new-offerings .offering-item p {
    color: var(--secondary-text-color);
    font-size: 1em; /* اندازه فونت متن اصلی کارت */
    line-height: 1.7;
    margin-bottom: 15px;
    flex-grow: 1; /* این مهم است تا پاراگراف فضای خالی را پر کند */
}

.new-offerings .offering-item p.subtext {
    font-size: 0.9em; 
    color: var(--highlight-color);
    margin-bottom: 20px; 
    font-weight: 500;
    flex-grow: 0; /* زیرمتن نباید زیاد رشد کند */
}

/* استایل‌های عمومی برای دکمه‌های داخل این کارت‌ها */
.new-offerings .offering-item .cta-button-secondary,
.new-offerings .offering-item .cta-button-special {
    padding: 12px 28px; 
    font-size: 1em; 
    margin-top: auto; /* این دکمه را به پایین می‌چسباند */
    text-decoration: none;
    border-radius: 8px; 
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    display: inline-block; /* یا block اگر می‌خواهید تمام عرض باشد */
    width: auto; /* یا 100% اگر می‌خواهید تمام عرض باشد */
    max-width: 220px; /* برای جلوگیری از کشیده شدن بیش از حد دکمه */
    align-self: center; 
    line-height: normal; /* برای اطمینان از چینش عمودی متن دکمه */
    cursor: pointer;
}

.new-offerings .offering-item .cta-button-secondary {
    border: 2px solid var(--highlight-color);
    color: var(--highlight-color);
    background-color: transparent; /* اطمینان از شفاف بودن اولیه */
}
.new-offerings .offering-item .cta-button-secondary:hover {
    background-color: var(--highlight-color);
    color: var(--primary-bg-color);
    transform: scale(1.05);
}

.new-offerings .offering-item .cta-button-special {
    background: linear-gradient(135deg, #5469d4 0%, #4254a2 100%);
    color: white;
    border: none;
}
.new-offerings .offering-item .cta-button-special:hover {
    background: linear-gradient(135deg, #4254a2 0%, #303d78 100%);
    transform: scale(1.05);
}

.about-teaser .container {
    max-width: 900px;
    text-align: center;
}
.about-teaser p {
    font-size: 1.2em; 
    color: #d1d5db;
    margin-bottom: 25px;
    text-align: center;
}
.about-teaser .cta-button-secondary {
    border: 2px solid var(--highlight-color);
    color: var(--highlight-color);
    padding: 14px 35px; 
    font-size: 1.1em; 
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}
.about-teaser .cta-button-secondary:hover {
    background-color: var(--highlight-color);
    color: #111827;
}

/* --- About Teaser (About CoreXCapital_AI) --- */
.about-teaser {
    background: rgba(35, 45, 60, 0.22);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 24px 28px 20px 28px; /* Reduced vertical padding */
    margin: 0 auto 38px auto;
    max-width: 950px;
    text-align: center;
}
.about-teaser h3 {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 16px; /* Reduced */
    font-weight: 700;
    color: #bfcaff;
    line-height: 1.2;
}
.about-teaser p {
    font-size: 1.08em;
    margin: 0 0 14px 0; /* Reduced bottom margin */
    color: var(--primary-text-color, #e5e7eb);
    line-height: 1.55;
}
.about-teaser .cta-button-secondary {
    margin-top: 10px; /* Reduced */
    padding: 10px 24px;
    font-size: 1.08em;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .about-teaser {
        padding: 16px 8px 14px 8px;
    }
    .about-teaser h3 {
        font-size: 1.3em;
        margin-bottom: 10px;
    }
    .about-teaser p {
        font-size: 0.98em;
        margin-bottom: 10px;
    }
    .about-teaser .cta-button-secondary {
        font-size: 0.98em;
        padding: 8px 14px;
    }
}

.why-corexcapital h3 {
    text-align: center;
}
.why-corexcapital ul {
    max-width: 900px; 
    margin-left: auto;
    margin-right: auto;
}
.why-corexcapital li {
    background-color: var(--card-bg-color);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    margin-bottom: 25px; 
    padding: 30px 35px; 
    border-radius: 14px; 
    box-shadow: 0 8px 22px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.05); 
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color-soft);
    text-align: left;
}
html[dir="rtl"] .why-corexcapital li {
    text-align: right;
}

.why-corexcapital li:hover {
    transform: translateY(-6px) scale(1.015); 
    box-shadow: 0 12px 28px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.07);
}
.why-corexcapital li i.fas {
    font-size: 1.8em; 
    color: var(--highlight-color);
    margin-right: 25px; 
    flex-shrink: 0;
    width: 55px; 
    height: 55px; 
    background-color: rgba(129, 140, 248, 0.1);
    border-radius: 10px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
html[dir="rtl"] .why-corexcapital li i.fas {
    margin-left: 25px;
    margin-right: 0;
}
.why-corexcapital li div {
    flex-grow: 1;
}
.why-corexcapital li strong {
    display: block;
    margin-bottom: 8px; 
    font-size: 1.25em; 
    color: #f3f4f6;
}
.why-corexcapital li div p,
.why-corexcapital li div span {
    color: var(--secondary-text-color);
    margin-bottom: 0;
    font-size: 1.05em; 
    line-height: 1.7;
}

.features-overview h3 {
    text-align: center;
}
.features-overview .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
}
.features-overview .feature-item {
    background-color: var(--card-bg-color);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 35px 25px; 
    border-radius: 14px; 
    box-shadow: 0 8px 22px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.05); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color-soft);
}
.features-overview .feature-item:hover {
    transform: translateY(-7px); 
    box-shadow: 0 12px 28px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.07);
}
.features-overview .feature-item i.fas {
    font-size: 3em; 
    margin-bottom: 20px; 
    color: var(--highlight-color);
}
.features-overview .feature-item h4 {
    font-size: 1.4em; 
    color:#f3f4f6;
    margin-top:0;
    margin-bottom:12px; 
    font-weight: 600;
}
.features-overview .feature-item p {
    color: var(--secondary-text-color);
    font-size: 1em; 
    line-height: 1.65;
}

.plans-summary .container {
    max-width: 800px; 
    text-align: center;
}
.plans-summary p {
    margin-bottom: 30px; 
    font-size:1.2em; 
    color: #d1d5db;
    text-align: center;
}
.plans-summary .buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px; 
    flex-wrap: wrap;
}

.risk-disclaimer-section {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color-medium);
    padding: 40px 0; 
}
.risk-disclaimer {
    color: #a0aec0;
    padding: 18px 22px; 
    font-size: 0.85em; 
    border-left: 3px solid #4a5568; 
    background-color: rgba(17, 24, 39, 0.7);
    border-radius: 6px; 
    max-width: 850px; 
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1); 
}
html[dir="rtl"] .risk-disclaimer {
    border-right: 3px solid #4a5568;
    border-left: none;
    padding-right: 22px;
    padding-left: 18px;
    text-align: right;
}
.risk-disclaimer strong {
    color: var(--secondary-text-color);
    font-weight: 600;
}

/* Styles for prop-challenge-application.html */
.prop-application-form-section .container {
    max-width: 800px; /* Or your preferred width for forms */
}
.prop-application-form-section h1 {
    margin-bottom: 40px; /* More space after main title */
}
.application-steps {
    background-color: var(--card-bg-color-transparent);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color-soft);
}
.application-steps h2 {
    font-size: 1.8em;
    color: var(--highlight-color);
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
}
html[dir="rtl"] .application-steps h2 {
    text-align: right;
}
.application-steps ol {
    list-style-type: none;
    padding-left: 0;
}
.application-steps ol li {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--secondary-text-color);
    line-height: 1.7;
    padding-left: 0; /* Reset page-section ul li padding if inherited */
    text-align: left;
}
html[dir="rtl"] .application-steps ol li {
    text-align: right;
}
.application-steps .wallet-address {
    background-color: rgba(10, 16, 31, 0.7); /* Darker bg for address */
    padding: 10px 15px;
    border-radius: 6px;
    font-family: 'Courier New', Courier, monospace; /* Monospaced font for address */
    font-size: 1.1em;
    color: var(--highlight-hover-color);
    word-break: break-all;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color-medium);
}

#propApplicationForm {
    background-color: var(--card-bg-color);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 30px 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color-soft);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
#propApplicationForm h3 {
    font-size: 1.6em;
    margin-bottom: 25px;
    text-align: left;
}
html[dir="rtl"] #propApplicationForm h3 {
    text-align: right;
}

.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-text-color);
    text-align: left;
}
html[dir="rtl"] .form-group label {
    text-align: right;
}
.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid var(--border-color-medium);
    background-color: rgba(10, 16, 31, 0.7);
    color: var(--primary-text-color);
    font-size: 1em;
    box-sizing: border-box; /* Important for width 100% */
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.3);
}
.form-group button[type="submit"].cta-button {
    width: auto; /* Let button size to its content */
    padding: 12px 30px;
    font-size: 1.1em;
    /* Other styles inherited from .hero .cta-button or define specifically */
}

#form-status-message p {
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
}
#form-status-message p[style*="color:green"] {
    background-color: rgba(74, 222, 128, 0.15); /* Light green for success */
    border: 1px solid rgba(74, 222, 128, 0.4);
}
#form-status-message p[style*="color:red"] {
    background-color: rgba(248, 113, 113, 0.15); /* Light red for error */
    border: 1px solid rgba(248, 113, 113, 0.4);
}
#form-status-message p[style*="color:blue"] {
    background-color: rgba(96, 165, 250, 0.15); /* Light blue for info */
    border: 1px solid rgba(96, 165, 250, 0.4);
}


footer {
    background-color: rgba(20, 28, 45, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #9ca3af;
    padding: 50px 0 25px 0;
    margin-top: auto;
    border-top: 1px solid var(--border-color-soft);
}
footer .footer-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px; 
    margin-bottom: 35px; 
}
html[dir="ltr"] footer .footer-content-wrapper { text-align: left; }
html[dir="rtl"] footer .footer-content-wrapper { text-align: right; }

footer .footer-section {
    flex: 1;
    min-width: 200px; 
    margin-bottom: 25px; 
}
footer .footer-section h4 {
    font-size: 1.2em; 
    color: #e5e7eb;
    margin-bottom: 20px; 
    font-weight: 600;
    padding-bottom: 10px; 
    border-bottom: 1px solid rgba(100, 116, 139, 0.4);
    display: inline-block;
}
footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer nav ul li {
    margin-bottom: 10px; 
}
footer nav ul li a {
    color: #9ca3af;
    font-size:0.95em; 
    text-decoration: none;
    transition: color 0.2s ease;
}
footer nav ul li a:hover {
    color: #e5e7eb;
    text-decoration: underline;
}
footer .support-links p {
    margin: 10px 0; 
    font-size: 0.95em; 
}
footer .support-links a {
    color: #9ca3af;
    text-decoration:none;
    transition: color 0.2s ease;
}
footer .support-links a:hover {
    color: #f3f4f6;
    text-decoration: underline;
}
footer .social-links {
    margin-top: 8px; 
}
footer .social-links a {
    margin: 0 10px; 
    color: #9ca3af;
    font-size: 1.8em; 
    transition: color 0.3s, transform 0.3s;
}
footer .social-links a:hover {
    color: #f3f4f6;
    transform: scale(1.2);
}
footer .copyright {
    font-size: 0.9em; 
    color: #6b7280;
    width: 100%;
    text-align: center;
    padding-top: 35px; 
    border-top: 1px solid var(--border-color-medium);
}

.custom-margin-top {
    margin-top: 15px !important;
}

html[lang="fa"] body { font-family: var(--font-fa); }
html[lang="ar"] body { font-family: var(--font-ar); }
html[lang="tr"] body { font-family: var(--font-tr); }

@media (max-width: 992px) {
    .new-offerings .offering-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .new-offerings .offering-item {
        min-height: 170px;
        min-width: 220px;
        max-width: 100%;
    }
    .hero h2 { 
        font-size: 2.8em; 
    }
    .page-section h1, .page-section h2 {
         font-size: 2.2em; 
    }
    .page-section h3 {
         font-size: 1.8em; 
    }
    .new-offerings .offering-item h3 {
        font-size: 1.5em; 
    }
    .new-offerings .offering-icon {
        font-size: 2.8em; 
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    header nav ul {
        gap: 15px; 
        font-size: 0.95em; 
        flex-wrap: wrap;
        justify-content: center;
    }
    header nav ul li a {
        font-size: 0.95em; 
        padding-bottom: 5px;
    }
    .language-switcher {
        margin-top: 10px;
    }

    .hero {
        padding: 50px 15px 70px 15px; 
    }
    .hero h2 {
        font-size: 2em; 
    }
    .hero p {
        font-size: 1.05em; 
    }
    .hero .cta-button {
        padding: 15px 30px; 
        font-size: 1.05em; 
    }

    .page-section {
        padding: 35px 15px; 
        width: 95%;
        margin-bottom: 35px; 
    }
     .page-section h1, .page-section h2 {
        font-size: 2.2em; 
    }
    .page-section h3 {
        font-size: 1.8em; 
    }
    .page-section p, .page-section li, .page-section li div {
        font-size: 0.9em; 
    }

    .why-corexcapital li {
        flex-direction: column;
        align-items: center;
        padding: 20px 15px; 
    }
    html[dir="rtl"] .why-corexcapital li {
        align-items: center;
    }
    .why-corexcapital li i.fas {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 12px; 
    }
    .why-corexcapital li div {
        text-align: center;
    }
     .why-corexcapital li strong {
        font-size: 1.15em;
    }
     .why-corexcapital li div p, .why-corexcapital li div span {
        font-size: 1em;
    }


    .features-overview .feature-grid {
        gap: 18px; 
    }
    .features-overview .feature-item {
        padding: 22px 12px; 
    }
     .features-overview .feature-item h4 {
        font-size: 1.2em;
    }
     .features-overview .feature-item i.fas {
        font-size: 2.5em;
        margin-bottom: 15px;
    }
    .features-overview .feature-item p {
        font-size: 0.9em;
    }


    .new-offerings .container {
        padding: 25px 15px; 
    }
    .new-offerings .offering-grid {
        grid-template-columns: 1fr;
        gap: 18px; 
    }
    .new-offerings .offering-item {
        padding: 22px 18px; 
    }
    .new-offerings .offering-item h3 {
        font-size: 1.4em; 
    }
    .new-offerings .offering-icon {
        font-size: 2.5em; 
        margin-bottom: 18px;
    }
    .new-offerings .offering-item p {
        font-size: 0.95em;
    }
     .new-offerings .offering-item p.subtext {
        font-size: 0.85em;
    }
    .new-offerings .offering-item .cta-button-secondary, 
    .new-offerings .offering-item .cta-button-special {
        padding: 9px 22px;
        font-size: 0.9em;
    }
    
    .prop-application-form-section .application-steps ol li {
        font-size: 0.95em;
    }
    .prop-application-form-section .application-steps .wallet-address {
        font-size: 1em;
    }
    #propApplicationForm h3 {
        font-size: 1.4em;
    }
    .form-group input[type="text"], .form-group input[type="email"] {
        font-size: 0.95em;
    }
    .form-group button[type="submit"].cta-button {
        font-size: 1em;
    }


    .footer-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center !important;
    }
    html[dir="ltr"] footer .footer-content-wrapper,
    html[dir="rtl"] footer .footer-content-wrapper {
        text-align: center !important;
    }
    footer .footer-section {
        min-width: 100%;
        text-align: center;
        margin-bottom: 18px; 
    }
    footer .footer-section h4 {
        display: block;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 8px;
        font-size: 1.1em;
    }
    footer nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px; 
    }
     footer nav ul li a {
        font-size: 0.9em;
    }
    footer .support-links p {
        font-size: 0.9em;
        margin: 8px 0;
    }
    footer .social-links a {
        font-size: 1.6em; 
        margin: 0 8px;
    }
    footer .copyright {
        padding-top: 25px; 
        font-size: 0.85em;
    }
}

/* === Styles for Contact Us Dropdown (Added) === */
header nav ul li.contact-dropdown {
    position: relative;
}

header nav ul li.contact-dropdown .dropdown-contact-content {
    display: none;
    position: absolute;
    background-color: rgba(30, 41, 59, 0.95); /* پس‌زمینه تیره‌تر و کاملاً خوانا */
    min-width: 250px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.5);
    z-index: 1002;
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    margin-top: 0;
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color-soft);
}

header nav ul li.contact-dropdown:hover .dropdown-contact-content {
    display: block !important;
}

header nav ul li.contact-dropdown .dropdown-contact-content a {
    color: var(--secondary-text-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9em;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-bottom: none !important;
}

header nav ul li.contact-dropdown .dropdown-contact-content a:hover {
    background-color: #4f46e5;
    color: #ffffff;
}

html[dir="rtl"] header nav ul li.contact-dropdown .dropdown-contact-content {
    left: auto;
    right: 0;
}

html[dir="rtl"] header nav ul li.contact-dropdown .dropdown-contact-content a {
    text-align: right;
}

/* === Styles for Hero Call to Action Buttons (Updated for side-by-side layout) === */
.hero .hero-cta-buttons {
    margin-top: 0%; /* کاهش فاصله عمودی بین متن و دکمه‌ها */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px; /* کاهش فاصله بین دکمه‌ها */
}

@media (min-width: 768px) {
    .hero .hero-cta-buttons {
        gap: 25px;
    }
}

/* Styles for Hero SAI Token Purchase Box (Optimized for Persuasion & Aesthetics) */

/* متغیر RGB برای رنگ هایلایت (اگر قبلا اضافه نشده، اضافه کنید) */
:root {
    /* ...existing variables... */
    --highlight-color: #818cf8;
    --highlight-color-rgb: 129, 140, 248;
    /* ...existing variables... */
}

.hero .hero-sai-icon-main {
    font-size: 2.8em;
    color: var(--highlight-color);
    margin-bottom: 12px;
    display: block;
    text-align: center;
    opacity: 0.9;
    line-height: 1;
}

.hero .hero-sai-purchase-box {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.85), rgba(23, 31, 48, 0.9));
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    padding: 25px 35px 30px 35px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35),
                0 0 25px rgba(var(--highlight-color-rgb), 0.18),
                inset 0 1px 0px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(var(--highlight-color-rgb), 0.3);
    margin-top: 45px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .hero-sai-purchase-box:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4),
                0 0 35px rgba(var(--highlight-color-rgb), 0.25),
                inset 0 1px 0px rgba(255, 255, 255, 0.1);
}

.hero .hero-sai-purchase-box h3 {
    font-size: 1.9em;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.35;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero .hero-sai-tagline {
    font-size: 1.15em;
    color: var(--highlight-hover-color);
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.5;
    opacity: 0.95;
}

.hero .hero-sai-main-desc {
    font-size: 1em;
    color: var(--secondary-text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero .hero-sai-features-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 22px auto;
    max-width: 500px;
    text-align: right;
}
html[dir="ltr"] .hero .hero-sai-features-list {
    text-align: left;
}

.hero .hero-sai-features-list li {
    font-size: 0.95em;
    color: var(--secondary-text-color);
    margin-bottom: 10px;
    line-height: 1.65;
    padding-right: 8px;
    position: relative;
}
html[dir="ltr"] .hero .hero-sai-features-list li {
    padding-left: 8px;
    padding-right: 0;
}

.hero .hero-sai-pre-cta {
    font-size: 0.95em;
    color: var(--secondary-text-color);
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.9;
}

.hero .hero-sai-purchase-box .hero-sai-buy-now-button {
    padding: 15px 40px;
    font-size: 1.2em;
    color: white;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #5058e5 100%);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--highlight-color-rgb), 0.3), 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
}

.hero .hero-sai-purchase-box .hero-sai-buy-now-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(var(--highlight-color-rgb), 0.45), 0 4px 10px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, var(--highlight-hover-color) 0%, var(--highlight-color) 100%);
}

/* Two-column layout for hero SAI purchase box */
.hero-sai-purchase-box.two-column-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    padding: 30px 40px 30px 40px;
    max-width: 800px;
}

.sai-box-col-left,
.sai-box-col-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sai-box-col-left {
    align-items: center;
    border-left: 1px solid rgba(var(--highlight-color-rgb), 0.13);
    padding-right: 32px;
    padding-left: 0;
    min-width: 220px;
    max-width: 320px;
}
html[dir="rtl"] .sai-box-col-left {
    border-left: none;
    border-right: 1px solid rgba(var(--highlight-color-rgb), 0.13);
    padding-left: 32px;
    padding-right: 0;
}

.sai-box-col-right {
    align-items: flex-start;
    justify-content: center;
    padding-left: 32px;
    padding-right: 0;
}
html[dir="rtl"] .sai-box-col-right {
    align-items: flex-end;
    padding-right: 32px;
    padding-left: 0;
}

.hero-sai-purchase-box .hero-sai-main-desc,
.hero-sai-purchase-box .hero-sai-features-list,
.hero-sai-purchase-box .hero-sai-buy-now-button {
    text-align: left;
}
html[dir="rtl"] .hero-sai-purchase-box .hero-sai-main-desc,
html[dir="rtl"] .hero-sai-purchase-box .hero-sai-features-list,
html[dir="rtl"] .hero-sai-purchase-box .hero-sai-buy-now-button {
    text-align: right;
}

.hero-sai-purchase-box .hero-sai-buy-now-button {
    margin-top: 18px;
    align-self: flex-start;
}
html[dir="rtl"] .hero-sai-purchase-box .hero-sai-buy-now-button {
    align-self: flex-end;
}

/* Make the whole box clickable but keep button hover effect */
.hero-sai-purchase-box-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.hero-sai-purchase-box-link:hover .hero-sai-purchase-box {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4),
                0 0 35px rgba(var(--highlight-color-rgb), 0.25),
                inset 0 1px 0px rgba(255, 255, 255, 0.1);
    transform: translateY(-5px) scale(1.01);
}

/* Responsive for mobile */
@media (max-width: 900px) {
    .hero-sai-purchase-box.two-column-layout {
        flex-direction: column;
        gap: 18px;
        padding: 22px 12px 22px 12px;
        max-width: 98vw;
    }
    .sai-box-col-left,
    .sai-box-col-right {
        padding: 0 !important;
        border: none !important;
        max-width: 100%;
    }
    .sai-box-col-left {
        margin-bottom: 10px;
    }
    .sai-box-col-right {
        align-items: flex-start;
    }
}

/* Styles for Clickable Hero SAI Token Purchase Box (Customer Preferred Layout) */

.hero-sai-purchase-box-link {
    display: block;
    text-decoration: none;
    color: inherit;
    outline: none;
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-sai-purchase-box-link:hover .hero-sai-purchase-box.sai-box-customer-preferred-layout {
    transform: translateY(-5px) scale(1.005);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(var(--highlight-color-rgb, 129, 140, 248), 0.20),
                inset 0 1px 0px rgba(255, 255, 255, 0.1);
}
.hero-sai-purchase-box-link:focus-visible .hero-sai-purchase-box.sai-box-customer-preferred-layout {
    box-shadow: 0 0 0 2px var(--primary-bg-color), 0 0 0 4px var(--highlight-color),
                0 12px 35px rgba(0, 0, 0, 0.35),
                0 0 25px rgba(var(--highlight-color-rgb, 129, 140, 248), 0.22);
}

.hero .hero-sai-purchase-box.sai-box-customer-preferred-layout {
    background: rgba(35, 45, 60, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 35px;
    max-width: 780px;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: center;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
html[dir="rtl"] .hero .hero-sai-purchase-box.sai-box-customer-preferred-layout {
    flex-direction: row;
    text-align: right;
}

.hero .sai-box-branding-col {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5px;
}

.hero .sai-box-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .sai-box-branding-col .hero-sai-icon-main {
    font-size: 2.4em;
    color: var(--highlight-color);
    margin-bottom: 8px;
    line-height: 1;
}

.hero .sai-box-branding-col h3 {
    font-size: 1.5em;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.hero .sai-box-branding-col .hero-sai-tagline {
    font-size: 0.95em;
    color: var(--highlight-hover-color);
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.35;
    opacity: 0.9;
}

.hero .sai-box-content-col .hero-sai-main-desc {
    font-size: 0.85em;
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin-bottom: 8px;
}

.hero .sai-box-content-col .hero-sai-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    text-align: right;
}
html[dir="ltr"] .hero .sai-box-content-col .hero-sai-features-list {
    text-align: left;
}

.hero .sai-box-content-col .hero-sai-features-list li {
    font-size: 0.8em;
    color: var(--secondary-text-color);
    margin-bottom: 4px;
    line-height: 1.5;
    padding-right: 5px;
    position: relative;
}
html[dir="ltr"] .hero .sai-box-content-col .hero-sai-features-list li {
    padding-left: 5px;
    padding-right: 0;
}

.hero .sai-box-content-col .hero-sai-buy-now-button {
    padding: 9px 25px;
    font-size: 1em;
    color: white;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #5058e5 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background 0.3s ease;
    box-shadow: 0 4px 12px rgba(var(--highlight-color-rgb, 129, 140, 248), 0.3);
    cursor: pointer;
}

html[dir="rtl"] .hero .sai-box-content-col .hero-sai-buy-now-button {
    align-self: flex-end;
}

.hero .sai-box-content-col .hero-sai-buy-now-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px rgba(var(--highlight-color-rgb, 129, 140, 248), 0.4);
    background: linear-gradient(135deg, var(--highlight-hover-color) 0%, var(--highlight-color) 100%);
}

.hero .glassy-community-cta {
    background-color: rgba(var(--highlight-color-rgb, 129, 140, 248), 0.12);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--primary-text-color);
    padding: 12px 35px;
    font-size: 1.05em;
    border-radius: 8px;
    border: 1px solid rgba(var(--highlight-color-rgb, 129, 140, 248), 0.25);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    text-align: center;
}
.hero .glassy-community-cta:hover {
    background-color: rgba(var(--highlight-color-rgb, 129, 140, 248), 0.22);
    border-color: rgba(var(--highlight-color-rgb, 129, 140, 248), 0.4);
    color: var(--highlight-hover-color);
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 5px 18px rgba(0,0,0,0.22);
}

/* START: Styles for Interactive SAI Purchase Box Hover */
.hero-sai-purchase-container-interactive {
    position: relative;
    max-width: 780px; /* Should match .hero-sai-purchase-box.sai-box-customer-preferred-layout max-width if it has one, or set as needed */
    width: 100%; /* Ensure it takes the space */
    margin: 35px auto 0 auto; /* Adjust margin as per original element */
    border-radius: 18px; /* Match original box */
}

.hero-sai-purchase-container-interactive .initial-view {
    /* Styles for this are largely inherited from .hero-sai-purchase-box.sai-box-customer-preferred-layout */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    /* Ensure it has a background to cover the hover options initially, if not already set */
    background: rgba(35, 45, 60, 0.2); /* Copied from .hero-sai-purchase-box.sai-box-customer-preferred-layout */
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12); /* Copied */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0px rgba(255, 255, 255, 0.08); /* Copied */
    border-radius: 18px; /* Copied */
    padding: 15px 25px; /* Copied */
    display: flex; /* Copied */
    /* Add any other necessary styles from the original .hero-sai-purchase-box to ensure it looks the same */
}

.hero-sai-purchase-container-interactive .sai-hover-options-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 0px;
    align-items: stretch;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out 0.1s, visibility 0.3s ease-in-out 0.1s; /* Slight delay for hover options */
    border-radius: 18px;
    overflow: hidden;
    background: rgba(35, 45, 60, 0.5); /* Slightly different or more opaque background for hover */
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35), inset 0 1px 0px rgba(255, 255, 255, 0.1);
}

.hero-sai-purchase-container-interactive:hover .initial-view {
    opacity: 0;
    visibility: hidden;
    transition-delay: 0s; /* Hide immediately */
}

.hero-sai-purchase-container-interactive:hover .sai-hover-options-wrapper {
    opacity: 1;
    visibility: visible;
}

.sai-hover-option-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--primary-text-color);
    transition: background-color 0.25s ease, transform 0.25s ease;
    position: relative;
}

.sai-hover-option-panel:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
html[dir="rtl"] .sai-hover-option-panel:first-child {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sai-hover-option-panel:hover {
    background-color: rgba(var(--highlight-color-rgb), 0.15);
    transform: scale(1.03);
    z-index: 10; /* Ensure it comes above the other panel slightly on hover */
}

.sai-hover-option-panel h4 {
    font-size: 1.4em;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.sai-hover-option-panel .hover-option-description {
    font-size: 0.95em;
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin-bottom: 18px;
    /* flex-grow: 1; Removed to allow natural height based on content */
    max-width: 95%;
    min-height: 50px; /* Give some space for description */
}

.sai-hover-option-panel .hover-option-cta {
    padding: 12px 22px;
    font-size: 1em;
    color: white;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #5058e5 100%);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: auto; /* Pushes CTA to bottom if panel is flex column */
}

.sai-hover-option-panel .hover-option-cta:hover {
    background: linear-gradient(135deg, var(--highlight-hover-color) 0%, var(--highlight-color) 100%);
    transform: scale(1.05);
}

.recommended-panel .recommended-badge-text {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--highlight-color);
    color: white;
    font-size: 0.8em;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 5;
}
html[dir="rtl"] .recommended-panel .recommended-badge-text {
    right: auto;
    left: 12px;
}

/* START: Fix for Recommended Badge Overlap */
.recommended-panel h4 {
    margin-top: 15px; /* Pushes the title down to avoid overlap with the absolute positioned badge */
}
/* END: Fix for Recommended Badge Overlap */

@media (max-width: 768px) {
    .hero-sai-purchase-container-interactive .sai-hover-options-wrapper {
        flex-direction: column;
    }
    .sai-hover-option-panel {
        min-height: 200px; /* Ensure panels have some height when stacked */
        padding: 20px 15px;
    }
    .sai-hover-option-panel:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    html[dir="rtl"] .sai-hover-option-panel:first-child {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .sai-hover-option-panel h4 {
        font-size: 1.2em;
    }
    .sai-hover-option-panel .hover-option-description {
        font-size: 0.85em;
        margin-bottom: 12px;
        min-height: 40px;
    }
    .sai-hover-option-panel .hover-option-cta {
        padding: 10px 18px;
        font-size: 0.9em;
    }
    .recommended-panel .recommended-badge-text {
        font-size: 0.75em;
        padding: 3px 7px;
        top: 8px;
        right: 8px;
    }
    html[dir="rtl"] .recommended-panel .recommended-badge-text {
        right: auto;
        left: 8px;
    }
}

/* Challenge Conditions Section Styles */
.challenge-conditions {
    margin-top: 40px;
    margin-bottom: 60px;
    color: #e5e7eb;
}

.challenge-conditions h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.challenge-conditions .conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.challenge-conditions .condition-item {
    background-color: var(--card-bg-color);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color-soft);
    display: flex;
    align-items: flex-start; /* آیکون و متن در یک راستا از بالا */
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-conditions .condition-item:hover {
    transform: translateY(-5px);
   
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}



.challenge-conditions .condition-icon {
    font-size: 1.8em; /* اندازه آیکون */





    /* رنگ آیکون‌ها مستقیماً در HTML با استایل inline برای تنوع اعمال شده */
    flex-shrink: 0;
    width: 40px; /* برای ایجاد فضای ثابت برای آیکون */
    text-align: center;
    margin-top: 5px; /* کمی پایین‌تر برای تراز بهتر با عنوان */
}

.challenge-conditions .condition-text h4 {
    font-size: 1.1em;
    color: var(--primary-text-color);
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 600;
}

.challenge-conditions .condition-text p {
    font-size: 1.2em; /* مقدار شرط را برجسته‌تر نشان می‌دهد */
    color: var(--highlight-color); /* رنگ هایلایت برای مقدار */
    margin-top: 0;
    margin-bottom: 8px;
          font-weight: 700;
}

.challenge-conditions .condition-text small {
    font-size:  0.85em;
    color: var(--secondary-text-color);
    line-height: 1.5;
    display: block; /* برای اینکه تمام عرض را بگیرد */
}

@media (max-width: 768px) {
    .challenge-conditions .condition-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .challenge-conditions .condition-icon {
        margin-bottom: 10px;
        width: auto;
    }
    .challenge-conditions .condition-text h4,
    .challenge-conditions .condition-text p,
    .challenge-conditions .condition-text small {
        text-align: center;
    }
}

/* --- Prop Registration Card Styles --- */
.prop-registration-section .form-step-card {
    background-color: var(--card-bg-color);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 30px 35px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color-soft);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.prop-registration-section .form-step-card h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--highlight-color);
    font-size: 1.8em;
    font-weight: 600;
}
.prop-registration-section .form-step-card h2 i {
    margin-left: 10px;
}
html[dir="ltr"] .prop-registration-section .form-step-card h2 i {
    margin-right: 10px;
    margin-left: 0;
}

/* استایل بهبود یافته برای بخش اطلاعات بروکر OANDA */
.oanda-broker-info {
    background-color: var(--card-bg-color);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color-soft);
    border-radius: 16px;
    padding: 25px 30px;
    margin: 30px auto 40px auto;
    text-align: center;
    max-width: 750px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}
/* .oanda-broker-info::before { ... } */

.oanda-broker-info .oanda-icon {
    font-size: 2.8em;
    color: var(--highlight-color);
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 0 10px rgba(var(--highlight-color-rgb), 0.4);
}

.oanda-broker-info h3 {
   
    font-size: 1.7em;
    color: var(--primary-text-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.oanda-broker-info p {
    font-size: 1.1em;
    color: var(--secondary-text-color);
    line-height: 1.8;
}

.oanda-broker-info p strong {
    color: var(--highlight-hover-color);
    font-weight: 700;
}

/* اگر از @font-face استفاده می‌کنید */
@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.prop-challenge-hero {
    text-align: center;
    padding-top: 20px; /* قبلاً 30px بود */
    padding-bottom: 15px; /* قبلاً 20px بود */
}
.prop-challenge-hero h1 {
    margin-bottom: 10px; /* قبلاً 15px بود */
}
.prop-challenge-hero .lead-text {
    margin: 0 auto 20px auto; /* قبلاً 30px بود */
}

/* پیشنهادات ویژه چالش پراپ */
.prop-challenge-offers {
    padding: 40px 20px;
    background-color: var(--section-bg-color);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 14px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.22);
    border: 1px solid var(--border-color-soft);
}
.prop-challenge-offers h2 {
    font-size: 2.2em;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
}
.prop-challenge-offers p {
    color: var(--secondary-text-color);
    font-size: 1.05em;
    margin-bottom: 30px;
    text-align: center;
}
.prop-challenge-offers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
html[dir="rtl"] .prop-challenge-offers .container {
    text-align: right;
}

.offering-grid {
    gap: 25px; /* قبلاً 30px یا 35px بود، این فاصله افقی و عمودی بین کارت‌هاست */
}

.prop-challenge-offers .offering-item {
    background-color: var(--card-bg-color-transparent); 
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 25px 20px; /* قبلاً 30px 25px بود */
    border-radius: 16px; /* کمی گردی بیشتر */
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3); 
    border: 1px solid var(--border-color-soft);
    display: flex; 
    flex-direction: column; 
    align-items: center; /* مرکز چین کردن افقی محتوا */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: auto; /* ارتفاع را خودکار می‌کنیم تا محتوا تعیین کند، یا یک مقدار کمتر مانند 400px */
}

.prop-challenge-offers .plan-header {
    margin-bottom: 15px; /* قبلاً 20px بود */
}
.prop-challenge-offers .plan-price.price-highlight {
    margin-bottom: 15px; /* قبلاً 20px بود */
}
.prop-challenge-offers .plan-features {
    margin-bottom: 20px; /* قبلاً 25px بود */
}
.prop-challenge-offers .plan-features li {
    margin-bottom: 10px; /* قبلاً 12px بود */
}

/* --- CSS Update for Single-Line Horizontal Scroll Layout --- */
.hero-features-grid {
    display: flex;
    justify-content: center; /* THIS IS THE KEY: Centers the group of cards */
    gap: 20px;
    max-width: 100%; /* Allow it to take full width for scrolling */
    margin: 35px auto 0 auto; /* Remove bottom margin to connect to CTA */
    padding: 10px 20px; /* Padding on the sides for spacing */
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-features-grid::-webkit-scrollbar {
    display: none;
}

/* Giving the "box" back to each feature card */
.feature-card {
    flex-shrink: 0;
    width: 240px;
    padding: 25px 20px;
    background: rgba(40, 50, 70, 0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 18px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(55, 65, 81, 0.5);
}

/* Styles for icon and text (no major changes needed) */
.feature-icon {
    font-size: 2.2rem;
    color: var(--highlight-color);
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.22rem;
    color: #a7b5ff;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 0;
    letter-spacing: 0.01em;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.feature-card p {
    font-weight: 600;
    font-size: 1.08rem;
    color: #f3f4f6;
    line-height: 1.8;
    margin-top: 0;
}

/* Styling the CTA strip to be visually connected */
.cta-strip-container {
    width: 52%;
    margin: 0 auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0;
}

a.cta-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 100%;
    padding: 18px 20px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #5a6ee5 100%);
    box-shadow: 0 6px 20px rgba(var(--highlight-color-rgb), 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.cta-strip:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(var(--highlight-color-rgb), 0.4);
}

/* --- Style for the new subtitle container to give it a halo/card effect --- */
.subtitle-container {
    max-width: 850px;
    margin: 40px auto;
    background: rgba(35, 45, 60, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.subtitle-icon {
    display: inline-block;
    font-size: 2.1rem;
    color: var(--highlight-color);
    margin-bottom: 10px;
    margin-right: 8px;
    vertical-align: middle;
}

.subtitle-container {
    text-align: center;
}
.subtitle-container p {
    display: inline;
}

/* --- Adding a glow effect to the main title --- */
.hero-main-card h2[data-lang-key="hero_title"] {
    font-weight: 400;
    text-shadow: 0 0 8px rgba(129, 140, 248, 0.5), 
                 0 0 16px rgba(129, 140, 248, 0.4);
}

/* === Animated Icon Hover Effect (Global) === */
.feature-icon,
.offering-icon,
.hero-sai-icon-main,
.subtitle-icon i,
footer .social-links i,
.hero-features-grid i,
.feature-item i,
.offering-item i,
.about-teaser i,
.why-corexcapital li i,
.page-section i {
    transition: transform 0.35s cubic-bezier(.4,2,.3,1), filter 0.3s;
}

.feature-icon:hover,
.offering-icon:hover,
.hero-sai-icon-main:hover,
.subtitle-icon i:hover,
footer .social-links i:hover,
.hero-features-grid i:hover,
.feature-item i:hover,
.offering-item i:hover,
.about-teaser i:hover,
.why-corexcapital li i:hover,
.page-section i:hover {
    transform: scale(1.18) rotate(-12deg);
    filter: drop-shadow(0 0 8px #818cf8cc);
}

/* cta-strip styles */
.cta-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    font-size: 1.08em;
    font-weight: 500;
    color: #e5e7eb;
    background: rgba(40, 50, 70, 0.32);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1.5px solid rgba(129,140,248,0.13);
    box-shadow: 0 2px 12px 0 rgba(129,140,248,0.10), 0 1px 4px 0 #232b4a33;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px #232b4a33, 0 0 8px #a7b5ff22;
    transition: box-shadow 0.22s, transform 0.22s, background 0.22s, border-color 0.22s;
    z-index: 1;
}

.cta-strip-container {
    width: 52%;
    margin: 0 auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0;
}

.cta-strip {
    width: 100%;
    min-height: 40px;
    font-size: 1em;
    font-weight: 500;
    color: #e5e7eb;
    background: rgba(40, 50, 70, 0.32);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    border: 1.2px solid rgba(129,140,248,0.13);
    box-shadow: 0 1.5px 8px 0 rgba(129,140,248,0.08), 0 1px 2px 0 #232b4a22;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px #232b4a22, 0 0 8px #a7b5ff11;
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s, border-color 0.18s;
    z-index: 1;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 10px; right: 10px; height: 1.5px;
    background: linear-gradient(90deg, #818cf8 0%, #00eaff 50%, #818cf8 100%);
    filter: blur(0.6px) brightness(1.1);
    opacity: 0.45;
    border-radius: 6px 6px 0 0;
    z-index: 2;
    animation: cta-laser-move 2.2s linear infinite;
}

.cta-strip:hover {
    box-shadow: 0 4px 12px 0 #00eaff22, 0 1.5px 6px 0 #818cf844;
    background: rgba(40, 50, 70, 0.44);
    border-color: rgba(129,140,248,0.22);
    transform: scale(1.01);
}

.cta-strip i {
    margin-right: 6px;
    margin-left: 6px;
    font-size: 1em;
    color: #a7b5ff;
    transition: transform 0.22s cubic-bezier(.4,2,.3,1), filter 0.18s;
}

.cta-strip:hover i {
    transform: scale(1.11) rotate(-8deg);
    filter: drop-shadow(0 0 3px #00eaff66);
}

@keyframes cta-laser-move {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* === FIX: Make 'Contact Us' dropdown header non-clickable === */
/* Changes the mouse cursor to the default arrow */
header nav ul li.contact-dropdown > a[data-lang-key="nav_contact"] {
    cursor: default;
}

/* Prevents the underline hover effect for this specific item */
header nav ul li.contact-dropdown > a[data-lang-key="nav_contact"]:hover {
    border-bottom-color: transparent;
}
