/* Registration Page Specific Styles */

/* Registration Hero Section */
.registration-hero {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
    padding: 120px 0 60px;
    color: #fff;
    text-align: center;
}

.registration-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.registration-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.package-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.price-info {
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
}

.per-person {
    font-size: 1rem;
    opacity: 0.8;
}

.dates-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 25px;
}

/* Registration Form Section */
.registration-form-section {
    padding: 80px 0;
    background: #f8fffe;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
    color: #fff;
    padding: 2.5rem;
    text-align: center;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Form Styles */
.registration-form {
    padding: 3rem;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8f5f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5f3f;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: #ffd700;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f3f;
    box-shadow: 0 0 0 3px rgba(26, 95, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.radio-label:hover {
    border-color: #1a5f3f;
    background: #f8fffe;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #1a5f3f;
    background: #1a5f3f;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.radio-label input[type="radio"]:checked ~ span:not(.radio-custom) {
    color: #1a5f3f;
}

/* Terms and Conditions */
.terms-content {
    margin-bottom: 2rem;
}

.terms-box {
    background: #f8fffe;
    border: 2px solid #e8f5f0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.terms-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a5f3f;
    margin-bottom: 1rem;
}

.terms-box ul {
    list-style: none;
    padding: 0;
}

.terms-box li {
    margin-bottom: 0.8rem;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.terms-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a5f3f;
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-box strong {
    color: #1a5f3f;
}

/* Checkbox Styles */
.agreement-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.checkbox-label:hover {
    border-color: #1a5f3f;
    background: #f8fffe;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #1a5f3f;
    background: #1a5f3f;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label input[type="checkbox"]:checked ~ span:not(.checkbox-custom) {
    color: #1a5f3f;
    font-weight: 500;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.submit-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a5f3f;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-note {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

/* Registration Contact */
.registration-contact {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
}

.registration-contact h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a5f3f;
    margin-bottom: 2rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
}

.contact-card p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card i {
    width: 20px;
    color: #ffd700;
}

.payment-info {
    background: #f8fffe;
    border: 2px solid #e8f5f0;
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
}

.payment-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a5f3f;
    margin-bottom: 1rem;
    text-align: center;
}

.payment-info p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.payment-info strong {
    color: #1a5f3f;
}

/* Responsive Design for Registration */
@media (max-width: 768px) {
    .registration-hero {
        padding: 100px 0 50px;
    }
    
    .registration-hero h1 {
        font-size: 2.5rem;
    }
    
    .package-highlight {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .form-container {
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .form-header {
        padding: 2rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .registration-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .registration-contact {
        margin: 3rem 15px 0;
    }
}

@media (max-width: 480px) {
    .registration-hero {
        padding: 85px 0 40px;
    }
    
    .registration-hero h1 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .form-header {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
    }
    
    .terms-box {
        padding: 1.5rem;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Form Validation Styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: #27ae60;
}

/* Loading State */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #1a5f3f;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

