/**
 * Foidora Premium Landing Page Styles
 */

:root {
    --foidora-blue: #004E92;
    --foidora-blue-dark: #003d73;
    --foidora-blue-light: #0069c4;
    --foidora-gray-concrete: #6E7B8B;
    --foidora-yellow: #FFB400;
    --foidora-anthracite: #212121;
    --foidora-light: #F4F4F4;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

body.landing-page {
    font-family: 'Outfit', sans-serif;
    color: var(--foidora-anthracite);
    scroll-behavior: smooth;
}

/* --- Navigation --- */
.landing-navbar {
    transition: all 0.4s ease;
    padding: 1rem 0;
    z-index: 1050;
    width: 100%;
}

.landing-navbar.scrolled {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.7rem 0;
}

.landing-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    color: var(--foidora-blue) !important;
}

.landing-navbar .nav-link {
    font-weight: 500;
    color: var(--foidora-anthracite) !important;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.landing-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--foidora-blue);
    transition: width 0.3s ease;
}

.landing-navbar .nav-link:hover::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(0, 78, 146, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(255, 180, 0, 0.05), transparent);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--foidora-blue);
    filter: blur(150px);
    opacity: 0.1;
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--foidora-anthracite);
}

.hero-title span {
    background: linear-gradient(135deg, var(--foidora-blue) 0%, var(--foidora-blue-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--foidora-gray-concrete);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper img {
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: translateY(-10px);
}

.hero-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.badge-1 { bottom: 10%; left: -5%; animation: float 6s ease-in-out infinite; }
.badge-2 { top: 15%; right: -5%; animation: float 7s ease-in-out infinite reverse; }

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

/* --- Features Section --- */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.feature-card {
    padding: 40px;
    border-radius: 24px;
    background: white;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--foidora-blue-light);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--foidora-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--foidora-blue);
}

/* --- Pricing --- */
.pricing-card {
    border-radius: 30px;
    padding: 50px 40px;
    background: white;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border: 2px solid var(--foidora-blue);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 78, 146, 0.15);
}

.pricing-card.popular::before {
    content: 'Recommandé';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--foidora-yellow);
    color: var(--foidora-anthracite);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--foidora-blue);
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--foidora-gray-concrete);
}

.pricing-list {
    margin: 30px 0;
    padding: 0;
}

.pricing-list li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-list li i {
    color: #4CAF50;
}

/* --- CTA Section --- */
.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--foidora-blue) 0%, #002d5a 100%);
    border-radius: 40px;
    margin: 80px 0;
    color: white !important;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 78, 146, 0.3);
}

.cta-section h1, .cta-section h2, .cta-section p {
    color: white !important;
}

.cta-section .btn-premium-primary {
    background: white;
    color: var(--foidora-blue);
}

.cta-section .btn-premium-primary:hover {
    background: var(--foidora-yellow);
    color: var(--foidora-anthracite);
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    background: #ffffff;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--foidora-blue);
    margin-bottom: 20px;
    display: block;
}

.footer h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--foidora-anthracite);
}

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

.footer ul li a:hover {
    color: var(--foidora-blue) !important;
    padding-left: 5px;
}

/* --- Utilitaires --- */
.max-w-600 { max-width: 600px; }
.op-08 { opacity: 0.8; }
.f-s-20 { font-size: 20px; }
.f-s-24 { font-size: 24px; }
.f-s-18 { font-size: 18px; }
.font-weight-800 { font-weight: 800; }
.font-weight-700 { font-weight: 700; }
.font-weight-500 { font-weight: 500; }

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; text-align: center; }
    .hero-section { padding-top: 120px; text-align: center; }
    .pricing-card.popular { transform: none; margin-bottom: 30px; }
    .cta-section { padding: 60px 20px; }
    .hero-badge { display: none; }
}

/* --- Buttons --- */
.btn-premium {
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-premium-primary {
    background: var(--foidora-blue);
    color: white;
    border: none;
}

.btn-premium-primary:hover {
    background: var(--foidora-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 78, 146, 0.2);
    color: white;
}

.btn-premium-outline {
    background: transparent;
    color: var(--foidora-blue);
    border: 2px solid var(--foidora-blue);
}

.btn-premium-outline:hover {
    background: var(--foidora-blue);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .pricing-card.popular { transform: none; margin-bottom: 30px; }
}
