/* Root Variables */
:root {
    --primary-color: #10B981;
    --secondary-color: #3B82F6;
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    --gradient-secondary: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
    --dark-color: #1F2937;
    --light-color: #F9FAFB;
    --text-color: #374151;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-secondary);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    margin-top: 70px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats h3 {
    font-size: 2rem;
    font-weight: 700;
}

.hero-stats small {
    color: #94A3B8;
    font-size: 0.9rem;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Bitcoin Globe Animation */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bitcoin-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.bitcoin-globe {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.3);
}

.bitcoin-icon {
    font-size: 4rem;
    color: var(--white);
    animation: counterRotate 20s linear infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.floating-card span {
    color: var(--white);
    font-weight: 600;
}

.card-1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -20px;
    animation-delay: 2s;
}

.card-3 {
    top: 60%;
    right: -30px;
    animation-delay: 4s;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

.element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.element-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Step Cards */
.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.1);
    }
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #E5E7EB;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
}

.price .period {
    font-size: 1rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.5rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* Trading Widget */
.trading-widget-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #E5E7EB;
}

.widget-header {
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9FAFB;
}

.widget-header h5 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.widget-controls {
    display: flex;
    gap: 0.5rem;
}

.tradingview-widget-container {
    height: 400px;
    background: var(--white);
}

#tradingview_chart {
    height: 100%;
    width: 100%;
}

/* Trading Chat */
.trading-chat {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #E5E7EB;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    background: #F9FAFB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h5 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    position: relative;
}

.status-indicator.online::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulse-dot 2s infinite;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 350px;
}

