﻿.swal2-container {
    z-index: 1600 !important;
}

.btn-custom-outline {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 1) !important;
    color: #fff !important;
    border-radius: 6px;
    font-weight: 500;
}

    .btn-custom-outline:hover {
        border-color: #2ea2eb !important;
        background-color: #2ea2eb !important;
    }

.my-modal-overlay {
    display: none;
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
}

.my-modal-content {
    position: relative;
    background-color: #ffffff;
    margin: 5% auto;
    width: 90%;
    max-width: 460px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding: 40px;
    animation: modalAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.my-modal-close-top {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 22px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

    .my-modal-close-top:hover {
        background: #e2e8f0;
        color: #1e293b;
        transform: rotate(90deg);
    }

.advisor-form-container {
    text-align: center;
}

.advisor-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 8px;
}

.advisor-underline {
    width: 50px;
    height: 4px;
    background-color: #4285F4;
    margin: 0 auto 35px;
    border-radius: 2px;
}

.form-group-custom {
    position: relative;
    margin-bottom: 30px;
}

    .form-group-custom input {
        width: 100%;
        padding: 10px 0;
        border: none;
        border-bottom: 1.5px solid #e2e8f0;
        outline: none;
        font-size: 16px;
        background: transparent;
        transition: border-color 0.3s;
    }

    .form-group-custom label {
        position: absolute;
        left: 0;
        top: 10px;
        color: #94a3b8;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .form-group-custom input:focus ~ label,
    .form-group-custom input:not(:placeholder-shown) ~ label {
        top: -15px;
        font-size: 12px;
        color: #4285F4;
        font-weight: 600;
    }

    .form-group-custom input:focus {
        border-bottom-color: #4285F4;
    }

.phone-input-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.country-select-wrapper {
    position: relative;
    border-bottom: 1.5px solid #e2e8f0;
    padding-bottom: 2px;
    min-width: 50px;
}

.country-code-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    color: #475569;
    font-size: 16px;
    padding: 8px 20px 8px 0;
    cursor: pointer;
    outline: none;
    width: 100%;
}

.arrow-down-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #94a3b8;
    pointer-events: none;
}

.flex-grow-1 {
    flex-grow: 1;
}

.inquiry-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0 25px;
    color: #475569;
    font-size: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

    .radio-option input {
        display: none;
    }

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}

.radio-option input:checked + .radio-custom {
    border-color: #8b5cf6;
}

    .radio-option input:checked + .radio-custom::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        background: #8b5cf6;
        border-radius: 50%;
        top: 3px;
        left: 3px;
    }

.privacy-row {
    margin-bottom: 30px;
    text-align: left;
}

.checkbox-option {
    display: flex;
    gap: 12px;
    cursor: pointer;
    align-items: flex-start;
}

    .checkbox-option input {
        display: none;
    }

.checkbox-custom {
    min-width: 20px;
    height: 20px;
    border: 2px solid #4285F4;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
}

.checkbox-option input:checked + .checkbox-custom {
    background-color: #4285F4;
}

    .checkbox-option input:checked + .checkbox-custom::after {
        content: '✓';
        color: white;
        font-size: 14px;
        position: absolute;
        top: -2px;
        left: 3px;
    }

.privacy-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

    .privacy-text a {
        color: #4285F4;
        text-decoration: none;
        font-weight: 500;
    }

.btn-advisor-submit {
    width: 100%;
    padding: 16px;
    background-color: #4285F4;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

    .btn-advisor-submit:hover {
        background-color: #3367d6;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(66, 133, 244, 0.4);
    }

@@keyframes modalAppear {
    from {
        transform: scale(0.95) translateY(30px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-step {
    display: none;
}

    .modal-step.active {
        display: block;
    }

.success-banner {
    background-color: #4caf50;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    text-align: left;
    font-size: 14px;
}

.check-icon {
    background: rgba(255,255,255,0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.current-month {
    color: #64748b;
    margin: 20px 0 15px;
    font-weight: 500;
}

.date-selector {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 25px;
}

.date-card {
    flex: 1;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

    .date-card .day-num {
        font-size: 22px;
        font-weight: 700;
        color: #1e293b;
    }

    .date-card .day-name {
        font-size: 13px;
        color: #64748b;
    }

    .date-card.active {
        border-color: #4285F4;
        background-color: #f0f7ff;
    }

        .date-card.active .day-num, .date-card.active .day-name {
            color: #4285F4;
        }

    .date-card.disabled {
        opacity: 0.5;
        background: #f8fafc;
        cursor: not-allowed;
    }

.timezone-label {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    min-height: 100px;
    max-height: 200px;
    overflow: auto;
}

.time-slot {
    padding: 10px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    max-height: 45px;
}

    .time-slot:hover:not(.active) {
        border-color: #4285F4;
        color: #4285F4;
    }

    .time-slot.active {
        background-color: #f0f7ff;
        border-color: #4285F4;
        color: #4285F4;
    }
