/* ========================================
   LANDING PAGE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f1f8f4 0%, #ffffff 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-image {
    position: relative;
    padding: 2rem;
}

.hero-image-wrapper {
    position: relative;
    padding: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(29, 209, 161, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(29, 209, 161, 0.3);
}

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

.floating-card {
    animation: float 3s ease-in-out infinite;
}

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

.stat-mini {
    background: var(--brand-background);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    text-align: center;
}

/* Stats Section */
.stats-section {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item {
    padding: 1rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

.benefit-item .benefit-icon {
    flex-shrink: 0;
    margin-right: 1rem;
}

.benefits-illustration {
    position: relative;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-card {
    transition: transform 0.3s ease;
    position: relative;
}

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

.pricing-card-featured {
    border: 2px solid var(--brand-secondary) !important;
    transform: scale(1.05);
}

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

.card-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--brand-secondary);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-top: 10px solid #2e7d32;
}

.pricing-price {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-info {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
}

.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
    transform: translateX(3px);
}

/* Navbar Enhancements */
.navbar {
    transition: all 0.3s ease;
}

.navbar-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.navbar-brand i {
    animation: pulse 2s ease-in-out infinite;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .features-section,
    .benefits-section,
    .pricing-section,
    .contact-section,
    .cta-section {
        padding: 60px 0;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .floating-card {
        animation: none;
    }
}

/* User Avatar */
.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Smooth Animations */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional utility classes */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}
