/* Registration Page Styles */

.registration-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #0A1C3E 0%, #0F2D5A 100%);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-link:hover {
    gap: 12px;
}

.registration-hero h1 {
    margin-bottom: 12px;
}

.registration-hero p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.registration-section {
    padding: 60px 0 100px;
    background: var(--primary-blue);
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Form Cards */
.form-card {
    background: #0F2847;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.form-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.card-header {
    margin-bottom: 28px;
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF9922 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.card-header h3 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.required {
    color: var(--accent-orange);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #0F2847;
    color: white;
}

/* Checkbox Styling */
.checkbox-group {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #D1D5DB;
    line-height: 1.6;
    position: relative;
    padding-left: 32px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-orange);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.link-orange {
    color: var(--accent-orange);
    text-decoration: underline;
}

.link-orange:hover {
    color: var(--accent-orange-hover);
}

/* Submit Button */
.btn-large {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.btn-large i {
    font-size: 1.3rem;
}

/* Summary Card */
.summary-column {
    position: relative;
}

.sticky-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: #0F2847;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.summary-card h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: white;
}

.summary-item {
    margin-bottom: 20px;
}

.summary-label {
    font-size: 0.85rem;
    color: #9CA3AF;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.summary-value {
    font-size: 1.05rem;
    color: white;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.price-breakdown {
    margin: 20px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #D1D5DB;
    font-size: 0.95rem;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.total-price span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.total-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-orange);
}

.payment-info {
    background: rgba(255, 136, 0, 0.1);
    border: 1px solid rgba(255, 136, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.payment-info i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-top: 2px;
}

.payment-info p {
    color: #D1D5DB;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.benefits-list {
    margin-top: 28px;
}

.benefits-list h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #D1D5DB;
    font-size: 0.9rem;
}

.benefits-list i {
    color: var(--accent-orange);
    margin-top: 4px;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 968px) {
    .registration-grid {
        grid-template-columns: 1fr;
    }

    .sticky-summary {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .registration-hero {
        padding: 80px 0 40px;
    }

    .registration-hero h1 {
        font-size: 2rem;
    }

    .form-card {
        padding: 24px;
    }

    .summary-card {
        padding: 24px;
    }
}
