/* ============================================================
   ORGANIZE — Page de vente "Orga clé en main"
   ============================================================ */

/* ---------- Hero Section ---------- */
.organize-hero {
    background: linear-gradient(135deg, #2a1b4b 0%, #7239ea 60%, #9b59f0 100%);
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}
.organize-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.organize-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.organize-hero h1,
.cta-final h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.organize-hero .hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.85;
    line-height: 1.7;
    max-width: 520px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-price-tag {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 1rem;
    padding: 18px 24px;
    display: inline-block;
}
.hero-price-tag .price {
    font-size: 2rem;
    font-weight: 800;
}
.hero-price-tag .price-label {
    opacity: 0.7;
    font-size: 0.85rem;
}

/* ---------- Steps Section ---------- */
.step-card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.step-connector {
    position: absolute;
    top: 50%;
    right: -32px;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #7239ea, transparent);
    z-index: 1;
}
@media (max-width: 991.98px) {
    .step-connector {
        display: none;
    }
}

/* ---------- Services Grid ---------- */
.service-card {
    border: 1px solid var(--bs-gray-200);
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: var(--bs-body-bg);
}
.service-card:hover {
    border-color: #7239ea;
    box-shadow: 0 8px 30px rgba(114, 57, 234, 0.15);
    transform: translateY(-4px);
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ---------- Trip Examples ---------- */
.trip-example-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}
.trip-example-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.trip-example-card .trip-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.trip-example-card .trip-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.trip-example-card:hover .trip-img-wrapper img {
    transform: scale(1.08);
}
.trip-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.trip-duration-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ---------- Pricing Section ---------- */
.pricing-card {
    border: 2px solid #7239ea;
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7239ea, #9b59f0);
}
.pricing-card .pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7239ea, #9b59f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}
.pricing-feature i {
    color: var(--bs-success);
    font-size: 1.1rem;
}
.pricing-free-badge {
    background: linear-gradient(135deg, #198754, #20c997);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
}

/* ---------- Final CTA Section ---------- */
.cta-final {
    background: linear-gradient(135deg, #2a1b4b 0%, #7239ea 50%, #9b59f0 100%);
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ---------- Animations ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ---------- Section Spacing ---------- */
.organize-section {
    padding: 60px 0;
}
.section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--bs-gray-900);
    letter-spacing: -0.01em;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--bs-gray-500);
    max-width: 560px;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
    .organize-hero h1 {
        font-size: 1.85rem;
    }
    .organize-hero .hero-subtitle {
        font-size: 1rem;
    }
    .pricing-card .pricing-amount {
        font-size: 2.5rem;
    }
    .organize-section {
        padding: 40px 0;
    }
    .trip-example-card .trip-img-wrapper {
        height: 180px;
    }
}

/* ---------- Pulse Animation for CTA ---------- */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.15), 0 0 0 0 rgba(255,255,255,0.5);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.15), 0 0 0 14px rgba(255,255,255,0);
    }
}
.btn-cta-pulse {
    animation: pulse-glow 2.5s infinite;
    background: #fff !important;
    color: #7239ea !important;
    border: 2px solid rgba(255,255,255,0.9) !important;
    font-size: 1.05rem;
    font-weight: 700;
    text-shadow: none;
    padding: 12px 28px !important;
    letter-spacing: 0.01em;
}
.btn-cta-pulse:hover {
    background: #f0e8ff !important;
    color: #5a20d0 !important;
    transform: translateY(-2px);
}
