/*=============================================
=         Stock Wealth Investment - Custom    =
=============================================*/

/* Google Translate widget */
#google_translate_element,
#google_translate_element_mobile {
    display: inline-block;
}
#google_translate_element .goog-te-gadget,
#google_translate_element_mobile .goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}
#google_translate_element .goog-te-gadget .goog-te-combo,
#google_translate_element_mobile .goog-te-gadget .goog-te-combo {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
    margin: 0;
}
#google_translate_element .goog-te-gadget .goog-te-combo option,
#google_translate_element_mobile .goog-te-gadget .goog-te-combo option {
    color: #000;
}
.goog-logo-link, .goog-te-gadget span { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }

.mobile-lang {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero progress bar - CREATE / INVEST / PROFIT */
.swi-progress-wrap ul.swi-progress-labels {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0;
}
.swi-progress-wrap ul.swi-progress-labels li {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}
.swi-progress-wrap ul.swi-progress-labels li.create { color: #2ad2ff; }
.swi-progress-wrap ul.swi-progress-labels li.invest { color: #ffa500; }
.swi-progress-wrap ul.swi-progress-labels li.profit { color: #2bd47d; }
.swi-progress-wrap ul.swi-progress-labels li .dot {
    width: 4px;
    height: 12px;
    background: currentColor;
    border-radius: 2px;
    display: inline-block;
}
.swi-progress-info {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.swi-progress-info .left { color: #fff; }
.swi-progress-info .right { color: #fff; }

/* Bitcoin orb */
.bitcoin-visual-area {
    padding: 60px 0 30px;
    text-align: center;
}
.bitcoin-orb {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(42, 210, 255, 0.25) 0%, rgba(42, 210, 255, 0.05) 60%, transparent 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbPulse 4s ease-in-out infinite;
}
.bitcoin-orb::before {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(42, 210, 255, 0.4) 0%, rgba(0, 90, 160, 0.2) 50%, transparent 80%);
    box-shadow: 0 0 80px rgba(42, 210, 255, 0.4), inset 0 0 60px rgba(42, 210, 255, 0.3);
}
.bitcoin-orb::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(42, 210, 255, 0.2);
    box-shadow: inset 0 0 30px rgba(42, 210, 255, 0.15);
}
.orb-bitcoin {
    position: relative;
    z-index: 2;
    font-size: 140px;
    color: #2ad2ff;
    text-shadow: 0 0 40px rgba(42, 210, 255, 0.7);
}
@keyframes orbPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}
@media (max-width: 575px) {
    .bitcoin-orb { width: 240px; height: 240px; }
    .orb-bitcoin { font-size: 100px; }
}

/* About section content tweaks */
.about-area .about-content p {
    margin-bottom: 22px;
}
.about-area .about-content p:last-child {
    font-size: 14px;
    opacity: .85;
}

/* Investment Plans cards (CSS scroll-snap carousel) */
.plans-area .plans-track-wrap {
    position: relative;
}
.plans-area .plans-active {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #2ad2ff rgba(255,255,255,.05);
    padding: 6px 4px 28px;
}
.plans-area .plans-active::-webkit-scrollbar { height: 8px; }
.plans-area .plans-active::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 8px; }
.plans-area .plans-active::-webkit-scrollbar-thumb { background: #2ad2ff; border-radius: 8px; }

.plans-area .plan-item {
    background: rgba(11, 27, 60, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 35px 22px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    flex: 0 0 calc((100% - 100px) / 6);
    min-width: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}
.plans-area .plan-item:hover {
    border-color: #2ad2ff;
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(42, 210, 255, 0.2);
}
.plans-area .plan-name {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    line-height: 1.2;
}
.plans-area .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    flex-grow: 1;
}
.plans-area .plan-features li {
    color: #b9c0d4;
    font-size: 14px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}
.plans-area .plan-features li:last-child { border-bottom: none; }
.plans-area .plan-btn {
    display: inline-block;
    padding: 9px 24px;
    background: transparent;
    color: #2ad2ff;
    border: 1px solid #2ad2ff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.plans-area .plan-btn:hover {
    background: #2ad2ff;
    color: #07112c;
}
.plans-area .plans-hint {
    text-align: center;
    color: #6e7892;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 10px;
    display: none;
}

@media (max-width: 1400px) {
    .plans-area .plan-item { flex-basis: calc((100% - 80px) / 5); }
}
@media (max-width: 1200px) {
    .plans-area .plan-item { flex-basis: calc((100% - 60px) / 4); }
}
@media (max-width: 992px) {
    .plans-area .plan-item { flex-basis: calc((100% - 40px) / 3); }
    .plans-area .plans-hint { display: block; }
}
@media (max-width: 768px) {
    .plans-area .plan-item { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 575px) {
    .plans-area .plan-item { flex-basis: 78%; min-height: 380px; }
}

/* FAQ cards */
.faq-area .faq-card {
    background: rgba(11, 27, 60, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 35px 28px;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    transition: all 0.3s ease;
    position: relative;
}
.faq-area .faq-card:hover {
    border-color: #2ad2ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(42, 210, 255, 0.15);
}
.faq-area .faq-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ad2ff 0%, #1565d8 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
}
.faq-area .faq-card-title {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 14px;
}
.faq-area .faq-card p {
    color: #b9c0d4;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Terms section */
.terms-area .terms-content {
    background: rgba(11, 27, 60, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 50px 50px;
}
.terms-area .terms-intro {
    color: #2ad2ff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.terms-area .terms-content p {
    color: #c8cee0;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media (max-width: 575px) {
    .terms-area .terms-content { padding: 30px 22px; }
}

/* Contact tweaks */
.contact-area .contact-info-item .content p {
    line-height: 1.7;
}

/* Footer logo larger */
footer .f-logo img {
    max-width: 220px;
}

/* Override original light FAQ background to match dark theme */
.faq-area {
    background: transparent !important;
    padding: 100px 0 30px !important;
}
.faq-area .section-title .title { color: #fff; }
.faq-area .section-title .sub-title { color: #2ad2ff; }

/* Terms area on dark bg */
.terms-area { background: transparent; padding-top: 100px; }
.terms-area .section-title .title { color: #fff; }
.terms-area .section-title .sub-title { color: #2ad2ff; }

/* Plans section background and headings on dark */
.plans-area { background: transparent; padding-top: 100px; }
.plans-area .section-title .title { color: #fff; }
.plans-area .section-title .sub-title { color: #2ad2ff; }

/* Make sure body always shows the dark background under every section */
body { background-color: #030B15 !important; }
