/* Home Page Styles - Modern Design */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(59,130,246,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(16,185,129,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(59,130,246,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(16,185,129,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(59,130,246,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.logo-container {
    margin-bottom: 1rem;
}

.hero-logo-img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(59,130,246,0.3));
}

.hero-title .erp-text {
    background: linear-gradient(90deg, #3b82f6, #10b981) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-title .trade-text {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500 !important;
    font-size: 0.8em !important;
    margin-left: 0.2em !important;
}

.hero-title {
    color: white !important;
    font-weight: 700 !important;
    font-size: 3.5rem !important;
    margin: 0 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

.hero-description {
    color: rgba(255,255,255,0.8) !important;
    margin: 0 !important;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 0.75rem !important;
    transition: all 0.3s ease !important;
}

.cta-button.primary {
    background: linear-gradient(90deg, #3b82f6, #10b981) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(59,130,246,0.3) !important;
}

.cta-button.primary:hover {
    background: linear-gradient(90deg, #2563eb, #059669) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59,130,246,0.4) !important;
}

.cta-button.secondary {
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.2) !important;
    border-color: rgba(255,255,255,0.5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255,255,255,0.1) !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Features Section - Modern Design */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    color: #1e3c72 !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-align: center;
}

.section-subtitle {
    color: #6b7280 !important;
    margin: 0 !important;
    text-align: center;
    max-width: 600px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}

.feature-title {
    color: #1e293b !important;
    font-weight: 600 !important;
    margin: 0 0 1rem 0 !important;
}

.feature-description {
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.6;
}

/* CTA Section - Modern Design */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    color: white;
}

.cta-title {
    color: white !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-align: center;
}

.cta-description {
    color: rgba(255,255,255,0.9) !important;
    margin: 0 !important;
    text-align: center;
    max-width: 600px;
}

.stat-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #2a5298, #4CAF50);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.activity-item {
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.5rem;
    border-left: 4px solid #1e3c72;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.activity-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-left-color: #4CAF50;
    transform: translateX(4px);
}

.status-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 0.75rem;
    border: 1px solid #bae6fd;
    transition: all 0.3s ease;
}

.status-item:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    transform: translateY(-2px);
}

/* Button Styles */
.rz-button {
    transition: all 0.3s ease;
}

.rz-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 2rem 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-logo {
        font-size: 3.5rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .cta-button {
        width: 100% !important;
    }
    
    .features-section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 70vh;
        padding: 1rem 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-logo {
        font-size: 3rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.loading-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Custom Scrollbar - Mavi-yeşil gradient */
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6 0%, #06b6d4 50%, #10b981 100%);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2563eb 0%, #0891b2 50%, #059669 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
