/* Registration Form Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}
.main-wrapper{
    flex-grow: 1;
}
.camp-registration-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* Progress Steps */
.registration-progress {
    margin-bottom: 40px;
}

.registration-progress ul {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.registration-progress ul::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
}

.registration-progress li {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 25%;
}

.registration-progress .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 auto 12px;
    background: #e0e0e0;
    border-radius: 50%;
    color: #757575;
    font-weight: 600;
    transition: all 0.3s ease;
}

.registration-progress .active .step-number {
    background: #FF5722;
    color: white;
    box-shadow: 0 2px 10px rgba(255, 87, 34, 0.3);
}

.registration-progress .step-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #757575;
    transition: all 0.3s ease;
}

.registration-progress .active .step-label {
    color: #FF5722;
    font-weight: 600;
}

/* Form Sections */
.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.form-section h3 i {
    color: #FF5722;
    margin-right: 8px;
}

.form-row {
    margin-bottom: 22px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #424242;
}

.form-row small {
    display: block;
    color: #757575;
    margin-top: 5px;
    font-size: 12px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 12px;
    color: #757575;
    font-size: 16px;
}

.form-row input, 
.form-row select {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-row input:focus, 
.form-row select:focus {
    border-color: #FF5722;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.intro-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* Radio and Checkbox Groups */
.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-label {
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.radio-option, .checkbox-option {
    display: flex;
    align-items: flex-start;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 18px;
    transition: all 0.3s ease;
}

.radio-option:hover, .checkbox-option:hover {
    border-color: #FF5722;
    background: rgba(255, 87, 34, 0.03);
    transform: translateY(-2px);
}

.radio-option input, .checkbox-option input {
    margin-top: 5px;
    width: auto;
}

.radio-option label, .checkbox-option label {
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.radio-option i, .checkbox-option i {
    color: #FF5722;
    font-size: 18px;
    margin-bottom: 8px;
}

.option-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.option-price {
    color: #FF5722;
    font-weight: 600;
    margin: 4px 0;
}

.option-desc {
    color: #757575;
    font-size: 14px;
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

.divider span {
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 15px;
    color: #757575;
    font-weight: 500;
}

/* Social Login */
.social-login {
    text-align: center;
}

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 14px 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.google-login-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.google-login-btn img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

/* Verification specific styles */
.verification-illustration {
    text-align: center;
    margin: 30px 0;
}

.verification-illustration i {
    font-size: 60px;
    color: #FF5722;
}

.verification-input {
    max-width: 300px;
    margin: 0 auto 25px;
}

.verification-note {
    text-align: center;
    color: #757575;
}

.verification-note a {
    color: #FF5722;
    text-decoration: none;
    font-weight: 500;
}

.verification-note a:hover {
    text-decoration: underline;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.back-btn {
    padding: 12px 24px;
    background: #f5f5f5;
    border: none;
    border-radius: 6px;
    color: #424242;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.back-btn i {
    margin-right: 8px;
}

.next-btn, .register-btn {
    padding: 12px 24px;
    background: #FF5722;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(255, 87, 34, 0.2);
}

.next-btn i {
    margin-left: 8px;
}

.register-btn i {
    margin-right: 8px;
}

.back-btn:hover {
    background: #e0e0e0;
}

.next-btn:hover, .register-btn:hover {
    background: #E64A19;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

/* Success Message */
.registration-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 70px;
    color: #4CAF50;
}

.success-illustration {
    margin: 30px 0;
}

.success-illustration i {
    font-size: 80px;
    color: #FF5722;
}

.registration-success h2 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-actions {
    margin: 30px 0;
}

.camper-zone-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: #FF5722;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 87, 34, 0.2);
}

.camper-zone-btn i {
    margin-right: 8px;
}

.camper-zone-btn:hover {
    background: #E64A19;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.success-message {
    color: #757575;
    max-width: 450px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Error Message */
.error-message {
    padding: 25px;
    background: #FFEBEE;
    border-left: 4px solid #F44336;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.error-message i {
    font-size: 24px;
    color: #F44336;
    margin-right: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .camp-registration-container {
        padding: 20px 15px;
        margin: 20px auto;
    }
    
    .registration-progress .step-label {
        font-size: 12px;
    }
    
    .registration-progress ul::before {
        display: none;
    }
    
    .registration-progress ul {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .registration-progress li {
        width: 45%;
        margin-bottom: 15px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .back-btn, .next-btn, .register-btn {
        width: 100%;
        justify-content: center;
    }
    
    .back-btn {
        order: 2;
    }
    
    .next-btn, .register-btn {
        order: 1;
    }
    
    .radio-option i, .checkbox-option i {
        font-size: 16px;
    }
    
    .radio-option, .checkbox-option {
        padding: 15px;
    }
    
    .option-title {
        font-size: 14px;
    }
    
    .verification-illustration i, .success-illustration i {
        font-size: 50px;
    }
    
    .form-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .registration-progress li {
        width: 100%;
    }
}

.hero-section-wrapper {
    width: 100%;
    margin-bottom: 50px;
}

.hero-section {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://embassy.camp/wp-content/uploads/2024/04/Batu-Caves-768x512.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    padding: 30px;
    z-index: 2;
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.product-selector {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.camp-product-dropdown {
    width: 100%;
    padding: 14px 45px;
    height: auto;
    font-size: 16px;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    appearance: none;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23333"/></svg>') no-repeat;
    background-position: calc(100% - 15px) center;
}

.product-selector .input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.product-selector .input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-size: 18px;
}

.hero-cta-button {
    background: #FF5722; /* Using your primary color */
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-cta-button:hover {
    background: #E64A19; /* Darker shade for hover */
    transform: translateY(-2px);
}

.hero-cta-button:active {
    transform: translateY(0);
}

.hero-cta-button i {
    font-size: 14px;
}

/* Form Notification for product selector */
.form-notification {
    padding: 12px 15px;
    border-radius: 6px;
    margin: 0 auto 20px;
    max-width: 800px;
    display: flex;
    align-items: center;
}

/* Ensure buttons respect JavaScript display settings */
.form-navigation .back-btn,
.form-navigation .next-btn,
.form-navigation .pay-btn {
    visibility: visible !important;
}

/* Ensure hidden buttons are not displayed */
.form-navigation .back-btn[style*="display: none"],
.form-navigation .next-btn[style*="display: none"],
.form-navigation .pay-btn[style*="display: none"] {
    display: none !important;
    visibility: hidden !important;
}

