/**
 * Registration Form Styles
 * Used in: registration.blade.php
 */

/* Section Cards */
.registration-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.registration-section .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
}

.registration-section .section-header i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.registration-section .section-header i.primary-icon {
    background: linear-gradient(135deg, #63b161 0%, #3d8b3d 100%);
    color: #fff;
}

.registration-section .section-header i.info-icon {
    background: linear-gradient(135deg, #5bc0de 0%, #2a8eb5 100%);
    color: #fff;
}

.registration-section .section-header i.warning-icon {
    background: linear-gradient(135deg, #f0ad4e 0%, #d9890a 100%);
    color: #fff;
}

.registration-section .section-header h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

/* Form Controls */
.form-label-custom {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control-custom {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control-custom:focus {
    border-color: #63b161;
    box-shadow: 0 0 0 3px rgba(99, 177, 97, 0.15);
}

.form-control-readonly {
    background-color: #f8f9fa !important;
    border: 1px dashed #ddd;
    color: #555;
}

/* Price Display */
.price-display {
    background: linear-gradient(135deg, #63b161 0%, #3d8b3d 100%);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

/* Hotel Cards */
.hotel-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel-stars {
    color: #f0ad4e;
}

/* Package Summary Sidebar */
.package-summary-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    border-radius: 15px;
    padding: 25px;
    position: sticky;
    top: 100px;
}

.package-summary-card h4 {
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.package-summary-card .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.package-summary-card .summary-item:last-child {
    border-bottom: none;
}

.package-summary-card .summary-label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.package-summary-card .summary-value {
    font-weight: 600;
    color: #fff;
}

/* Total Price Box */
.package-summary-card .total-price {
    background: rgba(99, 177, 97, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.package-summary-card .total-price .label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
}

.package-summary-card .total-price .amount {
    font-size: 28px;
    font-weight: 700;
    color: #63b161;
}

.package-summary-card .total-price .per-pax {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.trust-badge i {
    color: #63b161;
}

/* Schedule Option */
.schedule-option {
    padding: 12px 15px !important;
}

/* Checkbox Custom */
.checkbox-custom {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.checkbox-custom input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

/* Submit Button */
.btn-submit-registration {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #63b161 0%, #3d8b3d 100%);
    border: none;
    color: #fff;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-submit-registration:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 177, 97, 0.4);
}

.btn-submit-registration i {
    margin-left: 10px;
}
