/* SAME STYLE AS BEFORE */
:root {
    --primary-purple: #667eea;
    --secondary-purple: #764ba2;
    --accent-magenta: #9B3FA8;
    --light-purple: #f0f3ff;
    --white: #FFFFFF;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
    --payment-blue: #4299e1;
}

body {
    font-family: 'Figtree', system-ui, sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    padding-top: 0;
    margin: 0;
    font-size: 1.15rem;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url('view.jpg') center center/cover no-repeat fixed;
    min-height: 100vh;
}

/* NAVBAR - SAME */
.navbar {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.98), rgba(118, 75, 162, 0.98));
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 4px 25px rgba(102, 126, 234, 0.25);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
    border-bottom: 3px solid var(--accent-magenta);
    transition: all 0.3s ease;
}

.navbar-scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 5px 35px rgba(102, 126, 234, 0.35);
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.3rem 0;
}

.navbar-logo {
    height: 70px;
    width: auto;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 5px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--white);
    font-weight: 900;
    font-size: 2rem;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin: 0;
    font-weight: 600;
}

.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 700;
    padding: 0.8rem 1.5rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--accent-magenta), rgba(155, 63, 168, 0.9));
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(155, 63, 168, 0.3);
}

.dropdown-menu {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.8rem 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    min-width: 250px;
    margin-top: 10px !important;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white) !important;
    padding-left: 2rem;
}

/* MAIN CONTENT */
.main-content {
    margin-top: 120px;
    padding-bottom: 50px;
}

.form-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    text-align: center;
}

.form-title {
    color: var(--primary-purple);
    font-weight: 900;
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-subtitle {
    color: var(--medium-gray);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.form-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-purple), var(--secondary-purple));
}

.form-section.payment-section::before {
    background: linear-gradient(to right, var(--payment-blue), #3182ce);
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    letter-spacing: 0.5px;
}

.section-label.payment-label {
    background: linear-gradient(135deg, var(--payment-blue), #3182ce);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.15rem;
}

.form-group label.required::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

.form-control, .form-select {
    padding: 0.9rem 1rem;
    font-size: 1.15rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group, .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.checkbox-group label, .radio-group label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    padding: 0.9rem 1.2rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 0;
    border: 2px solid transparent;
    font-size: 1.1rem;
}

.checkbox-group label:hover, .radio-group label:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, 0.2);
}

.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary-purple);
    cursor: pointer;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 18px 38px rgba(102, 126, 234, 0.4);
}

.info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(155, 63, 168, 0.05));
    border-left: 5px solid var(--primary-purple);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
}

.info-box.payment-info {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.08), rgba(49, 130, 206, 0.05));
    border-left: 5px solid var(--payment-blue);
}

.alert-message {
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    animation: fadeIn 0.3s ease-out;
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #059669;
}

.alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.main-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    font-size: 1.15rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--primary-purple);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.15rem;
}

.footer-links a:hover {
    color: var(--primary-purple);
    padding-left: 8px;
}

.copyright {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .form-section {
        padding: 2rem;
    }

    .form-title {
        font-size: 2.1rem;
    }

    .submit-button {
        padding: 1rem 2rem;
        font-size: 1.3rem;
    }
}

.file-upload-area {
    border: 3px dashed #cbd5e1;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(248, 250, 252, 0.5);
    margin-bottom: 1.5rem;
}

.file-upload-area:hover {
    border-color: var(--primary-purple);
    background: rgba(102, 126, 234, 0.05);
}

.file-upload-area.active {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.upload-icon {
    font-size: 3.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.upload-text {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.upload-subtext {
    color: var(--medium-gray);
    font-size: 1rem;
}

.file-info {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 12px;
    text-align: left;
}

.file-info.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}