/* Landing Page Custom Styles */

/* Hover effects for benefit cards */
.benefits-section .col-md-3:hover > div {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Hover effects for different cards */
.different-section .col-md-6:hover > div,
.different-section .col-md-12:hover > div {
    transform: translateY(-3px);
}

/* CTA Button hover effect */
.cta-section a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .landing-header h1 {
        font-size: 2rem !important;
    }
    
    .landing-header div {
        font-size: 1.2rem !important;
    }
    
    .benefits-section .col-md-3,
    .different-section .col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    .benefits-section div,
    .different-section div {
        padding: 1.5rem !important;
    }
    
    .cta-section a {
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations to cards */
.benefits-section .col-md-3 > div {
    animation: fadeInUp 0.6s ease forwards;
}

.benefits-section .col-md-3:nth-child(1) > div { animation-delay: 0.1s; }
.benefits-section .col-md-3:nth-child(2) > div { animation-delay: 0.2s; }
.benefits-section .col-md-3:nth-child(3) > div { animation-delay: 0.3s; }
.benefits-section .col-md-3:nth-child(4) > div { animation-delay: 0.4s; }

.different-section .col-md-6 > div,
.different-section .col-md-12 > div {
    animation: fadeInUp 0.6s ease forwards;
}

.different-section .col-md-6:nth-child(1) > div { animation-delay: 0.1s; }
.different-section .col-md-6:nth-child(2) > div { animation-delay: 0.2s; }
.different-section .col-md-6:nth-child(3) > div { animation-delay: 0.3s; }
.different-section .col-md-6:nth-child(4) > div { animation-delay: 0.4s; }
.different-section .col-md-12 > div { animation-delay: 0.5s; }

/* Smooth transitions */
.benefits-section div,
.different-section div,
.about-role-section div,
.cta-section a {
    transition: all 0.3s ease;
}

/* Custom gradient backgrounds */
.landing-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Ensure proper spacing */
#landing-content {
    padding: 0;
}

/* Override theme styles for landing page */
.page-template-page-landing .main {
    background: transparent;
}

.page-template-page-landing .template-cover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .landing-header {
        padding: 2rem 1rem !important;
    }
    
    .benefits-section,
    .different-section,
    .about-role-section,
    .cta-section {
        padding: 2rem 1rem !important;
    }
    
    .benefits-section h2,
    .different-section h2,
    .about-role-section h2,
    .cta-section h2 {
        font-size: 1.8rem !important;
    }
}
