/* Modern Elements CSS - Trading Masterclass */

/* Modern Select Styles */
.lead-magnet-section .select-wrapper {
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.lead-magnet-section .select-wrapper select {
    appearance: none;
    background: linear-gradient(145deg, #1e2538, #131a29);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px 15px 50px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.lead-magnet-section .select-wrapper select:focus {
    border-color: #3a7bd5;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
    outline: none;
}

.lead-magnet-section .select-wrapper::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #3a7bd5;
    pointer-events: none;
    transition: all 0.3s ease;
}

.lead-magnet-section .select-wrapper:hover::after {
    color: #66a0ff;
}

.lead-magnet-section .select-wrapper:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.lead-magnet-section .input-icon-wrapper i {
    color: #3a7bd5;
    font-size: 18px;
}

.lead-magnet-section .select-wrapper .select-focus-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.lead-magnet-section .select-wrapper:focus-within .select-focus-indicator {
    width: 80%;
}

.lead-magnet-section .select-wrapper option {
    background-color: #1e2538;
    color: #ffffff;
    padding: 15px;
}

/* Modern Button Styles */
.lead-magnet-section .submit-button {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lead-magnet-section .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #4e8bdf, #1ad6ff);
}

.lead-magnet-section .submit-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lead-magnet-section .submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.lead-magnet-section .submit-button:hover::before {
    left: 100%;
}

.lead-magnet-section .submit-button i {
    transition: all 0.3s ease;
}

.lead-magnet-section .submit-button:hover i.fa-arrow-right {
    transform: translateX(5px);
}

.lead-magnet-section .submit-button:hover i.fa-download {
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .lead-magnet-section .submit-button {
        padding: 14px 20px;
        font-size: 14px;
    }
}
