@import url('https://fonts.googleapis.com/css2?family=Changa+One&family=Muli:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Muli', sans-serif;
    background: #000000;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

.vendor-application-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255, 69, 51, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content h1 {
    font-family: 'Changa One', cursive;
    font-size: 3.5rem;
    color: #FF4533;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.header-content p {
    font-size: 1.2rem;
    color: #AAB1B7;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
}

.detail-item i {
    color: #FF4533;
    font-size: 1.1rem;
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    font-family: 'Changa One', cursive;
    font-size: 2rem;
    color: #FF4533;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 69, 51, 0.3);
    padding-bottom: 10px;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1rem;
}

.required {
    color: #FF4533;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF4533;
    box-shadow: 0 0 0 3px rgba(255, 69, 51, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-group select {
    cursor: pointer;
}

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

/* Pricing Section */
.pricing-section {
    background: rgba(255, 69, 51, 0.05);
    border: 1px solid rgba(255, 69, 51, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.pricing-section h3 {
    font-family: 'Changa One', cursive;
    font-size: 1.8rem;
    color: #FF4533;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 69, 51, 0.2);
}

.pricing-card .price {
    font-family: 'Changa One', cursive;
    font-size: 2.5rem;
    color: #FF4533;
    margin-bottom: 10px;
}

.pricing-card .period {
    font-size: 0.9rem;
    color: #AAB1B7;
    margin-bottom: 15px;
}

.pricing-card .status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.early-bird {
    background: rgba(76, 211, 227, 0.2);
    color: #4cd3e3;
    border: 1px solid #4cd3e3;
}

.status.regular {
    background: rgba(255, 206, 84, 0.2);
    color: #ffce54;
    border: 1px solid #ffce54;
}

.status.final {
    background: rgba(255, 69, 51, 0.2);
    color: #FF4533;
    border: 1px solid #FF4533;
}

.pricing-note {
    color: #AAB1B7;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-note i {
    color: #FF4533;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #FF4533;
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-group label {
    color: #fff;
    cursor: pointer;
    line-height: 1.5;
}

/* Error Styles */
.error-message {
    color: #FF4533;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #FF4533;
    box-shadow: 0 0 0 3px rgba(255, 69, 51, 0.2);
}

.form-group.error .error-message,
.checkbox-group.error .error-message {
    display: block;
}

/* Button Styles */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: #FF4533;
    color: #fff;
}

.btn-primary:hover {
    background: #e63e2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 69, 51, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #000;
    margin: 2% auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background: rgba(255, 69, 51, 0.1);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Changa One', cursive;
    color: #FF4533;
    margin: 0;
}

.close {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #FF4533;
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.terms-content h3 {
    font-family: 'Changa One', cursive;
    color: #FF4533;
    margin-bottom: 20px;
}

.terms-section {
    margin-bottom: 25px;
}

.terms-section h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.terms-section p {
    color: #AAB1B7;
    line-height: 1.6;
}

.terms-footer {
    background: rgba(255, 69, 51, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #FF4533;
    margin-top: 30px;
    font-weight: 600;
    color: #fff;
}

.modal-footer {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Success Modal */
.success-modal .modal-body {
    text-align: center;
    padding: 50px 30px;
}

.success-content i {
    font-size: 4rem;
    color: #4cd3e3;
    margin-bottom: 20px;
}

.success-content h2 {
    font-family: 'Changa One', cursive;
    color: #FF4533;
    margin-bottom: 15px;
}

.success-content p {
    color: #AAB1B7;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vendor-application-container {
        padding: 10px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .event-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px 20px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .checkbox-group input[type="checkbox"] {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 15px;
    }
    
    .pricing-section {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* Custom Scrollbar */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #FF4533;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #e63e2e;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vendor-application-container {
    animation: fadeIn 0.6s ease-out;
}