/* Multi-Step Registration Form Styles */
.registration-wrapper {
    background: linear-gradient(135deg, #0E1C34 0%, #132A4D 55%, #dae6fc 100%);
    padding: 15px 20px 30px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    width: 50%;
}

.registration-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 72, 1, 0.18), transparent 60%);
    pointer-events: none;
}

.registration-inner {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.multistep-registration-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    color: #FFFFFF !important;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Progress Steps Indicator */
.progress-steps-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto 20px;
    position: relative;
}

.progress-steps-bar::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.step-progress-line {
    position: absolute;
    top: 20px;
    left: 10%;
    height: 3px;
    background: #FF4801;
    z-index: 1;
    transition: width 0.4s ease;
}

.step-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    font-size: 13px;
}

.step-indicator.active-step .step-circle {
    background: #FF4801;
    border-color: #FF4801;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 72, 1, 0.6);
}

.step-indicator.completed-step .step-circle {
    background: #28a745;
    border-color: #28a745;
    color: #FFFFFF;
}

.step-label {
    margin-top: 5px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-weight: 500;
}

.step-indicator.active-step .step-label {
    color: #FFFFFF;
    font-weight: 600;
}

/* Form Steps Container */
.multistep-form-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    margin: 0 auto;
}

.registration-form-step {
    display: none;
    animation: fadeInStep 0.4s ease;
}

.registration-form-step.active-form-step {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0E1C34;
    margin-bottom: 15px;
    text-align: center;
}

.form-field-group {
    margin-bottom: 12px;
}

.form-field-label {
    display: block;
    font-weight: 600;
    color: #0E1C34;
    margin-bottom: 4px;
    font-size: 0.8rem;
}

.form-text-input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
}

.form-text-input:focus {
    outline: none;
    border-color: #FF4801;
    box-shadow: 0 0 0 3px rgba(255, 72, 1, 0.1);
}

.form-text-input::placeholder {
    color: #999;
}

/* Agenda Selection Dropdown */
.agenda-dropdown-wrapper {
    position: relative;
}

.agenda-dropdown-toggle {
    width: 100%;
    padding: 8px 12px;
    background: #FFFFFF;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
}

.agenda-dropdown-toggle:hover {
    border-color: #FF4801;
}

.agenda-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 2px solid #FF4801;
    border-radius: 8px;
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    padding: 15px;
}

.agenda-dropdown-menu.show-dropdown {
    display: block;
}

.agenda-dropdown-menu label {
    display: block;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-radius: 6px;
    font-size: 0.95rem;
}

.agenda-dropdown-menu label:hover {
    background: rgba(255, 72, 1, 0.08);
}

.agenda-dropdown-menu strong {
    display: block;
    color: #FF4801;
    font-weight: 700;
    margin: 15px 0 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agenda-dropdown-menu label:first-child {
    background: rgba(255, 72, 1, 0.1);
    font-weight: 600;
    margin-bottom: 10px;
}

.agenda-warning-text {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
    font-weight: 600;
}

/* Form Navigation Buttons */
.form-navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    gap: 10px;
}

.btn-form-prev,
.btn-form-next,
.btn-form-submit {
    padding: 8px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-form-prev {
    background: #6c757d;
    color: #FFFFFF;
}

.btn-form-prev:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(108, 117, 125, 0.3);
}

.btn-form-next,
.btn-form-submit {
    background: #FF4801;
    color: #FFFFFF;
    margin-left: auto;
}

.btn-form-next:hover,
.btn-form-submit:hover {
    background: #e63f00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 72, 1, 0.4);
}

.btn-form-submit {
    width: 100%;
}

/* Checkbox Styling */
.consent-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    padding: 10px;
    background: rgba(255, 72, 1, 0.05);
    border-radius: 5px;
}

.consent-checkbox-input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.consent-checkbox-label {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.3;
    cursor: pointer;
}

/* Promotional Cards Section - Modern Redesign */
.promotional-cards-section {
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 0;
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .promo-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promo-cards-grid {
        grid-template-columns: 1fr;
    }
}

.promo-card {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 38, 68, 0.95), rgba(12, 24, 45, 0.98));
    border-radius: 16px;
    padding: 32px 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid #FF4801;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    overflow: hidden;
}

/* Subtle top highlight line */
.promo-card::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Hover glow background */
.promo-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 72, 1, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.promo-card:hover::after {
    opacity: 1;
}

.promo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 72, 1, 0.25);
    border-top-color: #ff5a1f;
    box-shadow:
        0 16px 48px rgba(255, 72, 1, 0.2),
        0 0 0 1px rgba(255, 72, 1, 0.15) inset;
}

.promo-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 72, 1, 0.15), rgba(255, 72, 1, 0.05));
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: #FF4801;
    border: 1px solid rgba(255, 72, 1, 0.2);
    transition: all 0.4s ease;
}

.promo-card:hover .promo-card-icon {
    background: linear-gradient(135deg, rgba(255, 72, 1, 0.25), rgba(255, 72, 1, 0.1));
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(255, 72, 1, 0.3);
}

.promo-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.promo-card:hover .promo-card-title {
    color: #ff5a1f;
}

.promo-card-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-card-link {
    display: inline-flex;
    align-items: center;
    color: #FF4801;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
}

.promo-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF4801;
    transition: width 0.3s ease;
}

.promo-card:hover .promo-card-link::after {
    width: 100%;
}

.promo-card:hover .promo-card-link {
    color: #ff5a1f;
    transform: translateX(4px);
}

/* Security Champions Badge */
.security-champions-banner {
    max-width: 400px;
    margin: 15px auto 0;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    padding: 10px 20px 10px 20px;

}

.security-champions-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.security-champions-banner img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-wrapper {
        width: 100%;
        padding: 20px 15px 25px;
        min-height: auto;
    }

    .multistep-registration-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .progress-steps-bar {
        margin-bottom: 15px;
    }

    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .multistep-form-container {
        padding: 20px 20px;
        min-height: auto;
    }

    .step-heading {
        font-size: 1.1rem;
    }

    .form-navigation-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-form-prev,
    .btn-form-next {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .registration-wrapper {
        width: 100%;
        padding: 20px 15px 25px;
        min-height: auto;
    }

    .progress-steps-bar::before {
        left: 5%;
        right: 5%;
    }

    .step-progress-line {
        left: 5%;
    }

    .step-label {
        display: none;
    }

    .promo-card {
        padding: 24px 20px;
    }
}

/* Large screens - 1024px and above */
@media (min-width: 1024px) {
    .registration-wrapper {
        width: 100%;
    }
}