.message {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.message-header strong {
    color: var(--dark-color);
    font-size: 0.9rem;
}

.message-header .time {
    color: var(--text-light);
    font-size: 0.8rem;
}

.message-content {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    border-radius: 25px;
    border: 1px solid #E5E7EB;
    padding: 0.75rem 1rem;
}

.chat-input button {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Calculator */
.calculator-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #E5E7EB;
}

.calculator-input label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.calculator-input input,
.calculator-input select {
    border-radius: 10px;
    border: 2px solid #E5E7EB;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.calculator-input input:focus,
.calculator-input select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.calculator-results {
    background: linear-gradient(135deg, #F0FDF4 0%, #DBEAFE 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.result-card {
    padding: 1rem;
}

.result-card h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-card p {
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .bitcoin-container {
        width: 250px;
        height: 250px;
    }

    .bitcoin-globe {
        width: 150px;
        height: 150px;
    }

    .bitcoin-icon {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .widget-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .trading-chat {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .hero-visual {
        display: none;           /* Remove hero image */
    }
    
    .hero-content {
        text-align: center;      /* Center all text */
        padding-bottom: 2rem;
        padding-top: 3rem;    /* Bottom padding */
    }
    
    .hero-buttons {
        margin-bottom: 2rem;     /* Margin after buttons */
    }
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--white);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23374151'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    border-top: 1px solid #E5E7EB;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-brand h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

.footer-links h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-divider {
    border-color: #374151;
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    color: #94A3B8;
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.footer-badges .badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Additional Animations */
@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Page Hero (for About/Contact pages) */
.page-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* About Page Styles */
.about-visual, .mission-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.team-image, .chart-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.image-placeholder i, .chart-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.image-placeholder p, .chart-placeholder p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.mission-points {
    margin-top: 2rem;
}

.point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.point i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Cards */
.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-avatar i {
    font-size: 2rem;
    color: var(--white);
}

.team-card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Page Styles */
.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
}

.contact-item h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--white);
}

.contact-item p {
    margin: 0;
    color: #CBD5E1;
}

.contact-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
}

.contact-form h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px;
    border: 2px solid #E5E7EB;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

/* Contact Method Cards */
.contact-method-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    height: 100%;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.method-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.method-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-method-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-method-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Office Cards */
.office-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.office-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.office-info p {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.office-info i {
    width: 20px;
}

/* Authentication Pages */
.auth-page {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    min-height: 100vh;
}

.auth-page .navbar {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
}

.auth-section {
    padding: 2rem 0;
}

.auth-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.auth-form {
    padding: 3rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-light);
    margin: 0;
}

.auth-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.auth-form .form-control,
.auth-form .form-select {
    border-radius: 10px;
    border: 2px solid #E5E7EB;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus,
.auth-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.auth-form .input-group-text {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-right: none;
    color: var(--text-light);
}

.auth-form .input-group .form-control {
    border-left: none;
}

.auth-form .input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
    background: rgba(16, 185, 129, 0.05);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #E5E7EB;
}

.divider span {
    background: var(--white);
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-login .btn {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 500;
}

.auth-footer {
    text-align: center;
    margin-top: 1rem;
}

.auth-footer p {
    color: var(--text-light);
    margin: 0;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Auth Info Panel */
.auth-info {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.info-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.feature-item h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.feature-item p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

/* Benefits List (Sign Up) */
.benefits-list {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.benefit-item i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.benefit-item span {
    opacity: 0.9;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.testimonial cite {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Password Strength */
.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: #dc3545;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Security Notice */
.security-notice {
    background: rgba(31, 41, 55, 0.95);
    color: var(--white);
    padding: 1rem 0;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}

.security-badges {
    display: flex;
    gap: 0.5rem;
}

.security-badges .badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
}

/* Dashboard Layout */
.dashboard-page {
    background: #F8FAFC;
    font-family: 'Inter', sans-serif;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: var(--white);
    border-right: 1px solid #E5E7EB;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.sidebar-header h4 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-nav {
    padding: 1rem 0;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-nav .nav {
    height: 100%;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    border-radius: 0;
}

.sidebar-nav .nav-link:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
}

.sidebar-nav .nav-link.active {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
}

.sidebar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.sidebar-nav .nav-link i {
    width: 20px;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.sidebar-nav .nav-link.logout {
    color: #DC2626;
    margin-top: auto;
}

.sidebar-nav .nav-link.logout:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

.main-content {
    margin-left: 260px;
    min-height: 100vh;
    transition: all 0.3s ease;
}

/* Top Navigation */
.top-nav {
    background: var(--white);
    border-bottom: 1px solid #E5E7EB;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

/* Force show on mobile */
@media (max-width: 768px) {
    .sidebar-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

.page-title {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notifications {
    position: relative;
}

.notifications .btn {
    position: relative;
    color: var(--text-color);
    font-size: 1.2rem;
}

.notifications .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #EF4444;
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
}

.user-menu .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

/* Dashboard Content */
.dashboard-content {
    padding: 2rem;
}

/* Stats Cards */
.stats-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.stats-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.stats-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
}

.stats-info p {
    margin: 0 0 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.stats-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}

.stats-change.positive {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
}

.stats-change.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.stats-change.neutral {
    background: rgba(107, 114, 128, 0.1);
    color: var(--text-light);
}

/* Chart Cards */
.chart-card, .activity-card, .quick-actions-card {
    background: var(--white);
    border-radius: 15px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h5 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
}

.chart-controls .btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.card-body {
    padding: 1.5rem;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 10px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.activity-icon.deposit {
    background: var(--primary-color);
}

.activity-icon.investment {
    background: var(--secondary-color);
}

.activity-icon.profit {
    background: #10B981;
}

.activity-info {
    flex: 1;
}

.activity-info h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--dark-color);
}

.activity-info p {
    margin: 0 0 0.25rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.activity-info small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.activity-amount {
    font-weight: 600;
    color: var(--dark-color);
}

.activity-amount.positive {
    color: var(--primary-color);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: #F9FAFB;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.quick-action i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.quick-action span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Responsive Design for Auth Pages */
@media (max-width: 768px) {
    .auth-form, .auth-info {
        padding: 2rem;
    }

    .auth-container {
        margin: 1rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .notice-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .security-badges {
        justify-content: center;
    }
}

/* Investment Plans */
.investment-plan {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.investment-plan:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plan-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.plan-icon.crypto {
    background: #F7931A;
}

.plan-icon.stocks {
    background: var(--secondary-color);
}

.plan-icon.forex {
    background: #10B981;
}

.plan-icon.bonds {
    background: #8B5CF6;
}

.plan-header h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.plan-header p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.plan-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-item strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Investment Table */
.investment-table th {
    background: #F9FAFB;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    padding: 1rem;
}

.investment-table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: #F3F4F6;
}

.investment-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.investment-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.investment-info h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--dark-color);
}

.investment-info small {
    color: var(--text-light);
}

/* Portfolio Styles */
.portfolio-stats {
    background: linear-gradient(135deg, #F0FDF4 0%, #DBEAFE 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.allocation-legend {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.allocation-bar {
    width: 60px;
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    overflow: hidden;
    margin-right: 0.5rem;
}

.allocation-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
}

.asset-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.asset-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 10px;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.metric-description {
    font-size: 0.8rem;
    color: var(--text-light);
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 10px;
}

.transaction-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.transaction-icon.buy {
    background: var(--primary-color);
}

.transaction-icon.sell {
    background: #EF4444;
}

.transaction-icon.dividend {
    background: #F59E0B;
}

.transaction-info {
    flex: 1;
}

.transaction-info h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--dark-color);
}

.transaction-info small {
    color: var(--text-light);
}

.transaction-amount {
    text-align: right;
}

.transaction-amount div {
    font-weight: 600;
    color: var(--dark-color);
}

.transaction-amount small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Deposit/Withdraw Methods */
.deposit-method, .support-option {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.deposit-method:hover, .support-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.deposit-method.selected {
    border-color: var(--primary-color);
    background: rgba(16, 185, 129, 0.05);
}

.method-icon, .support-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.method-details {
    margin-bottom: 1.5rem;
}

.deposit-form-section, .withdraw-form-section {
    border-top: 1px solid #E5E7EB;
    padding-top: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.deposit-summary, .withdrawal-summary {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    color: var(--dark-color);
}

.security-info, .withdrawal-limits, .withdrawal-info {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 10px;
}

.security-list, .processing-times {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.security-list li, .processing-times li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.limit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.limit-item:last-child {
    border-bottom: none;
}

/* Dashboard Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 260px;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sidebar-backdrop.active {
        display: block;
        opacity: 1;
    }

    .main-content {
        margin-left: 0;
    }

    .sidebar-toggle {
        display: flex !important;
        background: none;
        border: none;
        font-size: 1.2rem;
        color: var(--text-color);
        padding: 0.5rem;
        cursor: pointer;
        border-radius: 4px;
        transition: all 0.3s ease;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }

    .sidebar-toggle:hover {
        background: rgba(16, 185, 129, 0.1);
        color: var(--primary-color);
    }

    .dashboard-content {
        padding: 1rem;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .allocation-legend {
        margin-top: 1rem;
    }
}

/* Transaction History Styles */
.transaction-table th {
    background: #F9FAFB;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    padding: 1rem;
}

.transaction-table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: #F3F4F6;
}

.transaction-date div {
    font-weight: 600;
    color: var(--dark-color);
}

.transaction-date small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.transaction-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transaction-type i {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--white);
}

.transaction-type.deposit i {
    background: var(--primary-color);
}

.transaction-type.withdrawal i {
    background: #EF4444;
}

.transaction-type.investment i {
    background: var(--secondary-color);
}

.transaction-type.profit i {
    background: #10B981;
}

.transaction-type.fee i {
    background: #6B7280;
}

.table-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Support Styles */
.support-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.support-status.online {
    color: var(--primary-color);
}

.support-status i {
    font-size: 0.7rem;
}

.search-box {
    position: relative;
    width: 250px;
}

.search-box input {
    padding-right: 2.5rem;
}

.search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.quick-help-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-help-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.quick-help-item:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.quick-help-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
}

.quick-help-item h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.quick-help-item small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.support-status-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    position: relative;
}

.status-indicator.online::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulse-dot 2s infinite;
}

.status-item h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--dark-color);
}

.status-item small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.support-tickets-table th {
    background: #F9FAFB;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    padding: 1rem;
}

.support-tickets-table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: #F3F4F6;
}

/* Recent Withdrawals */
.recent-withdrawals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.withdrawal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 10px;
}

.withdrawal-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.withdrawal-info {
    flex: 1;
}

.withdrawal-info h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--dark-color);
}

.withdrawal-info small {
    color: var(--text-light);
}

.withdrawal-amount {
    text-align: right;
}

.withdrawal-amount div {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

/* Investment Summary */
.investment-summary {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* Address Container */
.address-container {
    display: flex;
    gap: 0.5rem;
}

.address-container input {
    flex: 1;
}

/* Holdings Table */
.holdings-table th {
    background: #F9FAFB;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    padding: 1rem;
}

.holdings-table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: #F3F4F6;
}

/* Investment Filters */
.investment-filters, .portfolio-filters {
    display: flex;
    gap: 0.5rem;
}

.investment-filters .btn, .portfolio-filters .btn {
    font-size: 0.9rem;
}

.investment-filters .btn.active, .portfolio-filters .btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}
