/* Custom Hero Section Styles */
.hero-1 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.hero-1-title {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.hero-content {
    z-index: 2;
    position: relative;
    padding: 2rem 0;
}

.hero-content h2 {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 3rem;
}

.hero-content .lead {
    font-size: 1rem;
    font-weight: 300;
}

/* Platform Support Styling */
.platform-support {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 3rem auto;
    max-width: 100%;
}

.platform-item {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.platform-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Trust Points Styling */
.trust-points {
    margin: 3rem 0;
}

.trust-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* CTA Section Styling */
.cta-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    margin: 4rem auto 0;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem !important;
}

/* Enhanced CTA Button Styling */
.hero-cta-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    padding: 0.75rem 2rem;
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    color: #333;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.hero-cta-btn:hover::before {
    left: 100%;
}

/* Icon Colors */
.text-danger {
    color: #ff4757 !important;
}

.text-info {
    color: #1e90ff !important;
}

.text-primary {
    color: #0077b5 !important;
}

.text-warning {
    color: #ffa502 !important;
}

.text-success {
    color: #2ed573 !important;
}

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

.platform-support {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.trust-points {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.cta-section {
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .hero-1 {
        padding: 5rem 0;
    }

    .hero-1-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.25rem;
        margin-bottom: 3.5rem;
    }
    
    .platform-support {
        padding: 2rem;
        max-width: 600px;
        margin: 4rem auto;
    }
    
    .platform-item {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .trust-points {
        margin: 4rem 0;
    }
    
    .cta-section {
        padding: 3rem;
        max-width: 500px;
        margin: 5rem auto 0;
    }
    
    .cta-text {
        font-size: 1.2rem;
        margin-bottom: 2.5rem !important;
    }
    
    .hero-cta-btn {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
}

@media (min-width: 992px) {
    .hero-1 {
        padding: 6rem 0;
    }

    .hero-1-title {
        font-size: 3.5rem;
        margin-bottom: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .platform-support {
        padding: 2.5rem;
        margin: 5rem auto;
    }
    
    .platform-item {
        padding: 1rem 2rem;
    }
    
    .trust-points {
        margin: 5rem 0;
    }
    
    .cta-section {
        margin: 6rem auto 0;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 576px) {
    .hero-1 {
        padding: 3rem 0;
    }

    .platform-support .row,
    .trust-points .row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .platform-item,
    .trust-item {
        margin: 0.25rem auto;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .cta-section {
        margin: 3rem 1rem 0;
        padding: 2rem 1rem;
    }
    
    .hero-cta-btn {
        width: 100%;
        max-width: 280px;
    }
} 