.tarif-container {
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Onglets personnalisés */
.custom-pills {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
}

.custom-pills .nav-link {
    border-radius: 50px;
    padding: 10px 25px;
    color: #555;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-pills .nav-link.active {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

/* Cartes de prix */
.price-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.price-card.featured {
    border: 2px solid #4facfe;
    background: #f0faff;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin: 15px 0;
}

/* Simulateur de devis */
.quote-calculator {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.total-display {
    background: #222;
    color: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.total-display .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00f2fe;
}

.custom-check {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    background: #f8f9fa;
}

/* ... conserver vos styles précédents ... */

.quote-calculator {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Rendre les options (checkboxes) intuitives */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-item {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
    border: 2px solid transparent;
}

.option-item:hover {
    background: #eef2f5;
}

.option-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
}

.option-item label {
    margin-bottom: 0;
    cursor: pointer;
    flex: 1;
    font-weight: 500;
}

/* Le bouton Contact */
.btn-contact-calc {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border: none;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-contact-calc:hover {
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
    color: white;
    transform: translateY(-2px);
}

.travel-info {
    background: #f1f8ff;
    border-radius: 15px;
}

.clickable-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent !important;
}

.clickable-card:hover {
    transform: translateY(-5px);
    border-color: #00f2fe !important;
    background-color: #f0faff;
}

/* Style de la carte active (quand sélectionnée dans le menu) */
.active-card {
    border-color: #4facfe !important;
    background-color: #e6f7ff !important;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

/* Amélioration des options cliquables */
.option-item {
    cursor: pointer;
    user-select: none;
    /* Empêche de sélectionner le texte au clic */
}