.home-container {
    min-height: 100vh;
}

.hero-section {
    background-color: #000;
    color: white;
    padding: 6rem 0;
    margin-bottom: 4rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-animation {
    max-width: 300px;
    animation: fadeIn 1s ease-in;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.join-button {
    background-color: #007bff;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.join-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.step-card {
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
}

.price-card {
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.contact-info {
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

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

/* General Styles */
body {
    background-color: #f8f9fa;
    color: #333;
    font-family: 'Arial', sans-serif;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.card-body {
    padding: 2rem;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #dce4ec;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Navigation Tabs */
.nav-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    color: #95a5a6;
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #3498db;
    border: none;
}

.nav-tabs .nav-link.active {
    color: #3498db;
    background: none;
    border: none;
    border-bottom: 3px solid #3498db;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    border-color: #95a5a6;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    border-color: #7f8c8d;
}

/* Table Styles */
.table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
}

/* File Upload Styles */
.file-upload-preview {
    width: 200px;
    height: 100px;
    border: 2px dashed #dce4ec;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.file-upload-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Radio and Checkbox Styles */
.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.25em;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #3498db;
    border-color: #3498db;
}

.form-check-label {
    cursor: pointer;
    padding-left: 0.5rem;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Payment Cards */
.payment-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
    }

    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.5rem 1rem;
    }
}

/* Progress Indicator */
.form-progress {
    margin-bottom: 2rem;
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #95a5a6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
}

.progress-step.active {
    background-color: #3498db;
    color: white;
}

.progress-step.completed {
    background-color: #2ecc71;
    color: white;
}

/* Animation Effects */
.fade.show {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #95a5a6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7f8c8d;
}

.nav-link.disabled {
    color: #6c757d !important;
    cursor: not-allowed;
    opacity: 0.5;
}

.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
} 