/* Custom CSS for CryptoLume */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --purple-color: #6f42c1;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #212529;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 8px;
}

.logo-icon i {
    color: white !important;
    font-size: 1.2rem;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
}

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

.btn-dark {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #1a1e21;
    border-color: #1a1e21;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-outline-dark {
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dashboard-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.features-section {
    padding: 80px 0;
}

.feature-card {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.process-section {
    padding: 80px 0;
}

.step-number {
    width: 60px;
    height: 60px;
    font-weight: 700;
}

.integration-preview .card,
.campaign-preview .card,
.analytics-preview .card {
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.integration-item,
.campaign-item {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.integration-item:last-child,
.campaign-item:last-child {
    border-bottom: none;
}

.progress {
    height: 6px;
    border-radius: 3px;
}

.metric-item h4 {
    font-weight: 700;
}

.pricing-section {
    padding: 80px 0;
}

.pricing-card {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.pricing-card.bg-dark {
    border-color: var(--dark-color);
}

.price-display {
    margin-bottom: 1rem;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #495057 100%);
    color: white;
}

.contact-section {
    padding: 80px 0;
}

.contact-section .card {
    border: none;
    border-radius: 12px;
}

.form-control,
.form-select {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.footer {
    background-color: var(--dark-color) !important;
}

.footer .logo-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
}

.footer .fw-bold {
    color: white !important;
}

.footer h5 {
    color: white !important;
}

.footer .text-muted {
    color: #adb5bd !important;
}

.footer .text-muted:hover {
    color: white !important;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color) !important;
}

.text-purple {
    color: var(--purple-color) !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .process-section,
    .features-section,
    .pricing-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .contact-section .card-body {
        padding: 2rem !important;
    }
}

.thank-you-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-icon {
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.legal-document {
    line-height: 1.7;
}

.legal-document h2 {
    color: var(--dark-color);
    margin-top: 2rem;
}

.legal-document h3 {
    color: var(--dark-color);
    margin-top: 1.5rem;
}

.contact-box {
    border-left: 4px solid var(--primary-color);
}
