/* Landing page specific styles */
.landing-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--white2) 0%, var(--white1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.hero-title {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
    color: white;
    text-decoration: none;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--text-color);
    padding: 1rem 2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: var(--text-color);
    color: var(--white2);
    text-decoration: none;
}

.features-section {
    padding: 5rem 0;
    background: var(--white1);
}

.feature-card {
    background: var(--white2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

.stats-section {
    padding: 4rem 0;
    background: var(--white2);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.footer {
    background: var(--text-color);
    color: var(--white2);
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
    }
}

/* Decorative elements */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--text-color) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--text-color) 2px, transparent 2px);
    background-size: 50px 50px;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(11, 94, 215, 0.05) 100%);
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

.hero-content {
    position: relative;
    z-index: 3;
}
