/* ==========================================================================
   CSS EXTRA EXTRA ENHANCEMENTS - COLORS & EFFECTS
   ========================================================================== */

/* 1. Palette de variables globales & Dégradés dynamiques */
:root {
    --primary-gradient: linear-gradient(135deg, #003399 0%, #0066ff 100%);
    --accent-sun: #ff9900;
    --accent-sun-glow: rgba(255, 153, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --box-shadow-premium: 0 15px 35px rgba(0, 51, 153, 0.12), 0 5px 15px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 20px 40px rgba(0, 51, 153, 0.22), 0 8px 25px rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 2. Amélioration des éléments textes et accents de couleur */
.text-sun {
    color: var(--accent-sun) !important;
    font-weight: 700;
    text-shadow: 0 0 12px var(--accent-sun-glow);
}

/* 3. Section héro & conteneur de contact avec effet Glassmorphism */
.portages_contact_section {
    background: linear-gradient(180deg, #f4f7fc 0%, #e6eef9 100%) !important;
    position: relative;
    overflow: hidden;
}

.portages_contact_bloc_20 {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--box-shadow-premium);
    padding: 40px 30px;
    transition: var(--transition-smooth);
}

    .portages_contact_bloc_20:hover {
        box-shadow: var(--box-shadow-hover);
    }

/* 4. Sublimation des champs de formulaire */
.portages_contact_bloc_27,
.portages_contact_bloc_3 {
    border: 2px solid #e1e8f5 !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    background-color: #ffffff !important;
    font-size: 0.95rem;
    transition: var(--transition-smooth) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

    .portages_contact_bloc_27:focus,
    .portages_contact_bloc_34:focus,
    .portages_contact_bloc_3:focus {
        border-color: #0056b3 !important;
        box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.15) !important;
        outline: none !important;
        transform: translateY(-2px);
    }

/* 5. Bouton d'envoi & CTA - Effet néon & animation Ripple */
.portages_contact_etreRappeler {
    background: var(--primary-gradient) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 51, 153, 0.3);
    transition: var(--transition-smooth) !important;
    display: inline-block;
    width: 100%;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .portages_contact_etreRappeler:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 15px 30px rgba(0, 51, 153, 0.45);
        color: #ffffff !important;
    }

    .portages_contact_etreRappeler:active {
        transform: translateY(1px);
    }

/* 6. Bloc d'ajout de simulation - Effet carte interactive */
.portages_contact_bloc_69 {
    border: 2px dashed #0056b3;
    background: rgba(0, 86, 179, 0.03);
    border-radius: 14px;
    padding: 15px 20px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

    .portages_contact_bloc_69:hover {
        background: rgba(0, 86, 179, 0.08);
        border-color: var(--accent-sun);
        transform: scale(1.01);
    }

.portages_contact_bloc_71 {
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 51, 153, 0.25);
}

/* 7. Cartes Agences - Effet 3D Lift au survol */
.portages_villes_bloc_28 {
    display: block;
    text-decoration: none !important;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    border: 1px solid #f0f3f8;
}

    .portages_villes_bloc_28:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
        border-color: #d0e1fd;
    }

.portages_offre_bloc_83 {
    transition: var(--transition-smooth) !important;
    border-radius: 12px 12px 0 0;
}

.portages_villes_bloc_28:hover .portages_offre_bloc_83 {
    transform: scale(1.08);
}

/* 8. Amélioration visuelle de la carte Highcharts SVG */
#container_map svg {
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.08));
}

.highcharts-point {
    transition: fill 0.3s ease, transform 0.3s ease, stroke 0.3s ease;
    cursor: pointer;
}

    .highcharts-point:hover {
        fill: var(--accent-sun) !important;
        stroke: #ffffff !important;
        stroke-width: 2px !important;
        filter: drop-shadow(0px 0px 8px var(--accent-sun-glow));
    }

/* 9. Animations en tâche de fond (Cercles flottants) */
.circles li {
    background: rgba(0, 102, 255, 0.1) !important;
    border-radius: 50%;
    backdrop-filter: blur(2px);
}


/******/

