.pac-container,
.pac-container * {
    all: revert !important;
}

.pac-container {
    position: fixed !important;
    z-index: 999999999 !important;
      background: rgba(124,92,255,0.2) !important;
    border-radius: 14px !important;
    border: 1px solid rgba(124,92,255,0.25) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8) !important;
    overflow: hidden !important;
    font-family: inherit !important;
}

.pac-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    padding: 12px 16px !important;
    background: #0c0c14 !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    cursor: pointer !important;
    color: #ffffff !important;
}

.pac-item:hover,
.pac-item-selected {
    background: rgba(124,92,255,0.2) !important;
}

.pac-item-query {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.pac-matched {
    color: #7C5CFF !important;
    font-weight: 700 !important;
}

.pac-item > span:not(.pac-item-query) {
      color: #ffffff !important;
    font-size: 12px !important;
}

.pac-icon {
    filter: invert(1) !important;
}

.pac-container::after {
    filter: invert(1) opacity(0.5) !important;
}


/* =========================================================
   FIX STRUCTURE ELEMENTOR
========================================================= */

.aakd-card,
.aakd-grid,
.aakd-col {
    overflow: visible !important;
}


/* =========================================================
   LAYOUT
========================================================= */

.aakd-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    color: #fff;
}

.aakd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.aakd-col {
    width: 100%;
}


/* =========================================================
   CARD
========================================================= */

.aakd-card {
    background: linear-gradient(135deg, #0f0f18, #2b1f5a);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    padding: 24px;
}

.aakd-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.aakd-sub {
    color: #cfcfff;
    margin-bottom: 20px;
}

.aakd-progress {
    color: #b9b9ff;
    margin-bottom: 12px;
}


/* =========================================================
   FIELDS
========================================================= */

.aakd-field {
    margin-bottom: 18px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
}

.aakd-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.aakd-field small {
    display: block;
    margin-bottom: 8px;
    color: #b9b9ff;
    background: rgba(124,92,255,0.08);
    padding: 8px;
    border-radius: 8px;
}


/* =========================================================
   INPUTS
========================================================= */

.aakd-input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #2a2a40;
    background: #0c0c14;
    color: #fff;
}

.aakd-input::placeholder {
    color: #9aa0b5;
}

.aakd-input:focus {
    border-color: #7C5CFF;
    box-shadow: 0 0 0 2px rgba(124,92,255,0.25);
    outline: none;
}


/* =========================================================
   RADIO
========================================================= */

.aakd-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 6px;
}

.aakd-radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e5e5ff;
}

.aakd-field input[type=radio] {
    accent-color: #7C5CFF;
}


/* =========================================================
   BUTTONS
========================================================= */

.aakd-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    background: linear-gradient(90deg, #7C5CFF, #9B7BFF);
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.aakd-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124,92,255,0.4);
}

.aakd-btn-secondary {
    opacity: 0.7;
}


/* =========================================================
   ACTIONS
========================================================= */

.aakd-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.aakd-actions .aakd-btn {
    flex: 1;
}


/* =========================================================
   STEPS
========================================================= */

.aakd-steps {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.aakd-steps a {
    text-decoration: none !important;
    color: #fff !important;
}

.aakd-step-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a2a40;
    font-weight: 600;
    font-size: 14px;
    transition: 0.25s;
}

.aakd-step-badge:hover {
    background: #3a3a55;
    transform: translateY(-2px);
}

.aakd-step-badge.is-active {
    background: linear-gradient(135deg, #7C5CFF, #9B7BFF);
    box-shadow: 0 6px 20px rgba(124,92,255,0.5);
}

.aakd-step-badge.is-done {
    background: #2ecc71;
}


/* =========================================================
   VIDEO + INFO
========================================================= */

.aakd-video {
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.aakd-video iframe {
    width: 100%;
    height: 260px;
}
 
.aakd-info {
    margin-top: 16px;
    padding: 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    color: #ddd;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .aakd-grid {
        grid-template-columns: 1fr;
    }

    .aakd-wrap {
        padding: 12px;
    }

    .aakd-card {
        padding: 18px;
    }

    .aakd-title {
        font-size: 24px;
    }

    .aakd-video iframe {
        height: 180px;
    }

    .aakd-actions {
        flex-direction: column;
    }
}
/* =========================================================
   GOOGLE AUTOCOMPLETE — FINAL
========================================================= */

.pac-container,
.pac-container * {
    all: revert !important;
}

.pac-container {
    position: fixed !important;
    z-index: 999999999 !important;
    background: #0c0c14 !important;
    border-radius: 14px !important;
    border: 1px solid rgba(124,92,255,0.25) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8) !important;
    overflow: hidden !important;
    font-family: inherit !important;
}

.pac-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    padding: 12px 16px !important;
    background: #0c0c14 !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    cursor: pointer !important;
    color: #ffffff !important;
}

.pac-item:hover,
.pac-item-selected {
    background: rgba(124,92,255,0.2) !important;
}

.pac-item-query {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.pac-matched {
    color: #7C5CFF !important;
    font-weight: 700 !important;
}

.pac-item > span:not(.pac-item-query) {
    color: #b9b9ff !important;
    font-size: 12px !important;
}

.pac-icon { filter: invert(1) !important; }
.pac-container::after { filter: invert(1) opacity(0.5) !important; }
.pac-container {
    background: #ffffff !important;
    color: #111111 !important;
    z-index: 999999 !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18) !important;
    font-family: inherit !important;
}

.pac-item {
    color: #111111 !important;
    background: #ffffff !important;
    padding: 10px 12px !important;
    cursor: pointer !important;
    font-size: 14px !important;
}

.pac-item:hover,
.pac-item-selected {
    background: #f3f4f6 !important;
}

.pac-item-query {
    color: #000000 !important;
    font-weight: 600 !important;
}

.pac-matched {
    color: #000000 !important;
    font-weight: 700 !important;
}
/* =========================================================
   FIX GOOGLE PLACES AUTOCOMPLETE
   Empêche le noir sur noir / blanc sur blanc
========================================================= */

.pac-container {
    z-index: 999999999 !important;
    background: #ffffff !important;
    color: #111111 !important;
    border-radius: 14px !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25) !important;
    font-family: Arial, sans-serif !important;
    overflow: hidden !important;
}

.pac-item {
    background: #ffffff !important;
    color: #222222 !important;
    padding: 14px 18px !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    cursor: pointer !important;
}

.pac-item:hover,
.pac-item-selected {
    background: #f2f4f8 !important;
    color: #000000 !important;
}

.pac-item-query {
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
}

.pac-matched {
    color: #000000 !important;
    font-weight: 800 !important;
}

.pac-icon {
    filter: none !important;
    opacity: 0.75 !important;
}